From 47ba96e1482fcb7e6406182f0c41aa0f02a6c6ef Mon Sep 17 00:00:00 2001 From: vast Date: Thu, 2 Oct 2025 03:25:40 +0000 Subject: [PATCH] =?UTF-8?q?=ED=99=98=EA=B2=BD=20=EC=84=A4=EC=A0=95=20?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=EC=97=90=EC=84=9C=20=EC=84=B8=EC=85=98=20?= =?UTF-8?q?=EB=B0=8F=20=EC=9B=8C=EC=BB=A4=20=EC=88=98=EB=A5=BC=20=EC=A1=B0?= =?UTF-8?q?=EC=A0=95=ED=95=98=EA=B3=A0,=20API=20=EC=97=90=EB=9F=AC=20?= =?UTF-8?q?=EB=A1=9C=EA=B7=B8=20=EA=B8=B0=EB=A1=9D=20=EB=B0=A9=EC=8B=9D?= =?UTF-8?q?=EC=9D=84=20=EA=B0=9C=EC=84=A0=ED=95=98=EC=98=80=EC=8A=B5?= =?UTF-8?q?=EB=8B=88=EB=8B=A4.=20=EB=8C=80=EC=8B=9C=EB=B3=B4=EB=93=9C?= =?UTF-8?q?=EC=97=90=EC=84=9C=20=EC=8A=A4=EC=BC=80=EC=9D=BC=20=EB=B0=8F=20?= =?UTF-8?q?=EC=84=B8=EC=85=98=20=EC=9D=B4=EB=B2=A4=ED=8A=B8=EB=A5=BC=20?= =?UTF-8?q?=EC=8B=9C=EA=B0=81=ED=99=94=ED=95=A0=20=EC=88=98=20=EC=9E=88?= =?UTF-8?q?=EB=8A=94=20=EA=B8=B0=EB=8A=A5=EC=9D=84=20=EC=B6=94=EA=B0=80?= =?UTF-8?q?=ED=95=98=EC=98=80=EC=9C=BC=EB=A9=B0,=20=EA=B4=80=EB=A0=A8=20HT?= =?UTF-8?q?ML=20=EA=B5=AC=EC=A1=B0=EB=A5=BC=20=EC=97=85=EB=8D=B0=EC=9D=B4?= =?UTF-8?q?=ED=8A=B8=ED=95=98=EC=98=80=EC=8A=B5=EB=8B=88=EB=8B=A4.=20?= =?UTF-8?q?=EC=84=9C=EB=B2=84=20=EB=A1=9C=EA=B7=B8=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=ED=94=84=EB=A1=9C=EC=84=B8=EC=8A=A4=20ID=20=EB=B3=80=EA=B2=BD?= =?UTF-8?q?=20=EC=82=AC=ED=95=AD=EC=9D=84=20=EB=B0=98=EC=98=81=ED=95=98?= =?UTF-8?q?=EC=98=80=EC=8A=B5=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 10 +- app/api/endpoints.py | 9 +- app/core/config.py | 22 +- app/core/session_pool.py | 20 + app/core/worker_manager.py | 21 + app/monitoring/dashboard.py | 84 +- app/utils/api_error_log.py | 84 + app/utils/monitor_events.py | 69 + logs/main.log | 191867 +++++++++++++++++++++++++++++++++ logs/main_server.log | 89373 ++++++++++++++- logs/main_server.pid | 2 +- logs/monitoring.log | 66 +- logs/monitoring.pid | 2 +- main.py | 93 +- status.json | 105 +- 15 files changed, 281668 insertions(+), 159 deletions(-) create mode 100644 app/utils/api_error_log.py create mode 100644 app/utils/monitor_events.py diff --git a/.env b/.env index e0cda37..41cdc50 100644 --- a/.env +++ b/.env @@ -37,13 +37,13 @@ JETSON_CPU_FREQ=1900 # MHz JETSON_MEMORY_FREQ=1600 # MHz # 세션 풀 설정 (시스템별 자동 조정) -SIMPLE_LAMA_SESSIONS=4 -MIGAN_SESSIONS=4 -REMBG_SESSIONS=1 +SIMPLE_LAMA_SESSIONS=6 +MIGAN_SESSIONS=6 +REMBG_SESSIONS=3 # 워커 설정 (Jetson은 더 적은 워커 사용) -MAX_WORKERS=8 # Jetson: 4, x86: 8 -MIN_WORKERS=2 # Jetson: 1, x86: 2 +MAX_WORKERS=12 # Jetson: 4, x86: 8 +MIN_WORKERS=6 # Jetson: 1, x86: 2 WORKER_TIMEOUT=300 # VRAM 관리 (Jetson은 더 보수적인 설정) diff --git a/app/api/endpoints.py b/app/api/endpoints.py index aad95df..39a9121 100644 --- a/app/api/endpoints.py +++ b/app/api/endpoints.py @@ -157,6 +157,11 @@ async def health_check(request: Request): version="1.0.0" ) +# 호환용: 일부 클라이언트에서 /health 경로로 접근하는 경우가 있어 동일 응답 제공 +@router.get("/health", response_model=HealthResponse, include_in_schema=False) +async def health_check_compat(request: Request): + return await health_check(request) + @router.get("/api/v1/server-config", response_model=ServerConfigResponse) async def get_server_config(): @@ -292,6 +297,7 @@ async def inpaint_image( ) except HTTPException: + # HTTPException은 상세 사유를 에러 로그에 남길 수 있도록 재전파됨 (미들웨어에서 잡혀 JSONL 기록) raise except Exception as e: logger.error(f"인페인팅 처리 실패: {e}") @@ -396,6 +402,7 @@ async def remove_background( }) except HTTPException: + # HTTPException은 상세 사유를 에러 로그에 남길 수 있도록 재전파됨 raise except Exception as e: logger.error(f"배경 제거 처리 실패: {e}") @@ -524,7 +531,7 @@ async def root(): "message": "인페인팅 서버 API (iopaint 호환)", "version": "1.0.0", "docs": "/docs", - "health": "/health" + "health": "/api/v1/health" } diff --git a/app/core/config.py b/app/core/config.py index 18b759b..1c83ced 100644 --- a/app/core/config.py +++ b/app/core/config.py @@ -89,15 +89,15 @@ class Settings(BaseSettings): # ========================= # 동적 세션 풀/메모리 # ========================= - SIMPLE_LAMA_MIN_SESSIONS: int = 2 - SIMPLE_LAMA_MAX_SESSIONS: int = 4 + SIMPLE_LAMA_MIN_SESSIONS: int = 4 + SIMPLE_LAMA_MAX_SESSIONS: int = 8 # x86에서는 MIGAN 미로딩(지연 로딩) 기본 → MIN=0 - MIGAN_MIN_SESSIONS: int = 2 if IS_JETSON else 1 - MIGAN_MAX_SESSIONS: int = 4 + MIGAN_MIN_SESSIONS: int = 4 if IS_JETSON else 1 + MIGAN_MAX_SESSIONS: int = 8 - REMBG_MIN_SESSIONS: int = 2 if IS_JETSON else 1 - REMBG_MAX_SESSIONS: int = 4 if IS_JETSON else 3 + REMBG_MIN_SESSIONS: int = 3 if IS_JETSON else 1 + REMBG_MAX_SESSIONS: int = 6 if IS_JETSON else 4 # 여유 VRAM 비율(남은 VRAM이 이 값보다 커야 세션 추가) SESSION_VRAM_THRESHOLD: float = 0.30 @@ -105,8 +105,8 @@ class Settings(BaseSettings): # 마이크로 배치(SimpleLAMA) USE_MICRO_BATCHING: bool = True - MICRO_BATCH_SIZE: int = 4 - MICRO_BATCH_TIMEOUT_MS: int = 100 + MICRO_BATCH_SIZE: int = 8 + MICRO_BATCH_TIMEOUT_MS: int = 80 # 사전 확정 세션(플랫폼 감안 기본치) SIMPLE_LAMA_SESSIONS: int = 4 @@ -114,8 +114,8 @@ class Settings(BaseSettings): REMBG_SESSIONS: int = 3 if IS_JETSON else 2 # 워커(내부 큐/스레드 워커, 프로세스는 WORKERS) - MAX_WORKERS: int = 4 if IS_JETSON else 8 - MIN_WORKERS: int = 1 if IS_JETSON else 4 + MAX_WORKERS: int = 6 if IS_JETSON else 12 + MIN_WORKERS: int = 3 if IS_JETSON else 4 WORKER_TIMEOUT: int = 120 # ========================= @@ -123,7 +123,7 @@ class Settings(BaseSettings): # ========================= VRAM_THRESHOLD_HIGH: float = 0.70 if IS_JETSON else 0.80 VRAM_THRESHOLD_LOW: float = 0.30 if IS_JETSON else 0.40 - VRAM_CHECK_INTERVAL: int = 20 if IS_JETSON else 15 # 초 + VRAM_CHECK_INTERVAL: int = 10 if IS_JETSON else 5 # 초 # ========================= # 모델/경로 diff --git a/app/core/session_pool.py b/app/core/session_pool.py index 0ab2fd4..78df78c 100644 --- a/app/core/session_pool.py +++ b/app/core/session_pool.py @@ -14,6 +14,7 @@ from collections import defaultdict from ..core.config import settings from ..utils.gpu_monitor import gpu_monitor +from ..utils.monitor_events import append_event logger = logging.getLogger(__name__) @@ -118,6 +119,16 @@ class SessionPool: ) logger.info(f"Successfully created session {session_id}") self._log_pool_status("create", model_type.value) + try: + append_event({ + "type": "session", + "action": "create", + "model": model_type.value, + "session_id": session_id, + "pool_size": len(self.pools[model_type]) + 1, + }) + except Exception: + pass return session except Exception as e: logger.error(f"Failed to create session {session_id}: {e}", exc_info=True) @@ -253,6 +264,15 @@ class SessionPool: reaped_counts[session.model_type.value] += 1 del session.model del session + try: + append_event({ + "type": "session", + "action": "reap", + "model": model_type.value, + "pool_size": len(pool), + }) + except Exception: + pass self.conditions[model_type].notify_all() diff --git a/app/core/worker_manager.py b/app/core/worker_manager.py index 092ccd7..c853021 100644 --- a/app/core/worker_manager.py +++ b/app/core/worker_manager.py @@ -16,6 +16,7 @@ from ..utils.gpu_monitor import gpu_monitor from ..core.config import settings from ..core.stats_manager import stats_manager from ..core.session_pool import ModelType +from ..utils.monitor_events import append_event logger = logging.getLogger(__name__) @@ -230,12 +231,32 @@ class WorkerManager: await self._scale_workers(new_count) self.last_scale_time = current_time logger.info(f"Scaled up to {new_count} workers (VRAM: {vram_usage:.2f})") + try: + append_event({ + "type": "worker_scale", + "action": "up", + "new_count": new_count, + "queue_size": queue_size, + "vram_usage": vram_usage, + }) + except Exception: + pass elif should_scale_down: new_count = max(total_workers - 1, settings.MIN_WORKERS) await self._scale_workers(new_count) self.last_scale_time = current_time logger.info(f"Scaled down to {new_count} workers (VRAM: {vram_usage:.2f})") + try: + append_event({ + "type": "worker_scale", + "action": "down", + "new_count": new_count, + "queue_size": queue_size, + "vram_usage": vram_usage, + }) + except Exception: + pass async def _scale_workers(self, target_count: int): """워커 수를 조정합니다.""" diff --git a/app/monitoring/dashboard.py b/app/monitoring/dashboard.py index 307ed94..d8a42a8 100644 --- a/app/monitoring/dashboard.py +++ b/app/monitoring/dashboard.py @@ -243,8 +243,9 @@ class MonitoringData: "gpu": gpu_info, "system_memory": system_memory, "system_performance": system_performance, - "workers": worker_status, - "sessions": session_status, + # status.json 스냅샷 외에 실시간 상태를 병합 + "workers": worker_manager.get_status() or worker_status, + "sessions": session_pool.get_status() or session_status, "jetson": jetson_info, "api_stats": api_stats, "model_performance_stats": model_performance_stats, @@ -984,6 +985,17 @@ HTML_TEMPLATE = """ + +
+

📈 워커·세션 타임라인

+
+ 로딩 중... +
+
+ +
+
+

🚨 최근 API 에러

@@ -1117,7 +1129,8 @@ HTML_TEMPLATE = """ function connectWebSocket() { try { - ws = new WebSocket(`ws://${window.location.host}/ws`); + const proto = (window.location.protocol === 'https:') ? 'wss' : 'ws'; + ws = new WebSocket(`${proto}://${window.location.host}/ws`); ws.onopen = function() { console.log('WebSocket 연결이 성공했습니다.'); @@ -1418,7 +1431,8 @@ HTML_TEMPLATE = """ const path = e.path || '-'; const status = e.status != null ? e.status : '-'; const rt = e.response_time_ms != null ? e.response_time_ms : '-'; - return `
${ts}
${method}
${status}
${path}
${rt}
`; + const ip = e.client_ip ? ` (IP: ${e.client_ip})` : ''; + return `
${ts}
${method}
${status}
${path}${ip}
${rt}
`; }).join(''); container.innerHTML = rows; } @@ -1705,6 +1719,32 @@ HTML_TEMPLATE = """ }); } + function renderTimeline(events) { + const el = document.getElementById('scale-timeline'); + if (!Array.isArray(events) || events.length === 0) { + el.innerHTML = '
이벤트 없음
'; + return; + } + const rows = events.slice().reverse().map(ev => { + const ts = ev.timestamp ? new Date(ev.timestamp*1000).toLocaleTimeString() : ''; + if (ev.type === 'worker_scale') { + return `[${ts}] WORKERS ${ev.action.toUpperCase()} -> ${ev.new_count} (queue=${ev.queue_size}, vram=${(ev.vram_usage*100||0).toFixed(1)}%)`; + } + if (ev.type === 'session') { + return `[${ts}] SESSION ${ev.action.toUpperCase()} (${ev.model}) size=${ev.pool_size}`; + } + return `[${ts}] ${ev.type}`; + }).join('\n'); + el.textContent = rows; + } + + function refreshTimeline() { + fetch('/api/scale-events') + .then(r => r.json()) + .then(data => renderTimeline(data.events || [])) + .catch(() => { document.getElementById('scale-timeline').innerHTML = '
타임라인 로딩 실패
'; }); + } + // 페이지 로드 시 초기화 document.addEventListener('DOMContentLoaded', function() { // 로그 및 성능 통계 초기 로딩 @@ -2014,6 +2054,16 @@ async def get_system_alerts(): logger.error(f"시스템 알림 조회 실패: {e}") return {"alerts": [], "error": str(e)} +@api_router.get("/scale-events") +def get_scale_events(): + """최근 스케일/세션 이벤트를 반환""" + try: + from ..utils.monitor_events import read_recent_events + return {"events": read_recent_events(limit=300)} + except Exception as e: + logger.error(f"타임라인 조회 실패: {e}") + return {"events": [], "error": str(e)} + @api_router.get("/errors", summary="최근 API 에러 목록") def get_recent_errors(limit: int = 50): """최근 API 에러를 반환합니다 (logs/api_errors.jsonl 기반).""" @@ -2297,3 +2347,29 @@ if __name__ == "__main__": port=settings.MONITORING_PORT, log_level="info" ) + +# --- 외부 런처용: 로그에 시간 포함하여 실행 --- +def _get_uvicorn_log_config(): + try: + from uvicorn.config import LOGGING_CONFIG as DEFAULT + import copy + cfg = copy.deepcopy(DEFAULT) + # 포맷에 시간 추가 + for fmt in ("default", "access"): + if fmt in cfg.get("formatters", {}): + cfg["formatters"][fmt]["format"] = "%(asctime)s - %(levelname)s - %(name)s - %(message)s" + return cfg + except Exception: + return None + + +def run_monitor(host: str = "0.0.0.0", port: int = None): + """모니터링 서버 실행 (시간 스탬프 포함 로그)""" + _port = port or settings.MONITORING_PORT + uvicorn.run( + monitor_app, + host=host, + port=_port, + log_level="info", + log_config=_get_uvicorn_log_config() + ) diff --git a/app/utils/api_error_log.py b/app/utils/api_error_log.py new file mode 100644 index 0000000..37a4778 --- /dev/null +++ b/app/utils/api_error_log.py @@ -0,0 +1,84 @@ +""" +API 에러 로깅 유틸리티 (JSONL 기록 + 로테이션 + 클라이언트 IP 추출) +""" +from __future__ import annotations + +import os +import time +import json +import re +from typing import Dict, Any +from fastapi import Request + + +LOG_DIR = "logs" +os.makedirs(LOG_DIR, exist_ok=True) + +API_ERROR_LOG_PATH = os.path.join(LOG_DIR, "api_errors.jsonl") +API_ERROR_MAX_BYTES = 10 * 1024 * 1024 # 10MB +API_ERROR_BACKUP_COUNT = 5 + + +def _rotate_if_needed() -> None: + try: + if os.path.exists(API_ERROR_LOG_PATH) and os.path.getsize(API_ERROR_LOG_PATH) >= API_ERROR_MAX_BYTES: + ts = time.strftime("%Y%m%d-%H%M%S") + rotated_path = os.path.join(LOG_DIR, f"api_errors_{ts}.jsonl") + os.replace(API_ERROR_LOG_PATH, rotated_path) + + rotated = [ + os.path.join(LOG_DIR, f) for f in os.listdir(LOG_DIR) + if f.startswith("api_errors_") and f.endswith(".jsonl") + ] + rotated.sort(key=lambda p: os.path.getmtime(p), reverse=True) + for old in rotated[API_ERROR_BACKUP_COUNT:]: + try: + os.remove(old) + except Exception: + pass + except Exception: + # 로테이션 실패는 치명적이지 않으므로 무시 + pass + + +def append_api_error_log(record: Dict[str, Any]) -> None: + try: + _rotate_if_needed() + with open(API_ERROR_LOG_PATH, "a", encoding="utf-8") as f: + f.write(json.dumps(record, ensure_ascii=False) + "\n") + except Exception: + pass + + +def extract_client_ip(request: Request) -> str: + try: + xff = request.headers.get("x-forwarded-for") or request.headers.get("X-Forwarded-For") + if xff: + first_ip = xff.split(",")[0].strip() + if first_ip: + return first_ip + xri = request.headers.get("x-real-ip") or request.headers.get("X-Real-IP") + if xri: + return xri.strip() + fwd = request.headers.get("forwarded") or request.headers.get("Forwarded") + if fwd: + m = re.search(r"for=([^;,\s]+)", fwd) + if m: + return m.group(1).strip('"') + if request.client and request.client.host: + return request.client.host + except Exception: + pass + return "" + + +def get_content_length(request: Request) -> int: + try: + v = request.headers.get("content-length") or request.headers.get("Content-Length") + if v is None: + return 0 + return int(v) + except Exception: + return 0 + + diff --git a/app/utils/monitor_events.py b/app/utils/monitor_events.py new file mode 100644 index 0000000..dac5c24 --- /dev/null +++ b/app/utils/monitor_events.py @@ -0,0 +1,69 @@ +""" +경량 모니터링 이벤트(JSONL) 기록 및 읽기 유틸 + - worker 스케일 업/다운 + - 세션 생성/회수 +""" +from __future__ import annotations + +import os +import time +import json +from typing import Dict, Any, List + + +LOG_DIR = "logs" +os.makedirs(LOG_DIR, exist_ok=True) + +EVENT_LOG_PATH = os.path.join(LOG_DIR, "scale_events.jsonl") +MAX_BYTES = 10 * 1024 * 1024 # 10MB +BACKUP = 10 + + +def _rotate_if_needed(): + try: + if os.path.exists(EVENT_LOG_PATH) and os.path.getsize(EVENT_LOG_PATH) > MAX_BYTES: + ts = time.strftime("%Y%m%d-%H%M%S") + os.replace(EVENT_LOG_PATH, os.path.join(LOG_DIR, f"scale_events_{ts}.jsonl")) + rotated = [os.path.join(LOG_DIR, f) for f in os.listdir(LOG_DIR) if f.startswith("scale_events_")] + rotated.sort(key=lambda p: os.path.getmtime(p), reverse=True) + for p in rotated[BACKUP:]: + try: + os.remove(p) + except Exception: + pass + except Exception: + pass + + +def append_event(event: Dict[str, Any]) -> None: + try: + _rotate_if_needed() + if "timestamp" not in event: + event["timestamp"] = time.time() + with open(EVENT_LOG_PATH, "a", encoding="utf-8") as f: + f.write(json.dumps(event, ensure_ascii=False) + "\n") + except Exception: + pass + + +def read_recent_events(limit: int = 300) -> List[Dict[str, Any]]: + try: + if not os.path.exists(EVENT_LOG_PATH): + return [] + events: List[Dict[str, Any]] = [] + with open(EVENT_LOG_PATH, "r", encoding="utf-8") as f: + # 간단히 끝에서 limit줄만 읽기 (파일이 크지 않다고 가정) + lines = f.readlines()[-limit:] + for line in lines: + line = line.strip() + if not line: + continue + try: + events.append(json.loads(line)) + except Exception: + continue + return events + except Exception: + return [] + + diff --git a/logs/main.log b/logs/main.log index 288d739..44a4a9d 100644 --- a/logs/main.log +++ b/logs/main.log @@ -12897,3 +12897,191870 @@ 2025-10-01 08:18:18,185 - main - INFO - 🎉 인페인팅 서버 시작 완료! 2025-10-01 08:18:18,186 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다. 2025-10-01 08:18:18,186 - app.core.session_pool - INFO - Idle session reaper started. Timeout: 1800s, Check Interval: 60s +2025-10-01 08:22:29,578 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 08:22:29,626 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 08:22:37,732 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.224 +2025-10-01 08:22:37,733 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 8.105s +2025-10-01 08:22:37,733 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 8.108s +2025-10-01 08:22:42,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:22:42,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:22:42,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:22:44,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 1.339s +2025-10-01 08:22:44,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 1.339s (avg: 1.339s/image) +2025-10-01 08:22:44,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:22:50,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:22:50,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:22:50,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:22:57,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 6.918s +2025-10-01 08:22:57,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 6.918s (avg: 6.918s/image) +2025-10-01 08:22:57,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:23:03,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:23:03,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:23:03,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:23:03,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 08:23:03,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 08:23:03,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:23:09,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:23:09,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:23:09,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:23:09,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 08:23:09,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 08:23:09,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:23:53,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:23:53,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:23:53,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:23:53,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 08:23:53,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 08:23:53,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:24:06,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:24:06,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:24:06,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:24:07,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 08:24:07,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 08:24:07,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:24:13,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:24:13,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:24:13,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:24:13,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 08:24:13,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 08:24:13,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:24:22,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:24:22,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:24:22,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:24:23,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 08:24:23,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 08:24:23,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:24:28,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:24:28,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:24:28,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:24:29,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 08:24:29,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 08:24:29,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:24:33,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:24:33,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:24:33,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:24:33,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 08:24:33,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 08:24:33,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:24:42,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:24:42,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:24:42,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:24:42,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 08:24:42,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 08:24:42,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:24:45,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:24:45,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:24:45,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:24:46,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 08:24:46,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 08:24:46,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:24:51,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:24:51,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:24:51,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:24:51,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 08:24:51,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 08:24:51,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:25:02,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:25:02,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:25:02,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:25:02,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 08:25:02,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 08:25:02,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:25:07,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:25:07,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:25:08,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:25:08,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 08:25:08,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 08:25:08,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:25:13,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:25:13,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:25:13,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:25:13,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 08:25:13,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 08:25:13,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:25:17,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:25:17,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:25:17,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:25:17,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 08:25:17,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 08:25:17,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:25:30,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:25:30,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:25:30,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:25:30,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 08:25:30,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 08:25:30,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:25:41,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:25:41,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:25:41,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:25:42,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 08:25:42,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 08:25:42,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:25:47,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:25:47,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:25:47,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:25:47,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 08:25:47,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 08:25:47,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:25:50,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:25:50,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:25:50,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:25:50,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 08:25:50,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 08:25:50,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:26:19,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:26:19,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:26:19,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:26:19,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 08:26:19,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 08:26:19,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:26:26,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:26:26,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:26:27,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:26:27,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 08:26:27,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 08:26:27,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:26:38,568 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 08:26:38,590 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 08:26:38,681 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.609 +2025-10-01 08:26:38,681 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 08:26:38,681 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 08:26:44,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:26:44,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:26:44,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:26:44,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 08:26:44,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 08:26:44,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:26:51,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:26:51,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:26:51,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:26:51,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 08:26:51,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 08:26:51,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:26:58,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:26:58,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:26:58,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:26:58,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 08:26:58,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 08:26:58,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:27:07,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:27:07,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:27:07,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:27:07,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 08:27:07,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 08:27:07,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:27:31,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:27:31,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:27:31,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:27:31,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 08:27:31,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 08:27:31,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:27:39,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:27:39,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:27:39,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:27:39,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 08:27:39,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 08:27:39,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:27:44,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:27:44,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:27:44,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:27:44,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 08:27:44,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 08:27:44,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:27:48,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:27:48,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:27:48,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:27:48,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 08:27:48,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 08:27:48,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:27:57,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:27:57,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:27:57,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:27:57,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 08:27:57,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 08:27:57,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:28:04,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:28:04,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:28:04,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:28:04,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 08:28:04,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 08:28:04,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:28:12,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:28:12,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:28:12,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:28:12,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 08:28:12,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 08:28:12,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:28:16,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:28:16,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:28:16,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:28:16,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 08:28:16,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 08:28:16,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:28:21,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:28:21,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:28:21,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:28:21,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 08:28:21,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 08:28:21,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:28:24,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:28:24,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:28:24,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:28:24,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 08:28:24,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 08:28:24,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:28:27,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:28:27,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:28:27,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:28:27,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 08:28:27,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 08:28:27,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:28:35,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:28:35,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:28:35,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:28:36,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 08:28:36,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 08:28:36,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:28:40,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:28:40,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:28:40,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:28:41,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 08:28:41,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 08:28:41,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:28:48,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:28:48,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:28:48,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:28:48,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 08:28:48,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 08:28:48,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:28:52,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:28:52,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:28:52,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:28:52,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 08:28:52,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 08:28:52,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:28:58,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:28:58,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:28:58,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:28:58,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 08:28:58,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 08:28:58,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:30:10,422 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 08:30:10,446 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 08:30:10,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.497 +2025-10-01 08:30:10,547 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 08:30:10,547 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 08:30:53,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:30:53,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:30:53,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:30:54,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 08:30:54,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 08:30:54,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:31:00,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:31:00,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:31:00,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:31:00,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 08:31:00,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 08:31:00,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:31:05,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:31:05,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:31:05,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:31:05,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 08:31:05,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 08:31:05,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:31:09,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:31:09,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:31:09,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:31:09,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 08:31:09,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 08:31:09,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:31:19,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:31:19,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:31:19,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:31:19,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 08:31:19,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 08:31:19,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:31:27,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:31:27,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:31:27,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:31:27,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 08:31:27,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 08:31:27,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:32:28,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:32:28,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:32:28,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:32:28,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 08:32:28,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 08:32:28,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:32:33,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:32:33,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:32:34,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:32:34,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 08:32:34,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 08:32:34,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:32:39,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:32:39,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:32:39,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:32:39,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 08:32:39,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 08:32:39,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:32:53,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 08:32:53,518 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 08:32:53,613 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.609 +2025-10-01 08:32:53,613 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 08:32:53,614 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 08:32:59,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:32:59,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:32:59,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:32:59,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 08:32:59,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 08:32:59,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:33:10,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:33:10,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:33:10,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:33:10,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 08:33:10,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 08:33:10,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:33:19,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:33:19,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:33:19,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:33:19,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 08:33:19,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 08:33:19,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:33:43,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:33:43,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:33:43,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:33:43,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 08:33:43,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 08:33:43,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:33:45,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:33:45,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:33:45,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:33:45,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 08:33:45,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 08:33:45,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:33:48,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:33:48,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:33:48,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:33:49,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 08:33:49,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 08:33:49,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:33:53,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:33:53,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:33:53,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:33:53,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 08:33:53,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 08:33:53,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:34:04,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:34:04,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:34:04,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:34:04,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 08:34:04,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 08:34:04,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:34:08,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:34:08,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:34:08,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:34:08,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 08:34:08,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 08:34:08,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:34:13,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:34:13,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:34:13,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:34:13,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.206s +2025-10-01 08:34:13,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.206s (avg: 0.206s/image) +2025-10-01 08:34:13,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:34:17,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:34:17,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:34:17,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:34:17,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 08:34:17,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 08:34:17,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:34:21,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:34:21,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:34:21,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:34:21,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 08:34:21,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 08:34:21,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:34:26,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:34:26,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:34:26,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:34:26,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 08:34:26,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 08:34:26,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:34:33,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:34:33,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:34:33,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:34:33,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 08:34:33,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 08:34:33,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:34:37,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:34:38,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:34:38,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:34:38,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 08:34:38,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 08:34:38,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:34:42,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:34:42,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:34:42,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:34:42,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 08:34:42,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 08:34:42,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:34:44,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:34:44,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:34:44,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:34:44,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 08:34:44,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 08:34:44,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:34:46,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:34:46,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:34:46,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:34:46,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 08:34:46,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 08:34:46,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:35:52,251 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 08:35:52,283 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 08:35:52,400 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.850 +2025-10-01 08:35:52,400 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.116s +2025-10-01 08:35:52,400 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.117s +2025-10-01 08:36:47,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:36:47,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:36:47,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:36:47,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.206s +2025-10-01 08:36:47,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.206s (avg: 0.206s/image) +2025-10-01 08:36:47,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:37:01,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:37:01,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:37:01,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:37:01,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 08:37:01,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 08:37:01,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:37:05,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:37:05,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:37:05,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:37:05,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 08:37:05,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 08:37:05,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:37:08,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:37:08,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:37:08,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:37:09,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 08:37:09,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 08:37:09,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:37:13,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:37:13,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:37:13,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:37:13,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 08:37:13,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 08:37:13,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:37:17,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:37:17,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:37:17,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:37:17,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 08:37:17,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 08:37:17,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:37:21,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:37:21,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:37:21,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:37:21,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 08:37:21,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 08:37:21,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:37:24,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:37:24,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:37:24,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:37:25,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 08:37:25,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 08:37:25,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:37:30,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:37:30,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:37:30,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:37:30,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 08:37:30,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 08:37:30,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:37:34,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:37:34,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:37:34,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:37:34,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 08:37:34,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 08:37:34,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:37:43,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:37:43,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:37:43,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:37:43,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 08:37:43,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 08:37:43,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:37:54,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:37:54,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:37:54,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:37:54,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 08:37:54,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 08:37:54,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:37:58,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:37:58,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:37:58,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:37:58,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 08:37:58,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 08:37:58,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:38:03,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:38:03,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:38:03,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:38:03,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 08:38:03,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 08:38:03,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:38:08,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:38:08,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:38:08,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:38:08,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 08:38:08,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 08:38:08,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:38:15,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:38:15,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:38:15,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:38:15,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 08:38:15,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 08:38:15,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:39:06,753 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 08:39:06,779 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 08:39:06,895 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.193 +2025-10-01 08:39:06,895 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.115s +2025-10-01 08:39:06,896 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.117s +2025-10-01 08:39:12,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:39:12,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:39:12,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:39:12,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 08:39:12,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 08:39:12,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:39:23,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:39:23,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:39:23,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:39:23,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 08:39:23,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 08:39:23,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:39:30,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:39:30,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:39:30,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:39:30,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 08:39:30,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 08:39:30,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:39:36,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:39:36,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:39:36,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:39:36,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 08:39:36,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 08:39:36,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:40:07,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:40:07,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:40:07,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:40:07,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 08:40:07,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 08:40:07,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:40:11,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:40:11,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:40:11,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:40:11,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 08:40:11,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 08:40:11,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:40:15,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:40:15,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:40:15,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:40:15,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 08:40:15,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 08:40:15,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:40:22,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:40:22,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:40:22,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:40:22,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 08:40:22,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 08:40:22,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:40:27,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:40:27,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:40:27,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:40:27,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 08:40:27,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 08:40:27,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:40:35,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:40:35,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:40:35,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:40:35,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 08:40:35,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 08:40:35,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:40:39,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:40:39,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:40:39,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:40:39,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 08:40:39,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 08:40:39,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:40:45,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:40:45,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:40:45,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:40:45,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 08:40:45,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 08:40:45,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:40:54,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:40:54,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:40:54,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:40:54,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 08:40:54,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 08:40:54,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:40:59,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:40:59,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:40:59,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:40:59,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 08:40:59,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 08:40:59,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:41:03,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:41:03,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:41:03,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:41:03,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 08:41:03,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 08:41:03,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:41:08,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:41:08,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:41:08,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:41:08,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 08:41:08,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 08:41:08,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:41:15,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:41:15,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:41:15,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:41:15,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 08:41:15,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 08:41:15,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:41:25,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:41:25,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:41:25,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:41:25,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 08:41:25,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 08:41:25,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:41:39,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:41:39,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:41:39,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:41:39,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 08:41:39,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 08:41:39,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:41:51,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:41:51,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:41:51,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:41:51,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 08:41:51,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 08:41:51,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:41:59,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:41:59,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:41:59,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:41:59,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 08:41:59,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 08:41:59,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:42:20,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:42:20,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:42:20,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:42:20,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 08:42:20,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 08:42:20,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:42:28,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:42:28,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:42:28,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:42:28,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 08:42:28,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 08:42:28,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:42:31,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:42:31,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:42:31,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:42:31,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 08:42:31,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 08:42:31,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:43:22,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:43:22,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:43:22,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:43:22,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 08:43:22,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 08:43:22,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:43:26,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:43:26,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:43:26,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:43:26,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 08:43:26,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 08:43:26,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:43:30,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:43:30,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:43:30,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:43:30,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 08:43:30,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 08:43:30,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:43:35,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:43:35,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:43:35,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:43:35,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 08:43:35,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 08:43:35,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:43:48,093 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 08:43:48,116 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 08:43:48,205 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.626 +2025-10-01 08:43:48,205 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 08:43:48,205 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 08:43:53,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:43:53,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:43:53,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:43:54,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 08:43:54,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 08:43:54,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:43:59,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:43:59,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:43:59,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:44:00,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 08:44:00,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 08:44:00,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:44:33,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:44:33,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:44:33,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:44:33,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 08:44:33,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 08:44:33,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:44:42,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:44:42,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:44:42,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:44:42,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 08:44:42,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 08:44:42,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:44:45,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:44:45,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:44:45,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:44:46,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 08:44:46,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 08:44:46,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:44:48,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:44:48,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:44:48,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:44:49,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 08:44:49,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 08:44:49,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:44:52,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:44:52,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:44:52,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:44:52,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 08:44:52,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 08:44:52,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:45:11,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:45:11,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:45:11,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:45:11,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 08:45:11,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 08:45:11,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:45:14,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:45:14,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:45:14,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:45:14,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 08:45:14,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 08:45:14,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:45:18,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:45:18,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:45:18,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:45:18,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 08:45:18,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 08:45:18,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:45:26,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:45:26,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:45:26,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:45:26,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 08:45:26,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 08:45:26,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:45:30,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:45:30,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:45:30,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:45:30,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-01 08:45:30,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-01 08:45:30,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:45:37,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:45:37,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:45:37,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:45:37,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 08:45:37,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 08:45:37,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:46:41,070 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 08:46:41,106 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 08:46:41,202 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.514 +2025-10-01 08:46:41,202 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 08:46:41,202 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 08:47:24,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:47:24,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:47:24,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:47:24,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.204s +2025-10-01 08:47:24,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image) +2025-10-01 08:47:24,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:48:07,749 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 08:48:07,778 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 08:48:07,877 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.190 +2025-10-01 08:48:07,878 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 08:48:07,878 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 08:48:43,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:48:43,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:48:43,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:48:43,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 08:48:43,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 08:48:43,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:48:50,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:48:50,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:48:50,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:48:50,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 08:48:50,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 08:48:50,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:48:54,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:48:54,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:48:54,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:48:54,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 08:48:54,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 08:48:54,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:48:56,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:48:56,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:48:56,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:48:56,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 08:48:56,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 08:48:56,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:50:23,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:50:23,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:50:23,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:50:23,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 08:50:23,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 08:50:23,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:50:29,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:50:29,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:50:29,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:50:29,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 08:50:29,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 08:50:29,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:50:39,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:50:39,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:50:39,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:50:39,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 08:50:39,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 08:50:39,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:50:48,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:50:48,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:50:48,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:50:48,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 08:50:48,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 08:50:48,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:50:54,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:50:54,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:50:54,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:50:54,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 08:50:54,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 08:50:54,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:51:00,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:51:00,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:51:00,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:51:00,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 08:51:00,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 08:51:00,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:51:07,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:51:07,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:51:07,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:51:07,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 08:51:07,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 08:51:07,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:51:13,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:51:13,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:51:13,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:51:13,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 08:51:13,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 08:51:13,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:51:27,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:51:27,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:51:27,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:51:27,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 08:51:27,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 08:51:27,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:51:33,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:51:33,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:51:33,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:51:33,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 08:51:33,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 08:51:33,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:51:46,073 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 08:51:46,100 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 08:51:46,196 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.899 +2025-10-01 08:51:46,197 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 08:51:46,197 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 08:51:57,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:51:57,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:51:57,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:51:57,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 08:51:57,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 08:51:57,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:52:02,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:52:02,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:52:03,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:52:03,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 08:52:03,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 08:52:03,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:52:09,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:52:09,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:52:09,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:52:09,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 08:52:09,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 08:52:09,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:52:17,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:52:17,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:52:17,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:52:17,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 08:52:17,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 08:52:17,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:52:49,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:52:49,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:52:49,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:52:49,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +2025-10-01 08:52:49,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +2025-10-01 08:52:49,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:52:53,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:52:53,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:52:53,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:52:54,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 08:52:54,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 08:52:54,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:53:00,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:53:00,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:53:00,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:53:00,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 08:53:00,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 08:53:00,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:53:03,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:53:03,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:53:03,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:53:03,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 08:53:03,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 08:53:03,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:53:08,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:53:08,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:53:08,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:53:08,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 08:53:08,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 08:53:08,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:53:15,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:53:15,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:53:15,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:53:15,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 08:53:15,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 08:53:15,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:53:18,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:53:18,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:53:18,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:53:19,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 08:53:19,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 08:53:19,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:53:22,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:53:22,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:53:22,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:53:23,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 08:53:23,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 08:53:23,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:53:27,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:53:27,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:53:27,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:53:28,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 08:53:28,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 08:53:28,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:54:08,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:54:08,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:54:08,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:54:08,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 08:54:08,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 08:54:08,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:54:12,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:54:12,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:54:12,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:54:12,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 08:54:12,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 08:54:12,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:54:17,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:54:17,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:54:17,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:54:17,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 08:54:17,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 08:54:17,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:54:21,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:54:21,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:54:21,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:54:21,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 08:54:21,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 08:54:21,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:54:24,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:54:24,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:54:24,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:54:24,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 08:54:24,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 08:54:24,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:54:38,794 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 08:54:38,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 08:54:38,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.942 +2025-10-01 08:54:38,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 08:54:38,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 08:54:51,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:54:51,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:54:51,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:54:51,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 08:54:51,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 08:54:51,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:54:58,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:54:58,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:54:58,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:54:58,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 08:54:58,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 08:54:58,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:55:04,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:55:04,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:55:04,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:55:05,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 08:55:05,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 08:55:05,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:55:12,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:55:12,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:55:12,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:55:12,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 08:55:12,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 08:55:12,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:55:35,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:55:35,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:55:36,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:55:36,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 08:55:36,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 08:55:36,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:55:43,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:55:43,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:55:43,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:55:43,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.210s +2025-10-01 08:55:43,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.210s (avg: 0.210s/image) +2025-10-01 08:55:43,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:55:55,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:55:55,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:55:55,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:55:55,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 08:55:55,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 08:55:55,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:56:05,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:56:05,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:56:06,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:56:06,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.213s +2025-10-01 08:56:06,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.213s (avg: 0.213s/image) +2025-10-01 08:56:06,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:56:14,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:56:14,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:56:14,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:56:14,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.207s +2025-10-01 08:56:14,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.207s (avg: 0.207s/image) +2025-10-01 08:56:14,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:56:24,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:56:24,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:56:24,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:56:24,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 08:56:24,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 08:56:24,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:56:29,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:56:29,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:56:29,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:56:29,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 08:56:29,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 08:56:29,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:56:33,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:56:33,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:56:33,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:56:33,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 08:56:33,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 08:56:33,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:56:40,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:56:40,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:56:40,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:56:40,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +2025-10-01 08:56:40,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +2025-10-01 08:56:40,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:57:53,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:57:53,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:57:53,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:57:53,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 08:57:53,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 08:57:53,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:58:02,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:58:02,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:58:02,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:58:02,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 08:58:02,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 08:58:02,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:58:35,727 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 08:58:35,764 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 08:58:35,859 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.531 +2025-10-01 08:58:35,859 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 08:58:35,859 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 08:58:42,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:58:42,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:58:42,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:58:42,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 08:58:42,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 08:58:42,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:58:55,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:58:55,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:58:55,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:58:55,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 08:58:55,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 08:58:55,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:59:07,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:59:07,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:59:07,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:59:07,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 08:59:07,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 08:59:07,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 08:59:49,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 08:59:49,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 08:59:49,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 08:59:49,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 08:59:49,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.273s (avg: 0.273s/image) +2025-10-01 08:59:49,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:00:00,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:00:00,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:00:01,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:00:01,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.230s +2025-10-01 09:00:01,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.230s (avg: 0.230s/image) +2025-10-01 09:00:01,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:01:32,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:01:32,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:01:32,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:01:33,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 09:01:33,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 09:01:33,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:01:41,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:01:41,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:01:41,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:01:41,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:01:41,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:01:41,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:01:46,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:01:46,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:01:46,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:01:47,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:01:47,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:01:47,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:01:55,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:01:55,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:01:55,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:01:55,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 09:01:55,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 09:01:55,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:01:59,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:01:59,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:01:59,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:01:59,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 09:01:59,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 09:01:59,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:02:06,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:02:06,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:02:07,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:02:07,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 09:02:07,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 09:02:07,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:02:13,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:02:13,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:02:13,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:02:14,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 09:02:14,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 09:02:14,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:02:19,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:02:19,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:02:19,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:02:19,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 09:02:19,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 09:02:19,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:02:32,938 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:02:32,973 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:02:33,073 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.041 +2025-10-01 09:02:33,073 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 09:02:33,073 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 09:02:39,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:02:39,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:02:39,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:02:39,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 09:02:39,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 09:02:39,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:02:45,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:02:45,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:02:45,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:02:45,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 09:02:45,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 09:02:45,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:02:49,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:02:49,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:02:49,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:02:50,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 09:02:50,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 09:02:50,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:02:54,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:02:54,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:02:54,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:02:54,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:02:54,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:02:54,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:03:02,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:03:02,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:03:02,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:03:02,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 09:03:02,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 09:03:02,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:03:31,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:03:31,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:03:31,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:03:31,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.230s +2025-10-01 09:03:31,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.230s (avg: 0.230s/image) +2025-10-01 09:03:31,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:03:37,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:03:37,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:03:37,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:03:37,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 09:03:37,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 09:03:37,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:03:42,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:03:42,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:03:42,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:03:42,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 09:03:42,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 09:03:42,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:03:47,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:03:47,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:03:47,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:03:47,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 09:03:47,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 09:03:47,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:03:52,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:03:52,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:03:52,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:03:52,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 09:03:52,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 09:03:52,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:03:57,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:03:57,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:03:57,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:03:57,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 09:03:57,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 09:03:57,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:04:02,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:04:02,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:04:02,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:04:02,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 09:04:02,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 09:04:02,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:04:07,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:04:07,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:04:07,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:04:07,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 09:04:07,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 09:04:07,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:04:14,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:04:14,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:04:14,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:04:14,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 09:04:14,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 09:04:14,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:04:19,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:04:19,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:04:19,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:04:19,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 09:04:19,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 09:04:19,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:04:24,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:04:24,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:04:24,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:04:24,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 09:04:24,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 09:04:24,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:04:28,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:04:28,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:04:28,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:04:28,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 09:04:28,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 09:04:28,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:04:35,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:04:35,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:04:35,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:04:35,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.215s +2025-10-01 09:04:35,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.215s (avg: 0.215s/image) +2025-10-01 09:04:35,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:05:45,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:05:45,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:05:45,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:05:45,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 09:05:45,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 09:05:45,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:05:50,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:05:50,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:05:50,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:05:51,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 09:05:51,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 09:05:51,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:05:56,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:05:56,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:05:56,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:05:56,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 09:05:56,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 09:05:56,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:06:02,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:06:02,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:06:02,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:06:02,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:06:02,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:06:02,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:06:19,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:06:19,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:06:19,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:06:19,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:06:19,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:06:19,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:06:26,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:06:26,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:06:26,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:06:26,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 09:06:26,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 09:06:26,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:06:32,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:06:32,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:06:32,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:06:32,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:06:32,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:06:32,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:06:37,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:06:37,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:06:37,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:06:37,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 09:06:37,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 09:06:37,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:06:47,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:06:47,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:06:47,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:06:48,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 09:06:48,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 09:06:48,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:07:00,803 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:07:00,828 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:07:00,916 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.531 +2025-10-01 09:07:00,917 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 09:07:00,917 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 09:07:43,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:07:43,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:07:43,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:07:43,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 09:07:43,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 09:07:43,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:07:46,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:07:46,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:07:46,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:07:46,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 09:07:46,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 09:07:46,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:07:53,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:07:53,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:07:53,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:07:54,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:07:54,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:07:54,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:08:00,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:08:00,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:08:00,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:08:00,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.204s +2025-10-01 09:08:00,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image) +2025-10-01 09:08:00,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:08:11,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:08:11,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:08:11,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:08:11,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 09:08:11,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 09:08:11,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:08:20,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:08:20,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:08:20,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:08:20,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 09:08:20,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 09:08:20,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:08:23,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:08:23,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:08:24,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:08:24,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 09:08:24,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 09:08:24,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:08:28,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:08:28,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:08:28,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:08:28,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:08:28,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:08:28,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:08:35,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:08:35,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:08:35,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:08:35,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:08:35,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:08:35,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:09:11,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:09:11,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:09:11,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:09:11,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 09:09:11,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 09:09:11,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:09:16,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:09:16,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:09:16,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:09:16,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 09:09:16,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 09:09:16,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:09:21,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:09:21,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:09:21,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:09:21,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:09:21,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:09:21,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:09:27,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:09:27,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:09:27,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:09:27,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 09:09:27,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 09:09:27,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:09:33,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:09:33,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:09:33,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:09:33,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 09:09:33,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 09:09:33,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:09:39,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:09:39,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:09:39,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:09:39,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 09:09:39,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 09:09:39,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:09:44,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:09:44,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:09:44,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:09:44,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 09:09:44,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 09:09:44,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:09:48,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:09:48,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:09:48,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:09:49,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 09:09:49,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 09:09:49,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:09:54,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:09:54,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:09:54,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:09:54,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 09:09:54,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 09:09:54,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:10:00,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:10:00,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:10:00,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:10:00,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 09:10:00,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 09:10:00,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:10:13,256 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:10:13,275 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:10:13,360 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.553 +2025-10-01 09:10:13,360 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 09:10:13,360 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 09:10:18,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:10:18,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:10:18,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:10:19,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 09:10:19,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 09:10:19,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:10:25,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:10:25,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:10:25,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:10:25,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 09:10:25,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 09:10:25,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:10:36,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:10:36,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:10:36,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:10:36,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 09:10:36,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 09:10:36,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:11:03,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:11:03,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:11:03,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:11:04,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 09:11:04,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 09:11:04,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:11:08,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:11:08,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:11:08,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:11:08,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 09:11:08,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 09:11:08,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:11:15,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:11:15,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:11:15,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:11:15,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:11:15,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:11:15,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:11:19,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:11:19,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:11:19,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:11:20,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 09:11:20,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 09:11:20,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:11:24,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:11:24,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:11:24,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:11:24,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 09:11:24,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 09:11:24,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:11:29,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:11:29,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:11:29,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:11:29,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 09:11:29,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 09:11:29,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:11:34,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:11:34,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:11:35,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:11:35,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:11:35,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:11:35,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:11:37,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:11:37,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:11:37,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:11:37,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 09:11:37,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 09:11:37,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:11:44,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:11:44,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:11:44,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:11:44,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 09:11:44,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 09:11:44,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:11:49,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:11:49,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:11:49,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:11:49,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 09:11:49,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 09:11:49,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:11:52,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:11:52,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:11:52,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:11:52,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 09:11:52,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 09:11:52,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:12:40,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:12:40,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:12:40,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:12:40,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 09:12:40,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 09:12:40,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:12:46,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:12:46,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:12:46,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:12:46,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 09:12:46,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 09:12:46,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:12:58,239 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:12:58,265 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:12:58,357 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.043 +2025-10-01 09:12:58,358 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 09:12:58,358 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 09:13:04,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:13:04,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:13:04,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:13:04,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 09:13:04,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 09:13:04,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:13:14,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:13:14,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:13:14,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:13:14,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:13:14,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:13:14,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:14:03,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:14:03,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:14:03,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:14:03,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 09:14:03,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 09:14:03,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:14:19,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:14:19,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:14:19,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:14:19,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 09:14:19,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 09:14:19,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:14:34,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:14:34,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:14:34,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:14:34,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 09:14:34,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 09:14:34,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:15:04,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:15:04,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:15:04,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:15:04,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 09:15:04,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 09:15:04,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:15:09,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:15:09,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:15:09,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:15:09,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:15:09,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:15:09,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:15:14,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:15:14,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:15:14,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:15:14,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 09:15:14,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 09:15:14,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:15:20,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:15:20,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:15:20,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:15:20,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 09:15:20,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 09:15:20,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:15:25,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:15:25,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:15:25,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:15:25,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:15:25,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:15:25,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:15:29,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:15:29,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:15:29,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:15:30,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 09:15:30,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 09:15:30,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:15:43,161 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:15:43,192 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:15:43,278 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.425 +2025-10-01 09:15:43,279 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 09:15:43,279 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 09:15:49,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:15:49,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:15:49,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:15:49,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 09:15:49,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 09:15:49,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:16:11,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:16:11,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:16:11,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:16:11,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 09:16:11,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 09:16:11,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:16:59,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:16:59,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:16:59,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:16:59,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 09:16:59,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 09:16:59,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:17:04,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:17:04,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:17:05,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:17:05,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 09:17:05,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 09:17:05,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:17:10,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:17:10,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:17:10,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:17:10,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 09:17:10,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 09:17:10,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:17:13,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:17:13,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:17:13,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:17:14,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 09:17:14,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 09:17:14,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:17:18,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:17:18,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:17:18,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:17:18,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:17:18,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:17:18,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:17:23,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:17:23,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:17:23,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:17:23,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:17:23,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:17:23,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:17:27,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:17:27,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:17:27,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:17:27,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:17:27,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:17:27,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:17:33,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:17:33,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:17:33,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:17:34,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:17:34,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:17:34,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:17:37,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:17:37,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:17:37,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:17:37,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 09:17:37,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 09:17:37,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:17:52,552 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:17:52,589 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:17:52,679 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.656 +2025-10-01 09:17:52,679 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 09:17:52,680 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 09:18:18,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:18:18,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:18:19,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:18:19,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 09:18:19,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 09:18:19,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:18:22,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:18:22,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:18:22,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:18:22,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 09:18:22,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 09:18:22,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:18:27,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:18:27,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:18:27,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:18:27,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 09:18:27,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 09:18:27,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:18:38,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:18:38,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:18:38,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:18:38,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 09:18:38,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 09:18:38,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:18:44,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:18:44,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:18:44,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:18:44,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 09:18:44,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 09:18:44,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:18:50,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:18:50,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:18:50,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:18:50,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 09:18:50,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 09:18:50,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:18:54,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:18:54,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:18:54,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:18:54,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:18:54,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:18:54,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:20:17,614 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:20:17,641 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(691, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:20:17,737 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.824 +2025-10-01 09:20:17,737 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 09:20:17,737 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 09:20:24,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:20:24,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:20:24,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:20:24,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 09:20:24,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 09:20:24,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:20:30,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:20:30,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:20:30,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:20:30,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 09:20:30,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 09:20:30,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:20:35,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:20:35,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:20:36,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:20:36,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 09:20:36,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 09:20:36,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:20:42,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:20:42,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:20:42,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:20:42,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 09:20:42,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 09:20:42,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:21:04,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:21:04,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:21:04,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:21:04,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 09:21:04,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 09:21:04,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:21:07,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:21:07,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:21:07,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:21:07,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 09:21:07,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 09:21:07,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:21:12,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:21:12,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:21:12,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:21:13,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 09:21:13,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 09:21:13,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:21:21,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:21:21,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:21:21,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:21:21,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 09:21:21,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 09:21:21,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:21:25,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:21:25,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:21:25,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:21:26,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 09:21:26,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 09:21:26,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:21:36,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:21:36,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:21:37,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:21:37,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 09:21:37,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 09:21:37,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:22:30,339 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:22:30,366 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:22:30,469 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.273 +2025-10-01 09:22:30,470 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 09:22:30,470 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 09:23:04,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:23:04,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:23:04,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:23:04,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 09:23:04,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 09:23:04,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:24:05,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:24:05,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:24:05,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:24:05,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 09:24:05,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 09:24:05,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:24:10,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:24:10,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:24:10,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:24:10,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 09:24:10,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 09:24:10,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:24:15,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:24:15,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:24:15,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:24:15,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 09:24:15,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 09:24:15,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:24:21,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:24:21,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:24:21,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:24:21,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:24:21,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:24:21,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:24:25,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:24:25,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:24:25,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:24:26,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 09:24:26,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 09:24:26,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:24:31,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:24:31,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:24:31,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:24:31,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:24:31,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:24:31,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:24:34,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:24:34,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:24:34,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:24:34,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:24:34,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:24:34,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:24:40,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:24:40,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:24:40,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:24:40,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 09:24:40,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 09:24:40,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:24:44,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:24:44,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:24:44,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:24:44,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:24:44,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:24:44,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:24:49,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:24:49,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:24:50,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:24:50,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 09:24:50,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 09:24:50,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:25:03,383 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:25:03,407 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:25:03,501 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.162 +2025-10-01 09:25:03,501 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 09:25:03,501 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 09:25:51,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:25:51,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:25:51,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:25:51,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +2025-10-01 09:25:51,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +2025-10-01 09:25:51,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:25:56,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:25:56,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:25:56,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:25:56,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 09:25:56,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 09:25:56,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:26:04,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:26:04,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:26:04,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:26:04,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 09:26:04,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 09:26:04,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:26:16,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:26:16,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:26:16,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:26:16,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 09:26:16,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 09:26:16,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:27:18,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:27:18,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:27:18,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:27:18,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 09:27:18,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 09:27:18,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:27:28,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:27:28,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:27:28,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:27:28,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 09:27:28,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 09:27:28,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:27:53,836 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:27:53,860 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(718, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:27:53,951 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.126 +2025-10-01 09:27:53,951 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 09:27:53,951 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 09:28:37,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:28:37,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:28:37,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:28:37,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 09:28:37,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 09:28:37,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:28:40,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:28:40,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:28:40,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:28:40,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 09:28:40,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 09:28:40,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:28:44,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:28:44,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:28:44,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:28:45,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 09:28:45,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 09:28:45,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:28:49,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:28:49,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:28:49,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:28:49,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 09:28:49,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 09:28:49,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:28:53,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:28:53,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:28:53,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:28:53,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 09:28:53,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 09:28:53,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:30:14,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:30:14,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:30:14,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:30:14,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 09:30:14,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 09:30:14,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:30:19,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:30:19,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:30:19,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:30:19,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:30:19,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:30:19,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:30:24,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:30:24,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:30:24,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:30:25,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:30:25,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:30:25,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:30:38,417 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:30:38,443 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:30:38,528 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.646 +2025-10-01 09:30:38,528 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 09:30:38,529 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 09:31:32,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:31:32,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:31:32,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:31:32,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 09:31:32,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 09:31:32,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:31:37,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:31:37,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:31:37,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:31:37,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 09:31:37,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 09:31:37,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:31:50,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:31:50,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:31:50,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:31:50,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 09:31:50,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 09:31:50,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:31:59,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:31:59,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:31:59,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:31:59,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 09:31:59,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 09:31:59,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:32:08,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:32:08,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:32:08,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:32:08,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 09:32:08,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 09:32:08,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:32:14,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:32:14,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:32:14,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:32:14,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 09:32:14,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 09:32:14,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:32:21,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:32:21,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:32:21,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:32:21,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:32:21,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:32:21,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:32:56,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:32:56,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:32:56,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:32:56,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 09:32:56,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 09:32:56,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:32:59,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:32:59,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:32:59,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:33:00,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 09:33:00,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 09:33:00,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:33:20,518 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:33:20,546 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:33:20,640 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=14.454 +2025-10-01 09:33:20,640 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 09:33:20,640 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 09:34:28,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:34:28,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:34:28,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:34:28,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 09:34:28,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 09:34:28,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:34:34,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:34:34,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:34:34,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:34:34,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:34:34,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:34:34,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:34:39,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:34:39,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:34:39,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:34:39,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 09:34:39,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 09:34:39,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:34:53,314 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:34:53,340 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:34:53,428 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.183 +2025-10-01 09:34:53,429 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 09:34:53,429 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 09:34:58,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:34:58,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:34:58,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:34:58,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 09:34:58,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 09:34:58,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:35:03,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:35:03,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:35:03,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:35:03,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 09:35:03,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 09:35:03,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:35:09,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:35:09,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:35:09,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:35:09,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:35:09,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:35:09,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:35:15,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:35:15,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:35:15,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:35:15,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 09:35:15,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 09:35:15,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:35:20,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:35:20,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:35:20,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:35:20,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:35:20,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:35:20,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:35:39,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:35:39,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:35:39,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:35:39,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 09:35:39,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 09:35:39,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:35:43,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:35:43,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:35:43,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:35:43,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 09:35:43,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 09:35:43,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:35:48,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:35:48,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:35:48,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:35:48,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:35:48,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:35:48,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:35:53,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:35:53,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:35:53,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:35:53,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 09:35:53,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 09:35:53,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:35:58,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:35:58,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:35:58,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:35:58,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 09:35:58,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 09:35:58,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:36:05,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:36:05,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:36:05,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:36:05,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 09:36:05,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 09:36:05,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:36:09,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:36:09,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:36:09,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:36:10,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 09:36:10,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 09:36:10,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:36:14,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:36:14,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:36:14,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:36:14,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 09:36:14,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 09:36:14,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:36:24,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:36:24,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:36:24,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:36:24,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 09:36:24,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 09:36:24,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:36:30,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:36:30,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:36:30,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:36:30,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 09:36:30,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 09:36:30,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:36:52,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:36:52,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:36:52,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:36:52,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 09:36:52,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 09:36:52,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:36:56,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:36:56,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:36:56,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:36:57,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 09:36:57,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 09:36:57,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:37:00,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:37:00,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:37:00,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:37:00,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 09:37:00,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 09:37:00,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:37:04,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:37:04,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:37:04,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:37:04,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.226s +2025-10-01 09:37:04,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.226s (avg: 0.226s/image) +2025-10-01 09:37:04,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:37:40,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:37:40,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:37:40,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:37:40,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 09:37:40,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 09:37:40,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:37:44,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:37:44,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:37:44,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:37:45,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 09:37:45,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 09:37:45,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:37:50,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:37:50,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:37:50,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:37:50,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 09:37:50,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 09:37:50,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:37:54,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:37:54,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:37:54,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:37:54,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 09:37:54,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 09:37:54,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:37:57,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:37:57,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:37:57,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:37:58,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 09:37:58,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 09:37:58,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:38:01,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:38:01,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:38:01,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:38:01,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 09:38:01,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 09:38:01,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:38:05,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:38:05,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:38:05,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:38:05,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 09:38:05,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 09:38:05,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:38:08,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:38:08,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:38:08,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:38:08,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 09:38:08,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 09:38:08,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:38:14,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:38:14,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:38:14,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:38:14,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 09:38:14,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 09:38:14,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:38:28,216 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:38:28,242 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:38:28,327 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.554 +2025-10-01 09:38:28,327 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 09:38:28,327 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 09:38:32,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:38:32,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:38:32,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:38:32,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 09:38:32,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 09:38:32,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:38:37,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:38:37,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:38:37,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:38:37,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 09:38:37,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 09:38:37,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:38:50,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:38:50,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:38:50,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:38:50,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 09:38:50,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 09:38:50,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:38:56,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:38:56,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:38:56,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:38:56,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 09:38:56,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 09:38:56,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:39:29,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:39:29,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:39:29,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:39:29,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-01 09:39:29,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-01 09:39:29,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:39:37,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:39:37,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:39:37,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:39:38,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 09:39:38,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 09:39:38,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:39:44,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:39:44,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:39:44,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:39:44,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:39:44,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:39:44,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:39:55,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:39:55,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:39:55,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:39:55,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:39:55,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:39:55,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:39:58,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:39:58,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:39:58,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:39:58,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 09:39:58,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 09:39:58,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:40:03,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:40:03,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:40:03,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:40:03,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 09:40:03,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 09:40:03,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:40:16,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:40:16,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:40:16,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:40:16,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-01 09:40:16,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-01 09:40:16,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:40:19,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:40:19,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:40:19,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:40:19,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 09:40:19,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 09:40:19,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:40:24,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:40:24,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:40:24,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:40:24,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 09:40:24,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 09:40:24,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:40:28,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:40:28,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:40:28,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:40:28,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 09:40:28,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 09:40:28,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:40:32,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:40:32,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:40:32,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:40:33,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 09:40:33,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 09:40:33,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:40:39,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:40:39,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:40:39,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:40:40,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +2025-10-01 09:40:40,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +2025-10-01 09:40:40,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:40:44,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:40:44,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:40:44,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:40:45,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 09:40:45,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 09:40:45,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:40:48,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:40:48,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:40:48,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:40:48,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 09:40:48,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 09:40:48,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:40:51,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:40:51,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:40:51,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:40:52,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:40:52,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:40:52,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:40:55,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:40:55,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:40:55,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:40:55,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 09:40:55,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 09:40:55,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:40:59,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:40:59,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:40:59,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:40:59,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 09:40:59,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 09:40:59,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:41:10,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:41:10,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:41:10,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:41:10,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 09:41:10,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 09:41:10,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:42:31,328 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:42:31,361 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:42:31,459 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.750 +2025-10-01 09:42:31,459 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 09:42:31,459 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 09:43:12,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:43:12,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:43:12,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:43:12,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 09:43:12,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 09:43:12,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:43:23,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:43:23,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:43:23,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:43:23,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 09:43:23,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 09:43:23,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:43:28,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:43:28,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:43:28,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:43:28,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 09:43:28,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 09:43:28,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:43:32,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:43:32,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:43:32,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:43:32,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 09:43:32,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 09:43:32,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:43:36,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:43:36,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:43:36,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:43:37,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 09:43:37,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 09:43:37,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:43:40,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:43:40,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:43:40,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:43:41,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 09:43:41,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 09:43:41,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:43:45,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:43:45,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:43:45,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:43:46,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 09:43:46,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 09:43:46,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:43:50,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:43:50,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:43:50,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:43:50,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 09:43:50,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 09:43:50,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:44:11,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:44:11,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:44:11,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:44:11,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 09:44:11,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 09:44:11,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:46:04,877 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:46:04,902 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:46:05,016 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.976 +2025-10-01 09:46:05,016 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.113s +2025-10-01 09:46:05,016 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.114s +2025-10-01 09:46:10,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:46:10,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:46:10,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:46:11,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 09:46:11,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 09:46:11,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:46:52,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:46:52,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:46:53,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:46:53,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 09:46:53,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 09:46:53,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:46:57,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:46:57,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:46:57,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:46:57,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 09:46:57,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 09:46:57,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:47:01,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:47:01,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:47:01,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:47:01,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 09:47:01,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 09:47:01,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:47:08,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:47:08,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:47:08,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:47:08,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 09:47:08,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 09:47:08,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:47:12,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:47:12,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:47:12,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:47:12,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 09:47:12,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 09:47:12,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:47:16,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:47:16,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:47:16,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:47:16,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:47:16,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:47:16,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:47:28,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:47:28,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:47:28,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:47:28,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 09:47:28,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 09:47:28,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:47:31,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:47:31,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:47:31,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:47:31,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:47:31,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:47:31,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:47:35,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:47:35,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:47:35,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:47:35,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 09:47:35,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 09:47:35,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:47:40,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:47:40,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:47:40,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:47:40,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 09:47:40,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 09:47:40,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:47:52,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:47:52,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:47:52,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:47:52,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 09:47:52,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 09:47:52,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:47:58,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:47:58,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:47:58,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:47:58,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 09:47:58,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 09:47:58,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:48:43,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:48:43,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:48:43,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:48:43,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 09:48:43,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 09:48:43,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:48:48,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:48:48,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:48:48,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:48:48,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 09:48:48,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 09:48:48,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:48:53,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:48:53,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:48:53,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:48:54,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 09:48:54,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 09:48:54,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:49:06,344 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:49:06,367 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:49:06,458 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.136 +2025-10-01 09:49:06,458 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 09:49:06,458 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 09:49:12,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:49:12,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:49:12,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:49:12,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 09:49:12,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 09:49:12,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:49:18,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:49:18,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:49:18,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:49:18,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 09:49:18,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 09:49:18,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:49:24,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:49:24,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:49:24,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:49:24,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 09:49:24,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 09:49:24,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:49:31,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:49:31,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:49:31,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:49:31,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 09:49:31,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 09:49:31,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:49:37,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:49:37,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:49:37,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:49:37,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 09:49:37,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 09:49:37,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:49:59,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:49:59,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:49:59,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:49:59,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 09:49:59,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 09:49:59,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:50:03,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:50:03,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:50:03,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:50:03,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 09:50:03,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 09:50:03,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:50:09,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:50:09,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:50:09,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:50:09,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 09:50:09,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 09:50:09,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:50:14,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:50:14,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:50:15,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:50:15,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 09:50:15,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 09:50:15,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:50:23,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:50:23,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:50:23,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:50:23,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s +2025-10-01 09:50:23,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +2025-10-01 09:50:23,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:50:28,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:50:28,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:50:28,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:50:28,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 09:50:28,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 09:50:28,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:50:31,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:50:31,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:50:31,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:50:31,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s +2025-10-01 09:50:31,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image) +2025-10-01 09:50:31,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:50:35,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:50:35,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:50:35,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:50:35,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 09:50:35,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 09:50:35,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:50:39,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:50:39,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:50:39,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:50:39,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 09:50:39,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 09:50:39,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:50:43,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:50:43,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:50:43,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:50:43,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 09:50:43,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 09:50:43,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:50:49,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:50:49,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:50:49,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:50:49,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 09:50:49,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 09:50:49,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:50:52,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:50:52,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:50:53,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:50:53,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 09:50:53,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 09:50:53,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:50:59,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:50:59,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:50:59,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:50:59,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 09:50:59,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 09:50:59,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:51:02,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:51:02,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:51:02,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:51:02,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 09:51:02,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 09:51:02,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:51:04,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:51:04,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:51:04,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:51:04,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:51:04,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:51:04,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:51:06,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:51:06,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:51:06,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:51:06,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:51:06,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:51:06,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:51:14,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:51:14,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:51:14,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:51:14,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 09:51:14,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 09:51:14,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:51:19,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:51:19,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:51:19,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:51:19,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 09:51:19,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 09:51:19,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:51:22,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:51:22,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:51:22,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:51:22,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 09:51:22,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 09:51:22,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:51:25,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:51:25,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:51:25,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:51:26,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 09:51:26,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 09:51:26,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:52:12,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:52:12,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:52:12,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:52:12,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 09:52:12,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 09:52:12,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:52:16,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:52:16,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:52:16,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:52:16,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 09:52:16,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 09:52:16,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:52:22,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:52:22,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:52:22,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:52:22,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 09:52:22,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 09:52:22,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:52:28,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:52:28,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:52:28,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:52:28,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 09:52:28,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 09:52:28,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:52:43,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:52:43,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:52:43,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:52:43,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 09:52:43,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 09:52:43,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:52:48,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:52:48,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:52:48,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:52:48,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 09:52:48,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 09:52:48,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:52:53,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:52:53,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:52:53,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:52:53,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 09:52:53,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 09:52:53,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:52:58,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:52:58,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:52:58,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:52:58,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 09:52:58,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 09:52:58,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:53:11,828 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:53:11,850 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:53:11,938 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.025 +2025-10-01 09:53:11,938 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 09:53:11,938 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 09:53:17,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:53:17,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:53:17,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:53:17,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 09:53:17,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 09:53:17,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:53:30,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:53:30,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:53:30,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:53:30,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 09:53:30,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 09:53:30,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:53:36,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:53:36,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:53:36,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:53:36,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 09:53:36,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 09:53:36,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:54:15,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:54:15,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:54:15,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:54:15,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-01 09:54:15,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-01 09:54:15,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:54:19,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:54:19,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:54:19,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:54:19,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 09:54:19,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 09:54:19,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:54:23,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:54:23,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:54:23,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:54:23,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 09:54:23,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 09:54:23,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:54:31,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:54:31,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:54:31,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:54:31,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 09:54:31,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 09:54:31,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:54:35,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:54:35,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:54:35,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:54:35,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.223s +2025-10-01 09:54:35,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.223s (avg: 0.223s/image) +2025-10-01 09:54:35,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:54:40,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:54:40,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:54:40,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:54:40,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 09:54:40,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 09:54:40,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:54:43,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:54:43,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:54:43,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:54:43,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 09:54:43,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 09:54:43,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:54:46,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:54:46,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:54:46,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:54:46,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 09:54:46,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 09:54:46,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:54:51,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:54:51,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:54:51,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:54:51,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 09:54:51,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 09:54:51,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:54:55,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:54:55,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:54:55,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:54:55,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-01 09:54:55,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-01 09:54:55,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:54:59,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:54:59,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:54:59,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:54:59,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 09:54:59,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 09:54:59,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:55:04,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:55:04,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:55:04,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:55:04,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 09:55:04,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 09:55:04,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:55:09,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:55:09,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:55:09,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:55:09,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 09:55:09,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 09:55:09,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:55:13,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:55:13,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:55:13,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:55:13,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 09:55:13,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 09:55:13,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:55:17,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:55:17,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:55:17,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:55:17,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:55:17,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:55:17,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:56:18,415 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 09:56:18,444 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 09:56:18,536 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.124 +2025-10-01 09:56:18,536 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 09:56:18,537 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 09:56:29,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:56:29,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:56:29,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:56:29,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 09:56:29,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 09:56:29,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:56:34,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:56:34,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:56:34,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:56:34,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 09:56:34,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 09:56:34,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:56:57,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:56:57,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:56:57,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:56:57,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 09:56:57,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 09:56:57,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:57:00,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:57:00,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:57:00,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:57:01,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 09:57:01,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 09:57:01,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:57:05,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:57:05,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:57:05,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:57:05,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.223s +2025-10-01 09:57:05,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.223s (avg: 0.223s/image) +2025-10-01 09:57:05,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:57:09,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:57:09,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:57:09,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:57:09,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 09:57:09,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 09:57:09,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:57:17,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:57:17,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:57:17,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:57:17,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.241s +2025-10-01 09:57:17,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.241s (avg: 0.241s/image) +2025-10-01 09:57:17,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:57:22,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:57:22,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:57:22,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:57:23,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 09:57:23,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 09:57:23,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:57:26,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:57:26,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:57:26,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:57:26,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 09:57:26,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 09:57:26,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:57:30,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:57:30,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:57:30,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:57:30,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 09:57:30,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 09:57:30,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:57:36,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:57:36,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:57:36,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:57:36,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 09:57:36,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 09:57:36,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:57:40,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:57:40,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:57:40,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:57:40,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 09:57:40,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 09:57:40,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:57:44,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:57:44,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:57:44,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:57:44,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 09:57:44,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 09:57:44,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:57:48,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:57:48,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:57:48,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:57:48,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 09:57:48,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 09:57:48,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:57:59,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:57:59,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:57:59,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:57:59,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 09:57:59,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 09:57:59,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 09:58:03,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 09:58:03,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 09:58:03,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 09:58:03,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 09:58:03,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 09:58:03,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:28:30,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:28:30,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:28:30,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:28:30,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 12:28:30,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 12:28:30,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:28:34,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:28:34,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:28:34,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:28:34,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 12:28:34,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 12:28:34,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:28:38,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:28:38,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:28:38,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:28:38,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 12:28:38,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 12:28:38,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:28:49,208 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:28:49,230 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:28:49,320 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.106 +2025-10-01 12:28:49,321 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 12:28:49,321 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 12:28:54,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:28:54,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:28:54,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:28:54,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:28:54,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:28:54,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:29:05,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:29:05,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:29:05,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:29:05,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:29:05,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:29:05,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:29:34,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:29:34,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:29:34,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:29:35,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.214s +2025-10-01 12:29:35,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.214s (avg: 0.214s/image) +2025-10-01 12:29:35,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:29:38,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:29:38,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:29:39,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:29:39,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 1.006s +2025-10-01 12:29:39,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 1.006s (avg: 1.006s/image) +2025-10-01 12:29:39,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:29:43,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:29:43,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:29:43,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:29:43,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 12:29:43,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 12:29:43,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:29:48,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:29:48,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:29:48,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:29:48,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 12:29:48,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 12:29:48,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:29:54,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:29:54,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:29:54,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:29:54,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 12:29:54,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 12:29:54,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:29:58,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:29:58,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:29:58,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:29:58,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 12:29:58,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 12:29:58,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:30:01,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:30:01,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:30:01,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:30:01,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 12:30:01,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 12:30:01,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:30:05,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:30:05,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:30:05,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:30:05,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 12:30:05,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 12:30:05,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:30:17,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:30:17,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:30:17,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:30:17,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 12:30:17,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 12:30:17,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:30:23,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:30:23,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:30:23,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:30:23,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 12:30:23,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 12:30:23,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:30:27,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:30:27,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:30:27,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:30:27,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 12:30:27,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 12:30:27,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:30:32,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:30:32,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:30:32,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:30:32,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 12:30:32,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 12:30:32,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:30:56,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:30:56,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:30:56,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:30:56,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 12:30:56,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 12:30:56,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:31:01,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:31:01,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:31:01,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:31:01,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:31:01,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:31:01,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:31:19,249 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:31:19,283 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 658, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:31:19,403 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.856 +2025-10-01 12:31:19,404 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.120s +2025-10-01 12:31:19,404 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.121s +2025-10-01 12:31:33,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:31:33,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:31:34,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:31:34,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 12:31:34,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 12:31:34,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:31:44,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:31:44,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:31:44,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:31:44,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 12:31:44,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 12:31:44,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:31:50,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:31:50,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:31:50,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:31:50,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:31:50,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:31:50,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:31:56,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:31:56,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:31:56,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:31:56,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 12:31:56,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 12:31:56,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:32:19,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:32:19,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:32:19,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:32:19,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 12:32:19,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 12:32:19,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:32:24,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:32:24,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:32:24,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:32:24,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 12:32:24,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 12:32:24,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:32:33,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:32:33,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:32:33,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:32:33,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 12:32:33,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 12:32:33,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:32:37,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:32:37,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:32:37,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:32:37,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 12:32:37,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 12:32:37,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:32:41,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:32:41,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:32:41,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:32:41,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 12:32:41,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 12:32:41,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:32:55,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:32:55,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:32:55,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:32:55,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 12:32:55,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 12:32:55,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:33:00,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:33:00,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:33:00,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:33:00,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 12:33:00,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 12:33:00,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:33:11,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:33:11,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:33:12,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:33:12,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 12:33:12,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 12:33:12,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:33:16,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:33:16,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:33:16,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:33:16,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 12:33:16,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 12:33:16,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:33:22,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:33:22,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:33:22,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:33:22,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 12:33:22,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 12:33:22,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:33:28,653 - main - INFO - 🛑 인페인팅 서버 종료 중... +2025-10-01 12:33:28,653 - app.core.worker_manager - INFO - Stopping worker manager... +2025-10-01 12:33:28,653 - app.core.worker_manager - INFO - Worker manager stopped +2025-10-01 12:33:28,654 - main - INFO - ✅ 워커 매니저 중지 완료 +2025-10-01 12:33:28,654 - app.core.batch_manager - INFO - Stopping BatchManager... +2025-10-01 12:33:28,654 - app.core.batch_manager - INFO - BatchManager stopped. +2025-10-01 12:33:28,655 - main - INFO - ✅ 배치 관리자 중지 완료 +2025-10-01 12:33:28,655 - main - INFO - 👋 인페인팅 서버 종료 완료 +2025-10-01 12:33:28,655 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다. +2025-10-01 12:33:47,461 - main - INFO - 🚀 인페인팅 서버 시작 중... +2025-10-01 12:33:47,461 - main - INFO - ✅ 공유 객체를 app.state에 저장 완료 +2025-10-01 12:33:47,461 - main - INFO - 🔄 상태 저장 백그라운드 작업 생성 중... +2025-10-01 12:33:47,461 - main - INFO - ✅ 상태 저장 백그라운드 작업 생성 완료 +2025-10-01 12:33:47,461 - main - INFO - 🚀 세션 풀 초기화 (CUDA 자동 감지) +2025-10-01 12:33:47,461 - app.core.session_pool - INFO - Initializing dynamic session pools... +2025-10-01 12:33:47,461 - app.core.session_pool - INFO - Pre-loading 2 sessions for simple_lama +2025-10-01 12:33:47,462 - main - INFO - 🔄 상태 저장 백그라운드 작업 시작됨 +2025-10-01 12:33:47,462 - app.core.session_pool - INFO - Creating new session simple_lama_0 for simple_lama... +2025-10-01 12:33:49,012 - app.core.session_pool - INFO - Creating new session simple_lama_1 for simple_lama... +2025-10-01 12:33:49,012 - app.models.simple_lama - INFO - Loading Simple LAMA model... +2025-10-01 12:33:49,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +2025-10-01 12:33:49,968 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +2025-10-01 12:33:49,968 - app.models.simple_lama - INFO - Loading Simple LAMA model... +2025-10-01 12:33:50,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +2025-10-01 12:33:50,695 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +2025-10-01 12:33:50,695 - app.core.session_pool - INFO - Successfully created session simple_lama_0 +2025-10-01 12:33:50,695 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (7.3%) +2025-10-01 12:33:50,696 - app.core.session_pool - INFO - Successfully created session simple_lama_1 +2025-10-01 12:33:50,696 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (7.3%) +2025-10-01 12:33:50,696 - app.core.session_pool - INFO - Pre-loading 1 sessions for migan +2025-10-01 12:33:50,696 - app.core.session_pool - INFO - Creating new session migan_0 for migan... +2025-10-01 12:33:50,734 - app.models.migan - INFO - Loading MIGAN ONNX model... +2025-10-01 12:33:50,734 - app.models.migan - INFO - MIGAN ONNX 런타임 세션 생성 시도... +2025-10-01 12:33:50,734 - app.models.migan - INFO - MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider'] +2025-10-01 12:33:51,009 - app.models.migan - INFO - MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] +2025-10-01 12:33:51,010 - app.models.migan - INFO - MIGAN ONNX model loaded successfully +2025-10-01 12:33:51,010 - app.core.session_pool - INFO - Successfully created session migan_0 +2025-10-01 12:33:51,010 - app.core.session_pool - INFO - ➕ Session Created (migan). Status -> simple_lama: 2, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (7.7%) +2025-10-01 12:33:51,010 - app.core.session_pool - INFO - Pre-loading 1 sessions for rembg +2025-10-01 12:33:51,011 - app.core.session_pool - INFO - Creating new session rembg_0 for rembg... +2025-10-01 12:33:51,011 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료 +2025-10-01 12:33:51,011 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx +2025-10-01 12:33:51,411 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output +2025-10-01 12:33:51,411 - app.core.session_pool - INFO - Successfully created session rembg_0 +2025-10-01 12:33:51,412 - app.core.session_pool - INFO - ➕ Session Created (rembg). Status -> simple_lama: 2, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (8.9%) +2025-10-01 12:33:51,412 - app.core.session_pool - INFO - Session pools initialized successfully +2025-10-01 12:33:51,412 - main - INFO - ✅ 세션 풀 초기화 완료 +2025-10-01 12:33:51,412 - app.core.worker_manager - INFO - Starting worker manager... +2025-10-01 12:33:51,412 - app.core.worker_manager - INFO - Worker manager started with 2 workers +2025-10-01 12:33:51,413 - main - INFO - ✅ 워커 매니저 시작 완료 +2025-10-01 12:33:51,413 - app.core.batch_manager - INFO - Starting BatchManager... +2025-10-01 12:33:51,413 - app.core.batch_manager - INFO - BatchManager started successfully. +2025-10-01 12:33:51,413 - main - INFO - ✅ 배치 관리자 시작 완료 +2025-10-01 12:33:51,413 - main - INFO - 🎉 인페인팅 서버 시작 완료! +2025-10-01 12:33:51,413 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다. +2025-10-01 12:33:51,413 - app.core.session_pool - INFO - Idle session reaper started. Timeout: 1800s, Check Interval: 60s +2025-10-01 12:33:51,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:33:51,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:33:51,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:33:53,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 1.446s +2025-10-01 12:33:53,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 1.446s (avg: 1.446s/image) +2025-10-01 12:33:53,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:33:57,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:33:57,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:33:58,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:34:05,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 7.041s +2025-10-01 12:34:05,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 7.041s (avg: 7.041s/image) +2025-10-01 12:34:05,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:34:13,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:34:13,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:34:13,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:34:13,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 12:34:13,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 12:34:13,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:34:16,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:34:17,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:34:17,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:34:17,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 12:34:17,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 12:34:17,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:34:19,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:34:19,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:34:19,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:34:19,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 12:34:19,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 12:34:19,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:34:22,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:34:22,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:34:22,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:34:22,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 12:34:22,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 12:34:22,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:35:59,426 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:35:59,453 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:36:07,364 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.327 +2025-10-01 12:36:07,365 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 7.910s +2025-10-01 12:36:07,365 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 7.913s +2025-10-01 12:36:12,658 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:36:12,682 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(799, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:36:12,756 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=206.724 +2025-10-01 12:36:12,757 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 12:36:12,757 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 12:38:26,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:38:26,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:38:26,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:38:26,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 12:38:26,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 12:38:26,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:38:40,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:38:40,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:38:40,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:38:40,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:38:40,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:38:40,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:38:55,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:38:55,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:38:55,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:38:55,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:38:55,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:38:55,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:39:08,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:39:08,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:39:08,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:39:08,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:39:08,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:39:08,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:40:16,188 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:40:16,216 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:40:16,318 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.685 +2025-10-01 12:40:16,318 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 12:40:16,318 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 12:40:23,219 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:40:23,247 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:40:23,323 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.684 +2025-10-01 12:40:23,323 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 12:40:23,323 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 12:40:49,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:40:49,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:40:49,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:40:49,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 12:40:49,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 12:40:49,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:41:03,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:41:03,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:41:03,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:41:03,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:41:03,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:41:03,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:41:11,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:41:11,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:41:11,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:41:11,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 12:41:11,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 12:41:11,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:41:54,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:41:54,641 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:41:54,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.160 +2025-10-01 12:41:54,735 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 12:41:54,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 12:42:08,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:42:08,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:42:08,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:42:08,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 12:42:08,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 12:42:08,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:42:19,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:42:19,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:42:19,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:42:19,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 12:42:19,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 12:42:19,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:42:43,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:42:43,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:42:43,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:42:43,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 12:42:43,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 12:42:43,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:42:54,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:42:54,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:42:54,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:42:55,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 12:42:55,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 12:42:55,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:00,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:00,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:00,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:00,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 12:43:00,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 12:43:00,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:05,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:05,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:05,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:05,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:43:05,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:43:05,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:11,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:11,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:11,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:11,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 12:43:11,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 12:43:11,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:20,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:20,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:20,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:20,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 12:43:20,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 12:43:20,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:24,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:24,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:24,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:24,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 12:43:24,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 12:43:24,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:27,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:27,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:27,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:28,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 12:43:28,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 12:43:28,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:32,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:32,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:32,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:32,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 12:43:32,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 12:43:32,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:36,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:36,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:36,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:36,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 12:43:36,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 12:43:36,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:40,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:40,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:41,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:41,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 12:43:41,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 12:43:41,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:44,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:44,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:44,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:44,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:43:44,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:43:44,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:47,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:47,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:47,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:47,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:43:47,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:43:47,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:50,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:50,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:50,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:51,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 12:43:51,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 12:43:51,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:54,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:54,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:54,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:54,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:43:54,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:43:54,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:43:59,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:43:59,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:43:59,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:43:59,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 12:43:59,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 12:43:59,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:44:03,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:44:03,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:44:03,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:44:03,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:44:03,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:44:03,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:44:08,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:44:08,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:44:08,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:44:08,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 12:44:08,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 12:44:08,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:44:40,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:44:40,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:44:40,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:44:40,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 12:44:40,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 12:44:40,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:44:45,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:44:45,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:44:45,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:44:45,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-01 12:44:45,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-01 12:44:45,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:44:49,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:44:49,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:44:49,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:44:49,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 12:44:49,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 12:44:49,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:44:55,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:44:55,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:44:55,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:44:55,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:44:55,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:44:55,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:00,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:00,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:00,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:00,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:45:00,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:45:00,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:04,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:04,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:04,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:04,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 12:45:04,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 12:45:04,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:09,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:09,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:09,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:09,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 12:45:09,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 12:45:09,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:14,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:14,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:14,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:14,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:45:14,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:45:14,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:22,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:22,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:22,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:22,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 12:45:22,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 12:45:22,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:26,570 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:45:26,595 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:45:26,683 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.667 +2025-10-01 12:45:26,683 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 12:45:26,683 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 12:45:29,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:29,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:29,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:29,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:45:29,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:45:29,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:32,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:32,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:32,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:32,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 12:45:32,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 12:45:32,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:32,528 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:45:32,549 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:45:32,630 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.706 +2025-10-01 12:45:32,631 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 12:45:32,631 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 12:45:35,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:35,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:35,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:36,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 12:45:36,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 12:45:36,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:36,267 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:45:36,289 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:45:36,370 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.007 +2025-10-01 12:45:36,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 12:45:36,370 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 12:45:38,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:38,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:38,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:38,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 12:45:38,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 12:45:38,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:39,932 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:45:39,968 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:45:40,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=172.602 +2025-10-01 12:45:40,087 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.118s +2025-10-01 12:45:40,087 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.119s +2025-10-01 12:45:42,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:42,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:42,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:42,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:45:42,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:45:42,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:44,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:44,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:44,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:44,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 12:45:44,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 12:45:44,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:46,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:46,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:46,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:46,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 12:45:46,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 12:45:46,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:49,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:49,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:49,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:49,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 12:45:49,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 12:45:49,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:45:56,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:45:56,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:45:56,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:45:56,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:45:56,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:45:56,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:03,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:03,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:03,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:03,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:46:03,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:46:03,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:11,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:11,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:11,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:11,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 12:46:11,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 12:46:11,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:12,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:12,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:12,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:12,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 12:46:12,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 12:46:12,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:14,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:14,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:14,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:15,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 12:46:15,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 12:46:15,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:16,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:16,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:16,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:16,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 12:46:16,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 12:46:16,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:18,829 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 12:46:18,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 12:46:18,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 12:46:19,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.341s +2025-10-01 12:46:19,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.341s (avg: 0.171s/image) +2025-10-01 12:46:19,173 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 12:46:21,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:21,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:21,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:21,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 12:46:21,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 12:46:21,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:25,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:25,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:25,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:25,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 12:46:25,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 12:46:25,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:26,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:26,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:26,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:26,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 12:46:26,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 12:46:26,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:28,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:28,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:28,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:28,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:46:28,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:46:28,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:29,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:29,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:29,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:29,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 12:46:29,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 12:46:29,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:34,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:34,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:34,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:34,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 12:46:34,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 12:46:34,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:34,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:34,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:34,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:34,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 12:46:34,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 12:46:34,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:36,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:36,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:36,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:37,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 12:46:37,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 12:46:37,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:37,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:37,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:37,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:38,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 12:46:38,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 12:46:38,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:43,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:43,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:43,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:43,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 12:46:43,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 12:46:43,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:49,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:49,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:49,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:49,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 12:46:49,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 12:46:49,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:50,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:50,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:50,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:50,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 12:46:50,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 12:46:50,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:55,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:55,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:55,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:55,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 12:46:55,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 12:46:55,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:46:56,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:46:56,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:46:56,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:46:56,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:46:56,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:46:56,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:47:03,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:47:03,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:47:03,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:47:03,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 12:47:03,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 12:47:03,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:47:09,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:47:09,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:47:09,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:47:09,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 12:47:09,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 12:47:09,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:47:11,473 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:47:11,497 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:47:11,577 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.184 +2025-10-01 12:47:11,577 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 12:47:11,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 12:47:18,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:47:18,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:47:18,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:47:18,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 12:47:18,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 12:47:18,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:47:24,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:47:24,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:47:24,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:47:24,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 12:47:24,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 12:47:24,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:47:30,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:47:30,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:47:30,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:47:30,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 12:47:30,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 12:47:30,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:47:38,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:47:38,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:47:38,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:47:38,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 12:47:38,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 12:47:38,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:47:43,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:47:43,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:47:43,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:47:43,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:47:43,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:47:43,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:47:49,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:47:49,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:47:49,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:47:49,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 12:47:49,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 12:47:49,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:47:55,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:47:55,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:47:55,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:47:55,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 12:47:55,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 12:47:55,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:47:59,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:47:59,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:47:59,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:47:59,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:47:59,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:47:59,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:48:02,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:48:02,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:48:02,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:48:02,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 12:48:02,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 12:48:02,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:48:08,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:48:08,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:48:08,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:48:08,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 12:48:08,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 12:48:08,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:48:11,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:48:11,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:48:11,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:48:11,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 12:48:11,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 12:48:11,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:48:15,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:48:15,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:48:15,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:48:16,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:48:16,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:48:16,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:48:17,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:48:17,465 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:48:17,570 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.687 +2025-10-01 12:48:17,570 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 12:48:17,572 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-01 12:48:21,050 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:48:21,071 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:48:21,153 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.959 +2025-10-01 12:48:21,153 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 12:48:21,154 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 12:48:23,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:48:23,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:48:23,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:48:23,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 12:48:23,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 12:48:23,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:48:24,480 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:48:24,506 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:48:24,584 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.762 +2025-10-01 12:48:24,585 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 12:48:24,585 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 12:48:27,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:48:27,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:48:27,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:48:27,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 12:48:27,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 12:48:27,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:48:33,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:48:33,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:48:33,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:48:33,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 12:48:33,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 12:48:33,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:48:37,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:48:37,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:48:37,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:48:37,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 12:48:37,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 12:48:37,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:48:41,175 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:48:41,198 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:48:41,279 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.976 +2025-10-01 12:48:41,279 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 12:48:41,279 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 12:48:45,885 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:48:45,919 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:48:45,999 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.955 +2025-10-01 12:48:45,999 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 12:48:45,999 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 12:49:02,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:49:02,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:49:02,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:49:02,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 12:49:02,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 12:49:02,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:49:09,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:49:09,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:49:09,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:49:09,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 12:49:09,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 12:49:09,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:49:16,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:49:16,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:49:16,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:49:16,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:49:16,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:49:16,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:49:24,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:49:24,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:49:24,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:49:24,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:49:24,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:49:24,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:49:31,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:49:31,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:49:31,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:49:32,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 12:49:32,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 12:49:32,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:49:35,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:49:35,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:49:35,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:49:35,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 12:49:35,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 12:49:35,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:49:36,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:49:36,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:49:36,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:49:37,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:49:37,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:49:37,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:49:48,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:49:48,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:49:48,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:49:49,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 12:49:49,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 12:49:49,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:49:59,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:49:59,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:49:59,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:49:59,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 12:49:59,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 12:49:59,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:04,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:04,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:04,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:04,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 12:50:04,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 12:50:04,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:09,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:09,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:09,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:09,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 12:50:09,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 12:50:09,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:17,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:17,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:17,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:17,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 12:50:17,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 12:50:17,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:22,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:22,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:22,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:22,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 12:50:22,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 12:50:22,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:27,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:27,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:27,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:27,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 12:50:27,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 12:50:27,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:34,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:34,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:34,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:34,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 12:50:34,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 12:50:34,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:41,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:41,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:41,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:41,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 12:50:41,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 12:50:41,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:46,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:46,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:46,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:46,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 12:50:46,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 12:50:46,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:47,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:47,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:47,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:47,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:50:47,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:50:47,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:51,739 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:50:51,777 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 751, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:50:51,873 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.086 +2025-10-01 12:50:51,873 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 12:50:51,873 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 12:50:52,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:52,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:52,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:52,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 12:50:52,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 12:50:52,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:53,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:53,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:53,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:53,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:50:53,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:50:53,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:55,109 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:50:55,145 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 715, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:50:55,225 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.735 +2025-10-01 12:50:55,225 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 12:50:55,225 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 12:50:57,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:57,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:57,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:57,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 12:50:57,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 12:50:57,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:50:58,812 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:50:58,843 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 673, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:50:58,920 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.509 +2025-10-01 12:50:58,920 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 12:50:58,920 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 12:50:59,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:50:59,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:50:59,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:50:59,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:50:59,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:50:59,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:03,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:03,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:03,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:04,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 12:51:04,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 12:51:04,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:06,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:06,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:06,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:06,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 12:51:06,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 12:51:06,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:09,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:09,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:09,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:09,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 12:51:09,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 12:51:09,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:15,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:15,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:16,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:16,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:51:16,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:51:16,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:17,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:17,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:17,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:17,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 12:51:17,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 12:51:17,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:20,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:20,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:20,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:20,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:51:20,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:51:20,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:24,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:24,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:24,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:24,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 12:51:24,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 12:51:24,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:25,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:25,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:25,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:25,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 12:51:25,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 12:51:25,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:31,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:31,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:31,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:31,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 12:51:31,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 12:51:31,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:32,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:32,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:32,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:32,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:51:32,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:51:32,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:42,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:42,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:42,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:42,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 12:51:42,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 12:51:42,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:47,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:47,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:47,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:47,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 12:51:47,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 12:51:47,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:51:49,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:51:49,901 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:51:49,986 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.723 +2025-10-01 12:51:49,986 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 12:51:49,986 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 12:51:53,234 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:51:53,258 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:51:53,335 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.057 +2025-10-01 12:51:53,335 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 12:51:53,336 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 12:51:56,238 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:51:56,255 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:51:56,330 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.392 +2025-10-01 12:51:56,330 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 12:51:56,330 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 12:51:58,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:51:58,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:51:58,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:51:58,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 12:51:58,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 12:51:58,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:02,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:02,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:02,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:02,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:52:02,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:52:02,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:06,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:06,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:06,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:06,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 12:52:06,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 12:52:06,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:07,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:07,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:07,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:07,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 12:52:07,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 12:52:07,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:12,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:12,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:12,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:12,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 12:52:12,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 12:52:12,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:14,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:14,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:14,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:15,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 12:52:15,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 12:52:15,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:19,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:19,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:19,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:19,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 12:52:19,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 12:52:19,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:21,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:21,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:21,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:21,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 12:52:21,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 12:52:21,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:26,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:26,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:26,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:26,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:52:26,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:52:26,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:28,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:28,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:28,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:28,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 12:52:28,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 12:52:28,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:28,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:28,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:28,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:29,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 12:52:29,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 12:52:29,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:29,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:29,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:29,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:29,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 12:52:29,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 12:52:29,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:32,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:32,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:32,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:32,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 12:52:32,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 12:52:32,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:34,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:34,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:34,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:34,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:52:34,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:52:34,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:35,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:35,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:35,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:35,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 12:52:35,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 12:52:35,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:35,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:35,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:35,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:35,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:52:35,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:52:35,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:36,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:36,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:36,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:36,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 12:52:36,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 12:52:36,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:41,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:41,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:41,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:41,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 12:52:41,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 12:52:41,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:42,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:42,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:42,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:43,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 12:52:43,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 12:52:43,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:43,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:43,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:43,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:43,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:52:43,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:52:43,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:44,508 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:52:44,542 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:52:44,626 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.675 +2025-10-01 12:52:44,627 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 12:52:44,627 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 12:52:48,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:48,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:48,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:48,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 12:52:48,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 12:52:48,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:51,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:52:51,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:52:51,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:52:51,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:52:51,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:52:51,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:52:54,187 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 12:52:54,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 12:52:54,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 12:53:00,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 6.808s +2025-10-01 12:53:00,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 6.808s (avg: 3.404s/image) +2025-10-01 12:53:00,997 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 12:53:01,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:01,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:01,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:01,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 12:53:01,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 12:53:01,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:03,957 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:53:03,996 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:53:04,072 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.763 +2025-10-01 12:53:04,072 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 12:53:04,072 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 12:53:05,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:05,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:05,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:05,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 12:53:05,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 12:53:05,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:06,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:06,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:06,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:06,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 12:53:06,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 12:53:06,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:07,489 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:53:07,527 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:53:07,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.679 +2025-10-01 12:53:07,603 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 12:53:07,603 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 12:53:08,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:08,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:08,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:08,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 12:53:08,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 12:53:08,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:09,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:09,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:09,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:09,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 12:53:09,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 12:53:09,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:10,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:10,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:10,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:10,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 12:53:10,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 12:53:10,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:12,340 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:53:12,383 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:53:12,467 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.316 +2025-10-01 12:53:12,467 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 12:53:12,468 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 12:53:14,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:14,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:14,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:14,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 12:53:14,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 12:53:14,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:14,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:14,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:14,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:14,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 12:53:14,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 12:53:14,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:14,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:14,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:14,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:15,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 12:53:15,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 12:53:15,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:19,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:19,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:19,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:19,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 12:53:19,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 12:53:19,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:22,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:22,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:22,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:22,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 12:53:22,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 12:53:22,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:23,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:23,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:23,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:23,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:53:23,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:53:23,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:26,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:26,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:26,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:26,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 12:53:26,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 12:53:26,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:29,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:29,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:29,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:29,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 12:53:29,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 12:53:29,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:29,573 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 12:53:29,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 12:53:29,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 12:53:29,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-01 12:53:29,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.130s/image) +2025-10-01 12:53:29,835 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 12:53:31,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:31,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:31,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:32,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 12:53:32,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 12:53:32,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:37,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:37,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:37,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:37,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 12:53:37,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 12:53:37,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:37,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:37,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:37,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:37,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 12:53:37,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 12:53:37,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:38,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:38,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:38,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:38,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 12:53:38,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 12:53:38,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:42,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:42,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:42,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:42,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:53:42,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:53:42,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:44,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:44,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:44,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:44,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 12:53:44,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 12:53:44,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:45,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:45,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:45,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:45,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 12:53:45,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 12:53:45,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:45,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:45,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:45,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:45,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 12:53:45,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 12:53:45,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:48,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:48,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:48,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:48,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:53:48,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:53:48,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:49,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:49,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:49,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:49,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 12:53:49,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 12:53:49,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:51,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:51,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:51,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:51,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 12:53:51,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 12:53:51,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:55,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:55,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:55,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:55,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:53:55,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:53:55,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:53:57,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:53:57,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:53:57,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:53:57,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 12:53:57,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 12:53:57,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:01,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:01,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:01,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:01,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 12:54:01,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 12:54:01,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:03,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:03,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:03,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:03,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 12:54:03,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 12:54:03,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:07,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:07,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:07,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:07,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 12:54:07,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 12:54:07,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:08,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:08,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:08,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:08,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 12:54:08,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 12:54:08,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:11,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:11,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:11,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:11,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 12:54:11,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 12:54:11,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:12,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:12,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:12,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:12,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:54:12,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:54:12,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:14,044 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:54:14,068 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:54:14,159 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.797 +2025-10-01 12:54:14,160 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 12:54:14,160 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 12:54:15,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:15,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:16,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:16,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 12:54:16,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 12:54:16,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:18,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:18,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:18,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:18,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 12:54:18,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 12:54:18,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:19,465 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:54:19,497 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:54:19,577 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.815 +2025-10-01 12:54:19,578 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 12:54:19,578 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 12:54:22,007 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:54:22,027 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:54:22,104 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.921 +2025-10-01 12:54:22,104 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 12:54:22,104 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 12:54:24,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:24,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:24,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:24,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 12:54:24,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 12:54:24,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:25,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:25,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:25,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:26,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 12:54:26,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 12:54:26,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:28,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:28,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:28,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:28,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 12:54:28,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 12:54:28,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:31,188 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:54:31,230 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:54:31,321 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.995 +2025-10-01 12:54:31,321 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 12:54:31,322 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 12:54:31,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:31,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:31,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:31,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 12:54:31,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 12:54:31,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:32,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:32,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:32,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:32,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 12:54:32,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 12:54:32,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:36,347 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:54:36,390 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:54:36,485 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.418 +2025-10-01 12:54:36,486 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 12:54:36,486 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 12:54:40,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:40,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:40,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:40,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 12:54:40,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 12:54:40,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:41,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:41,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:41,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:41,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 12:54:41,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 12:54:41,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:41,872 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:54:41,910 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:54:42,005 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.271 +2025-10-01 12:54:42,006 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 12:54:42,006 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 12:54:42,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:42,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:42,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:42,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 12:54:42,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 12:54:42,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:47,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:47,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:47,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:48,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 12:54:48,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 12:54:48,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:49,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:49,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:49,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:49,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:54:49,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:54:49,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:53,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:53,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:53,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:53,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 12:54:53,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 12:54:53,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:55,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:55,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:55,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:55,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 12:54:55,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 12:54:55,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:54:57,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:54:57,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:54:57,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:54:57,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 12:54:57,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 12:54:57,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:01,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:01,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:01,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:01,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 12:55:01,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 12:55:01,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:03,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:03,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:03,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:03,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 12:55:03,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 12:55:03,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:04,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:04,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:04,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:04,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 12:55:04,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 12:55:04,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:05,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:05,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:05,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:05,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:55:05,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:55:05,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:09,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:09,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:09,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:09,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 12:55:09,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 12:55:09,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:10,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:10,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:10,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:10,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:55:10,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:55:10,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:14,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:14,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:14,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:14,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:55:14,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:55:14,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:14,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:14,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:14,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:14,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:55:14,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:55:14,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:14,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:14,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:14,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:15,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 12:55:15,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 12:55:15,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:18,175 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:55:18,212 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:55:18,307 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.402 +2025-10-01 12:55:18,307 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 12:55:18,309 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 12:55:18,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:18,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:18,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:19,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 12:55:19,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 12:55:19,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:21,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:21,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:21,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:21,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 12:55:21,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 12:55:21,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:21,754 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:55:21,776 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:55:21,859 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.796 +2025-10-01 12:55:21,859 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 12:55:21,860 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 12:55:23,593 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 12:55:23,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 12:55:23,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 12:55:23,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 12:55:23,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-01 12:55:23,895 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 12:55:26,401 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:55:26,423 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:55:26,506 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.213 +2025-10-01 12:55:26,506 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 12:55:26,507 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 12:55:26,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:26,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:26,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:26,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 12:55:26,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 12:55:26,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:28,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:28,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:28,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:28,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 12:55:28,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 12:55:28,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:28,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:28,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:28,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:29,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 12:55:29,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 12:55:29,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:29,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:29,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:29,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:29,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 12:55:29,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 12:55:29,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:33,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:33,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:33,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:33,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 12:55:33,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 12:55:33,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:35,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:35,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:35,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:35,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:55:35,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:55:35,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:35,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:35,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:35,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:36,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 12:55:36,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 12:55:36,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:36,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:36,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:36,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:36,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:55:36,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:55:36,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:37,615 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:55:37,641 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:55:37,768 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.393 +2025-10-01 12:55:37,768 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.126s +2025-10-01 12:55:37,769 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.129s +2025-10-01 12:55:37,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:37,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:37,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:38,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 12:55:38,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 12:55:38,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:41,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:41,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:41,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:41,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 12:55:41,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 12:55:41,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:41,366 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:55:41,389 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:55:41,514 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.576 +2025-10-01 12:55:41,514 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.123s +2025-10-01 12:55:41,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.127s +2025-10-01 12:55:42,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:42,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:42,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:42,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 12:55:42,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 12:55:42,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:43,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:43,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:43,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:43,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 12:55:43,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 12:55:43,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:45,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:55:45,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:55:45,652 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.132 +2025-10-01 12:55:45,652 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.137s +2025-10-01 12:55:45,654 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.140s +2025-10-01 12:55:50,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:50,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:50,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:50,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 12:55:50,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 12:55:50,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:53,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:53,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:53,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:54,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 12:55:54,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 12:55:54,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:54,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:54,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:54,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:55,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 12:55:55,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 12:55:55,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:55:57,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:55:57,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:55:57,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:55:57,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 12:55:57,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 12:55:57,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:00,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:00,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:00,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:01,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 12:56:01,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 12:56:01,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:03,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:03,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:03,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:03,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 12:56:03,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 12:56:03,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:04,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:04,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:04,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:05,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 12:56:05,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 12:56:05,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:08,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:08,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:09,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:09,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 12:56:09,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 12:56:09,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:10,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:10,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:10,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:10,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:56:10,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:56:10,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:11,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:11,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:11,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:11,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:56:11,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:56:11,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:13,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:13,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:13,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:13,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 12:56:13,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 12:56:13,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:16,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:16,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:16,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:16,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 12:56:16,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 12:56:16,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:17,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:17,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:17,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:17,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 12:56:17,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 12:56:17,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:18,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:18,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:18,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:18,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 12:56:18,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 12:56:18,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:23,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:23,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:23,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:23,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 12:56:23,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 12:56:23,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:24,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:24,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:24,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:24,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 12:56:24,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 12:56:24,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:25,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:25,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:25,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:25,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 12:56:25,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 12:56:25,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:26,139 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 12:56:26,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 12:56:26,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 12:56:26,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 12:56:26,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 12:56:26,425 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 12:56:31,354 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 12:56:31,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 12:56:31,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 12:56:31,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 12:56:31,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 12:56:31,660 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 12:56:31,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:31,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:31,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:32,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 12:56:32,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 12:56:32,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:32,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:32,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:32,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:32,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 12:56:32,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 12:56:32,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:35,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:35,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:35,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:35,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 12:56:35,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 12:56:35,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:36,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:36,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:36,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:36,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 12:56:36,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 12:56:36,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:37,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:37,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:37,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:37,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 12:56:37,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 12:56:37,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:39,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:39,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:39,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:39,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 12:56:39,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 12:56:39,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:42,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:42,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:42,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:42,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +2025-10-01 12:56:42,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +2025-10-01 12:56:42,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:42,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:42,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:42,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:43,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 12:56:43,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 12:56:43,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:44,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:44,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:44,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:44,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 12:56:44,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 12:56:44,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:46,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:46,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:46,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:46,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 12:56:46,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 12:56:46,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:46,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:46,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:46,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:46,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 12:56:46,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 12:56:46,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:47,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:47,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:47,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:47,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 12:56:47,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 12:56:47,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:47,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:47,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:47,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:47,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 12:56:47,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 12:56:47,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:52,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:52,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:52,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:52,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 12:56:52,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 12:56:52,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:52,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:52,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:52,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:52,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 12:56:52,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 12:56:52,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:53,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:53,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:53,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:53,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:56:53,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:56:53,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:54,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:54,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:54,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:54,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 12:56:54,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 12:56:54,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:58,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:58,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:58,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:58,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 12:56:58,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 12:56:58,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:56:59,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:56:59,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:56:59,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:56:59,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 12:56:59,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 12:56:59,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:01,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:01,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:01,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:01,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 12:57:01,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 12:57:01,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:02,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:02,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:02,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:02,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 12:57:02,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 12:57:02,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:03,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:03,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:03,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:03,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 12:57:03,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 12:57:03,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:10,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:10,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:10,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:10,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 12:57:10,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 12:57:10,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:15,236 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:57:15,264 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:57:15,363 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.213 +2025-10-01 12:57:15,363 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 12:57:15,363 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 12:57:15,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:15,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:15,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:15,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 12:57:15,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 12:57:15,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:20,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:20,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:20,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:20,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 12:57:20,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 12:57:20,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:23,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:23,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:23,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:23,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 12:57:23,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 12:57:23,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:27,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:27,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:27,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:27,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 12:57:27,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 12:57:27,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:32,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:32,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:32,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:32,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 12:57:32,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 12:57:32,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:36,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:36,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:36,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:36,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 12:57:36,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 12:57:36,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:37,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:37,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:37,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:37,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 12:57:37,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 12:57:37,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:40,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:40,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:40,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:41,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 12:57:41,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 12:57:41,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:44,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:44,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:44,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:44,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 12:57:44,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 12:57:44,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:44,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:44,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:44,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:44,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 12:57:44,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 12:57:44,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:47,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:47,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:47,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:47,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 12:57:47,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 12:57:47,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:48,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:48,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:48,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:48,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 12:57:48,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 12:57:48,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:57:58,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:57:58,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:57:58,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:57:58,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 12:57:58,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 12:57:58,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:01,357 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:58:01,390 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(833, 833, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:58:01,489 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.876 +2025-10-01 12:58:01,489 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 12:58:01,489 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 12:58:02,534 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:58:02,559 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:58:02,637 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.982 +2025-10-01 12:58:02,637 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 12:58:02,637 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 12:58:03,233 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 12:58:03,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 12:58:03,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 12:58:03,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 12:58:03,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 12:58:03,524 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 12:58:04,837 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:58:04,855 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(732, 732, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:58:04,952 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.465 +2025-10-01 12:58:04,952 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 12:58:04,952 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 12:58:05,975 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:58:06,001 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:58:06,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.258 +2025-10-01 12:58:06,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 12:58:06,087 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 12:58:06,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:06,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:06,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:06,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 12:58:06,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 12:58:06,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:09,106 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:58:09,127 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:58:09,212 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.476 +2025-10-01 12:58:09,213 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 12:58:09,213 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 12:58:09,774 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:58:09,799 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:58:09,883 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.910 +2025-10-01 12:58:09,884 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 12:58:09,884 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 12:58:10,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:10,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:10,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:10,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 12:58:10,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 12:58:10,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:16,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:16,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:16,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:16,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 12:58:16,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 12:58:16,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:17,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:17,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:17,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:17,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 12:58:17,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 12:58:17,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:20,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:20,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:20,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:20,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 12:58:20,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 12:58:20,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:22,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:22,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:22,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:22,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 12:58:22,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 12:58:22,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:25,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:25,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:25,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:25,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 12:58:25,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 12:58:25,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:31,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:31,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:31,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:31,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 12:58:31,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 12:58:31,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:33,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:33,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:33,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:33,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 12:58:33,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 12:58:33,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:34,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:34,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:34,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:34,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 12:58:34,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 12:58:34,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:35,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:35,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:35,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:35,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:58:35,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:58:35,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:39,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:39,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:39,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:39,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 12:58:39,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 12:58:39,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:40,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:40,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:40,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:40,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 12:58:40,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 12:58:40,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:43,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:43,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:43,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:43,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 12:58:43,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 12:58:43,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:43,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:43,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:43,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:43,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 12:58:43,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 12:58:43,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:43,875 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:58:43,900 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:58:43,998 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.191 +2025-10-01 12:58:43,998 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 12:58:43,998 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 12:58:47,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:47,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:47,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:47,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 12:58:47,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 12:58:47,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:47,627 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:58:47,659 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:58:47,760 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.521 +2025-10-01 12:58:47,761 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 12:58:47,761 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 12:58:48,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:48,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:48,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:48,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 12:58:48,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 12:58:48,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:51,538 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:58:51,562 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:58:51,638 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.830 +2025-10-01 12:58:51,639 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 12:58:51,639 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 12:58:52,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:52,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:52,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:52,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 12:58:52,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 12:58:52,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:55,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:55,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:55,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:55,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 12:58:55,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 12:58:55,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:56,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:56,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:56,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:56,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 12:58:56,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 12:58:56,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:57,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:57,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:58,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:58,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 12:58:58,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 12:58:58,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:58:59,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:58:59,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:58:59,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:58:59,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:58:59,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:58:59,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:00,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:00,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:00,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:00,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 12:59:00,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 12:59:00,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:01,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:01,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:01,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:01,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 12:59:01,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 12:59:01,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:01,728 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:59:01,751 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:59:01,838 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.213 +2025-10-01 12:59:01,838 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 12:59:01,838 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 12:59:04,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:04,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:04,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:04,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 12:59:04,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 12:59:04,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:06,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:06,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:06,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:06,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 12:59:06,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 12:59:06,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:08,573 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 12:59:08,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 12:59:08,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 12:59:08,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 12:59:08,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 12:59:08,846 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 12:59:09,269 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 12:59:09,289 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 12:59:09,366 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.023 +2025-10-01 12:59:09,366 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 12:59:09,366 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 12:59:12,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:12,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:12,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:12,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 12:59:12,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 12:59:12,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:13,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:13,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:13,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:13,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 12:59:13,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 12:59:13,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:18,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:18,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:18,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:18,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 12:59:18,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 12:59:18,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:19,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:19,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:19,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:19,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 12:59:19,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 12:59:19,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:21,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:21,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:21,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:21,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:59:21,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:59:21,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:25,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:25,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:25,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:25,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 12:59:25,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 12:59:25,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:29,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:29,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:29,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:30,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 12:59:30,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 12:59:30,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:33,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:33,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:33,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:33,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 12:59:33,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 12:59:33,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:34,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:34,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:34,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:34,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 12:59:34,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 12:59:34,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:35,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:35,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:35,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:35,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 12:59:35,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 12:59:35,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:36,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:36,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:36,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:36,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:59:36,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:59:36,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:37,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:37,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:37,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:37,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 12:59:37,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 12:59:37,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:40,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:40,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:40,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:40,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 12:59:40,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 12:59:40,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:41,147 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 12:59:41,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 12:59:41,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 12:59:41,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +2025-10-01 12:59:41,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +2025-10-01 12:59:41,412 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 12:59:43,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:43,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:43,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:43,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 12:59:43,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 12:59:43,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:47,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:47,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:47,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:47,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 12:59:47,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 12:59:47,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:47,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:47,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:47,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:47,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 12:59:47,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 12:59:47,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:47,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:47,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:47,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:48,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 12:59:48,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 12:59:48,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:53,142 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 12:59:53,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 12:59:53,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 12:59:53,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 12:59:53,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 12:59:53,449 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 12:59:54,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:54,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:54,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:54,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 12:59:54,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 12:59:54,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:58,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:58,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:58,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:58,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 12:59:58,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 12:59:58,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 12:59:58,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 12:59:58,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 12:59:58,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 12:59:58,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.126s +2025-10-01 12:59:58,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.126s (avg: 0.126s/image) +2025-10-01 12:59:58,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:01,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:01,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:01,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:01,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:00:01,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:00:01,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:01,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:01,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:01,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:02,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:00:02,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:00:02,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:03,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:03,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:03,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:03,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:00:03,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:00:03,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:06,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:06,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:06,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:06,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:00:06,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:00:06,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:08,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:08,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:08,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:08,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:00:08,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:00:08,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:09,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:09,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:09,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:09,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:00:09,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:00:09,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:10,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:10,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:10,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:10,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:00:10,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:00:10,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:12,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:12,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:12,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:12,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:00:12,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:00:12,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:14,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:14,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:14,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:14,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:00:14,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:00:14,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:15,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:15,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:15,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:15,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:00:15,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:00:15,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:15,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:15,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:15,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:15,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:00:15,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:00:15,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:19,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:19,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:19,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:19,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:00:19,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:00:19,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:19,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:19,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:19,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:19,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:00:19,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:00:19,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:25,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:25,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:25,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:25,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:00:25,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:00:25,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:26,017 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:00:26,038 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:00:26,150 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.466 +2025-10-01 13:00:26,150 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.111s +2025-10-01 13:00:26,152 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.114s +2025-10-01 13:00:29,514 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:00:29,544 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:00:29,657 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.306 +2025-10-01 13:00:29,658 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.112s +2025-10-01 13:00:29,659 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.115s +2025-10-01 13:00:30,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:30,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:30,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:30,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:00:30,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:00:30,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:30,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:30,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:30,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:31,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:00:31,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:00:31,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:33,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:33,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:33,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:33,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:00:33,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:00:33,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:33,651 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:00:33,676 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:00:33,781 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.934 +2025-10-01 13:00:33,781 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 13:00:33,782 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-01 13:00:33,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:33,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:33,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:34,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:00:34,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:00:34,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:37,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:37,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:37,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:37,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:00:37,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:00:37,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:38,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:38,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:38,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:38,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:00:38,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:00:38,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:40,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:40,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:40,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:40,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:00:40,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:00:40,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:41,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:41,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:41,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:42,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:00:42,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:00:42,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:43,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:43,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:43,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:43,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:00:43,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:00:43,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:44,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:44,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:44,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:44,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:00:44,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:00:44,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:45,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:45,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:45,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:45,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:00:45,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:00:45,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:46,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:46,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:46,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:46,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:00:46,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:00:46,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:47,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:47,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:47,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:47,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:00:47,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:00:47,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:50,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:50,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:50,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:50,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:00:50,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:00:50,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:52,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:52,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:52,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:52,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:00:52,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:00:52,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:56,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:56,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:56,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:56,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:00:56,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:00:56,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:57,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:57,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:57,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:57,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:00:57,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:00:57,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:58,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:58,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:58,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:58,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:00:58,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:00:58,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:00:58,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:00:58,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:00:58,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:00:58,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:00:58,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:00:58,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:00,330 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:01:00,355 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(732, 732, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:01:00,455 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.580 +2025-10-01 13:01:00,455 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 13:01:00,455 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 13:01:02,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:02,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:02,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:02,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:01:02,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:01:02,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:03,577 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:01:03,602 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:01:03,683 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.682 +2025-10-01 13:01:03,684 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 13:01:03,684 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 13:01:04,536 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:01:04,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:01:04,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:01:04,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 13:01:04,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 13:01:04,820 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:01:06,561 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:01:06,591 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:01:06,694 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.253 +2025-10-01 13:01:06,694 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 13:01:06,694 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 13:01:08,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:08,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:08,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:08,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:01:08,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:01:08,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:08,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:08,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:08,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:08,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:01:08,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:01:08,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:09,540 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:01:09,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:01:09,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:01:09,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 13:01:09,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-01 13:01:09,821 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:01:13,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:13,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:13,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:13,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:01:13,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:01:13,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:17,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:17,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:17,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:18,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:01:18,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:01:18,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:20,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:20,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:20,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:20,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:01:20,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:01:20,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:20,876 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:01:20,913 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:01:21,005 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.513 +2025-10-01 13:01:21,006 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 13:01:21,006 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 13:01:22,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:22,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:22,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:22,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:01:22,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:01:22,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:25,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:25,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:25,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:25,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:01:25,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:01:25,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:27,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:27,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:27,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:27,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:01:27,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:01:27,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:28,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:28,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:28,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:28,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:01:28,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:01:28,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:29,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:29,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:29,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:29,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:01:29,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:01:29,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:31,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:31,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:31,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:31,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:01:31,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:01:31,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:34,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:34,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:34,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:34,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:01:34,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:01:34,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:34,915 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:01:34,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:01:34,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:01:35,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-01 13:01:35,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.133s/image) +2025-10-01 13:01:35,181 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:01:35,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:35,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:35,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:35,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:01:35,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:01:35,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:38,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:38,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:38,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:38,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:01:38,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:01:38,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:41,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:41,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:41,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:41,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:01:41,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:01:41,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:42,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:42,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:42,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:42,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 13:01:42,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 13:01:42,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:43,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:43,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:43,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:43,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:01:43,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:01:43,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:44,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:44,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:44,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:45,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:01:45,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:01:45,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:47,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:47,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:47,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:47,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:01:47,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:01:47,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:47,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:47,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:47,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:48,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:01:48,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:01:48,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:48,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:48,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:48,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:48,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:01:48,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:01:48,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:51,603 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:01:51,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:01:51,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:01:51,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 13:01:51,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 13:01:51,893 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:01:53,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:53,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:53,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:53,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:01:53,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:01:53,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:54,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:54,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:54,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:54,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:01:54,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:01:54,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:55,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:55,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:55,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:55,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:01:55,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:01:55,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:56,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:56,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:56,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:56,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:01:56,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:01:56,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:01:59,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:01:59,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:01:59,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:01:59,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:01:59,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:01:59,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:00,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:00,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:00,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:00,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:02:00,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:02:00,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:02,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:02,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:02,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:02,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:02:02,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:02:02,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:04,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:04,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:04,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:04,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:02:04,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:02:04,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:06,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:06,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:06,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:06,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:02:06,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:02:06,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:07,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:07,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:07,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:07,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:02:07,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:02:07,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:08,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:08,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:08,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:08,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:02:08,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:02:08,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:10,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:10,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:10,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:10,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:02:10,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:02:10,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:11,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:11,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:11,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:11,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:02:11,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:02:11,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:12,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:12,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:12,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:12,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:02:12,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:02:12,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:13,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:13,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:13,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:14,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:02:14,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:02:14,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:16,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:16,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:16,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:16,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:02:16,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:02:16,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:17,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:17,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:17,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:17,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:02:17,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:02:17,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:17,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:17,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:17,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:17,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:02:17,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:02:17,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:19,388 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:02:19,421 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:02:19,545 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.771 +2025-10-01 13:02:19,545 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.123s +2025-10-01 13:02:19,547 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.126s +2025-10-01 13:02:21,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:21,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:21,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:21,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:02:21,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:02:21,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:22,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:22,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:22,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:22,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:02:22,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:02:22,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:22,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:22,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:22,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:22,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:02:22,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:02:22,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:22,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:22,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:22,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:23,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:02:23,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:02:23,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:23,385 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:02:23,418 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:02:23,539 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.783 +2025-10-01 13:02:23,539 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.119s +2025-10-01 13:02:23,541 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.123s +2025-10-01 13:02:26,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:26,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:26,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:26,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 13:02:26,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 13:02:26,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:26,900 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:02:26,924 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:02:27,025 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.567 +2025-10-01 13:02:27,025 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 13:02:27,025 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 13:02:27,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:27,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:27,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:27,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:02:27,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:02:27,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:28,412 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:02:28,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:02:28,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:02:28,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 13:02:28,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 13:02:28,690 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:02:31,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:31,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:31,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:31,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:02:31,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:02:31,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:32,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:32,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:32,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:32,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:02:32,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:02:32,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:32,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:32,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:32,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:32,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:02:32,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:02:32,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:36,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:36,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:36,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:36,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:02:36,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:02:36,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:37,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:37,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:37,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:37,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:02:37,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:02:37,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:45,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:45,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:45,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:45,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:02:45,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:02:45,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:49,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:49,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:49,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:49,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.210s +2025-10-01 13:02:49,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.210s (avg: 0.210s/image) +2025-10-01 13:02:49,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:50,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:50,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:50,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:50,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:02:50,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:02:50,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:51,630 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:02:51,654 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:02:51,752 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.007 +2025-10-01 13:02:51,753 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 13:02:51,753 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 13:02:52,608 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:02:52,639 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:02:52,719 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.868 +2025-10-01 13:02:52,719 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 13:02:52,720 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 13:02:55,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:55,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:55,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:55,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:02:55,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:02:55,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:55,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:55,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:55,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:56,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 13:02:56,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 13:02:56,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:56,214 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:02:56,239 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:02:56,315 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.131 +2025-10-01 13:02:56,315 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 13:02:56,316 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 13:02:56,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:56,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:56,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:56,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:02:56,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:02:56,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:57,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:02:57,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:02:57,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:02:57,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:02:57,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:02:57,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:02:59,723 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:02:59,743 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:02:59,818 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.306 +2025-10-01 13:02:59,818 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 13:02:59,818 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 13:03:01,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:01,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:01,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:01,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:03:01,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:03:01,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:01,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:01,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:01,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:01,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:03:01,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:03:01,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:02,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:02,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:02,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:02,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:03:02,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:03:02,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:03,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:03,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:03,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:03,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:03:03,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:03:03,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:06,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:06,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:06,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:06,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:03:06,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:03:06,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:10,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:10,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:10,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:10,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:03:10,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:03:10,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:13,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:13,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:13,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:13,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:03:13,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:03:13,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:16,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:16,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:16,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:16,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:03:16,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:03:16,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:17,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:17,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:17,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:17,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 13:03:17,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 13:03:17,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:23,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:23,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:23,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:23,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-01 13:03:23,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-01 13:03:23,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:25,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:25,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:25,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:25,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:03:25,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:03:25,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:35,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:35,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:35,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:35,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:03:35,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:03:35,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:40,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:40,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:40,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:40,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:03:40,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:03:40,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:43,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:43,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:43,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:43,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:03:43,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:03:43,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:44,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:44,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:44,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:44,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:03:44,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:03:44,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:49,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:49,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:49,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:49,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:03:49,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:03:49,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:49,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:49,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:49,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:49,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:03:49,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:03:49,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:53,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:53,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:53,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:54,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:03:54,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:03:54,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:54,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:54,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:54,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:54,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:03:54,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:03:54,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:58,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:58,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:59,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:59,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 13:03:59,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 13:03:59,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:03:59,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:03:59,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:03:59,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:03:59,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:03:59,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:03:59,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:03,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:03,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:03,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:03,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:04:03,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:04:03,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:04,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:04,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:04,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:04,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:04:04,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:04:04,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:07,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:07,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:08,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:08,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:04:08,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:04:08,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:14,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:14,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:14,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:15,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:04:15,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:04:15,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:15,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:15,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:15,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:15,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:04:15,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:04:15,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:18,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:18,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:18,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:18,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:04:18,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:04:18,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:21,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:21,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:21,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:21,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:04:21,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:04:21,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:22,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:22,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:22,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:22,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:04:22,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:04:22,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:23,252 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:04:23,273 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:04:23,367 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.006 +2025-10-01 13:04:23,368 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 13:04:23,368 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 13:04:25,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:25,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:25,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:25,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:04:25,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:04:25,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:26,419 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:04:26,440 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:04:26,513 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.117 +2025-10-01 13:04:26,514 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 13:04:26,514 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 13:04:26,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:26,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:26,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:26,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:04:26,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:04:26,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:27,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:27,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:27,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:27,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:04:27,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:04:27,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:29,645 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:04:29,666 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:04:29,777 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.349 +2025-10-01 13:04:29,777 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-01 13:04:29,777 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.111s +2025-10-01 13:04:30,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:30,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:30,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:30,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:04:30,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:04:30,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:34,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:34,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:34,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:34,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:04:34,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:04:34,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:36,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:36,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:36,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:36,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:04:36,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:04:36,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:40,337 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:04:40,369 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:04:40,460 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.562 +2025-10-01 13:04:40,461 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 13:04:40,462 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 13:04:43,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:43,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:43,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:43,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:04:43,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:04:43,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:44,044 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:04:44,073 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:04:44,194 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.058 +2025-10-01 13:04:44,194 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.120s +2025-10-01 13:04:44,195 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.122s +2025-10-01 13:04:45,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:45,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:45,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:45,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:04:45,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:04:45,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:47,960 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:04:47,990 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:04:48,101 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.959 +2025-10-01 13:04:48,101 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 13:04:48,102 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-01 13:04:48,314 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:04:48,348 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:04:48,457 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.336 +2025-10-01 13:04:48,457 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.107s +2025-10-01 13:04:48,457 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.109s +2025-10-01 13:04:50,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:50,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:50,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:50,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:04:50,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:04:50,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:50,790 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:04:50,805 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(605, 621, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:04:50,874 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.389 +2025-10-01 13:04:50,874 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 13:04:50,875 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 13:04:53,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:53,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:53,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:54,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:04:54,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:04:54,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:54,124 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:04:54,149 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:04:54,232 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=238.824 +2025-10-01 13:04:54,232 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:04:54,232 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:04:56,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:04:56,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:04:56,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:04:56,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:04:56,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:04:56,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:04:58,618 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:04:58,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:04:58,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:04:58,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 13:04:58,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 13:04:58,915 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:05:00,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:00,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:00,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:00,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:05:00,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:05:00,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:02,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:02,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:02,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:02,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:05:02,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:05:02,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:05,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:05,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:05,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:05,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:05:05,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:05:05,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:07,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:07,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:07,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:07,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:05:07,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:05:07,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:14,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:14,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:14,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:14,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 13:05:14,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 13:05:14,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:15,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:15,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:15,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:15,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:05:15,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:05:15,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:20,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:20,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:20,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:20,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:05:20,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:05:20,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:21,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:21,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:21,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:21,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:05:21,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:05:21,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:21,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:21,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:21,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:21,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 13:05:21,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 13:05:21,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:22,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:22,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:22,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:22,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:05:22,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:05:22,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:23,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:23,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:23,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:24,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.218s +2025-10-01 13:05:24,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.218s (avg: 0.218s/image) +2025-10-01 13:05:24,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:24,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:24,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:24,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:24,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:05:24,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:05:24,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:28,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:28,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:28,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:28,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:05:28,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:05:28,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:29,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:29,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:29,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:29,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:05:29,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:05:29,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:29,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:29,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:29,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:29,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:05:29,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:05:29,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:30,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:30,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:30,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:30,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:05:30,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:05:30,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:31,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:31,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:31,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:31,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:05:31,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:05:31,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:33,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:33,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:33,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:33,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:05:33,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:05:33,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:34,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:34,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:34,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:35,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 13:05:35,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 13:05:35,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:36,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:36,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:36,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:36,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:05:36,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:05:36,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:38,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:38,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:38,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:38,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:05:38,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:05:38,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:42,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:42,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:42,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:42,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:05:42,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:05:42,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:43,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:43,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:43,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:43,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:05:43,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:05:43,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:47,470 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:05:47,506 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:05:47,619 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.154 +2025-10-01 13:05:47,620 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.112s +2025-10-01 13:05:47,621 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.115s +2025-10-01 13:05:52,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:52,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:52,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:52,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:05:52,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:05:52,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:54,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:54,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:54,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:55,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:05:55,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:05:55,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:56,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:56,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:56,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:56,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:05:56,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:05:56,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:57,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:57,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:57,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:57,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:05:57,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:05:57,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:59,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:59,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:59,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:05:59,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 13:05:59,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 13:05:59,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:05:59,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:05:59,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:05:59,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:00,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:06:00,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:06:00,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:02,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:02,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:02,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:02,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:06:02,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:06:02,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:03,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:03,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:03,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:03,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:06:03,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:06:03,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:07,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:07,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:07,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:07,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:06:07,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:06:07,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:18,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:18,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:18,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:18,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:06:18,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:06:18,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:21,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:21,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:21,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:22,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:06:22,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:06:22,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:29,839 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:06:29,864 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:06:29,976 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.160 +2025-10-01 13:06:29,977 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.111s +2025-10-01 13:06:29,977 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s +2025-10-01 13:06:31,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:31,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:31,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:31,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:06:31,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:06:31,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:33,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:33,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:33,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:33,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:06:33,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:06:33,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:35,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:35,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:35,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:35,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:06:35,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:06:35,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:35,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:35,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:35,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:36,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:06:36,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:06:36,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:39,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:39,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:39,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:39,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:06:39,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:06:39,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:43,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:43,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:43,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:43,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:06:43,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:06:43,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:44,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:44,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:44,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:44,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:06:44,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:06:44,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:45,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:45,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:45,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:45,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:06:45,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:06:45,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:47,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:47,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:47,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:48,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:06:48,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:06:48,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:50,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:50,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:50,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:50,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:06:50,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:06:50,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:50,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:50,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:50,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:50,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:06:50,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:06:50,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:53,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:53,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:53,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:54,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:06:54,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:06:54,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:54,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:54,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:54,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:54,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:06:54,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:06:54,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:56,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:56,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:56,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:56,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:06:56,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:06:56,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:06:59,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:06:59,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:06:59,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:06:59,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:06:59,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:06:59,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:00,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:00,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:00,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:00,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:07:00,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:07:00,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:03,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:03,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:03,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:03,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:07:03,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:07:03,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:05,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:05,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:05,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:05,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:07:05,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:07:05,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:09,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:09,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:09,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:09,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:07:09,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:07:09,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:10,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:10,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:10,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:10,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:07:10,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:07:10,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:11,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:11,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:11,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:11,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:07:11,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:07:11,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:17,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:17,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:17,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:17,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 13:07:17,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 13:07:17,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:18,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:18,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:18,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:18,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:07:18,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:07:18,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:19,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:19,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:19,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:20,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:07:20,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:07:20,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:21,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:21,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:21,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:21,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:07:21,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:07:21,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:23,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:23,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:23,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:23,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:07:23,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:07:23,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:23,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:23,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:23,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:23,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:07:23,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:07:23,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:24,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:24,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:24,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:24,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:07:24,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:07:24,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:28,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:28,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:28,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:28,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:07:28,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:07:28,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:29,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:29,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:29,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:29,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 13:07:29,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 13:07:29,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:32,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:32,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:32,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:32,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:07:32,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:07:32,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:32,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:32,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:32,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:32,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:07:32,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:07:32,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:35,752 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:07:35,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:07:35,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:07:36,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 13:07:36,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 13:07:36,029 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:07:38,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:38,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:38,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:38,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:07:38,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:07:38,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:43,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:43,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:43,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:43,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:07:43,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:07:43,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:44,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:44,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:44,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:45,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:07:45,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:07:45,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:47,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:47,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:47,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:48,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:07:48,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:07:48,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:50,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:50,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:50,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:50,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:07:50,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:07:50,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:52,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:07:52,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:07:52,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:07:52,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:07:52,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:07:52,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:07:52,818 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:07:52,841 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:07:52,934 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.979 +2025-10-01 13:07:52,934 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 13:07:52,935 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 13:07:55,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:07:55,453 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:07:55,558 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.966 +2025-10-01 13:07:55,558 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 13:07:55,558 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 13:07:56,441 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:07:56,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:07:56,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:07:56,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 13:07:56,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 13:07:56,734 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:07:56,822 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:07:56,844 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:07:56,952 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.284 +2025-10-01 13:07:56,952 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.107s +2025-10-01 13:07:56,953 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.109s +2025-10-01 13:07:58,974 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:07:58,999 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:07:59,104 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.627 +2025-10-01 13:07:59,104 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 13:07:59,104 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 13:08:00,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:00,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:00,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:00,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:08:00,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:08:00,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:00,740 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:08:00,764 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:08:00,847 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.681 +2025-10-01 13:08:00,847 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:08:00,847 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:08:01,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:01,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:02,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:02,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:08:02,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:08:02,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:02,544 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:08:02,567 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:08:02,677 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.214 +2025-10-01 13:08:02,678 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-01 13:08:02,678 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-01 13:08:06,135 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:08:06,154 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:08:06,221 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.552 +2025-10-01 13:08:06,221 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 13:08:06,221 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s +2025-10-01 13:08:06,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:06,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:06,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:06,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:08:06,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:08:06,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:07,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:07,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:07,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:08,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:08:08,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:08:08,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:08,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:08,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:08,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:08,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:08:08,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:08:08,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:09,170 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:08:09,191 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:08:09,265 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.253 +2025-10-01 13:08:09,265 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 13:08:09,265 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 13:08:11,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:11,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:11,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:11,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:08:11,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:08:11,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:12,249 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:08:12,274 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:08:12,352 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.157 +2025-10-01 13:08:12,353 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 13:08:12,353 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 13:08:13,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:13,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:13,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:14,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:08:14,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:08:14,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:16,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:16,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:16,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:16,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:08:16,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:08:16,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:20,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:20,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:20,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:20,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:08:20,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:08:20,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:26,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:26,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:26,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:26,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:08:26,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:08:26,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:29,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:29,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:29,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:29,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:08:29,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:08:29,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:31,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:31,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:31,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:31,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:08:31,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:08:31,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:33,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:33,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:33,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:34,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:08:34,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:08:34,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:34,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:34,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:34,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:35,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:08:35,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:08:35,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:35,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:35,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:35,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:35,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:08:35,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:08:35,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:39,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:39,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:39,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:40,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:08:40,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:08:40,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:40,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:40,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:40,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:40,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:08:40,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:08:40,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:41,045 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:08:41,070 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:08:41,154 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.227 +2025-10-01 13:08:41,155 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 13:08:41,156 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 13:08:42,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:42,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:42,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:42,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:08:42,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:08:42,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:44,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:44,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:44,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:44,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:08:44,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:08:44,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:44,749 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:08:44,771 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:08:44,882 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.921 +2025-10-01 13:08:44,883 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 13:08:44,884 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s +2025-10-01 13:08:45,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:45,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:45,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:45,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:08:45,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:08:45,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:48,063 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:08:48,095 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:08:48,209 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.463 +2025-10-01 13:08:48,210 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.114s +2025-10-01 13:08:48,211 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.116s +2025-10-01 13:08:48,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:48,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:48,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:49,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:08:49,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:08:49,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:49,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:49,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:49,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:49,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:08:49,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:08:49,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:49,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:49,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:49,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:50,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:08:50,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:08:50,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:53,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:53,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:53,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:53,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:08:53,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:08:53,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:53,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:53,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:53,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:53,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:08:53,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:08:53,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:53,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:53,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:54,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:54,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:08:54,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:08:54,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:56,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:56,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:56,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:56,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:08:56,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:08:56,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:08:57,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:08:57,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:08:57,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:08:57,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:08:57,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:08:57,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:01,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:01,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:01,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:01,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:09:01,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:09:01,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:01,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:01,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:01,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:01,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:09:01,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:09:01,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:02,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:02,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:02,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:02,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:09:02,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:09:02,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:04,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:04,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:04,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:04,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:09:04,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:09:04,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:06,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:06,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:06,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:06,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:09:06,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:09:06,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:06,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:06,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:06,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:06,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:09:06,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:09:06,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:07,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:07,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:07,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:07,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:09:07,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:09:07,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:09,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:09,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:09,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:09,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:09:09,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:09:09,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:10,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:10,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:10,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:10,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:09:10,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:09:10,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:13,761 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:09:13,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:09:13,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:09:14,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 13:09:14,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 13:09:14,049 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:09:14,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:14,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:14,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:14,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:09:14,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:09:14,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:15,095 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:09:15,120 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:09:15,229 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.073 +2025-10-01 13:09:15,230 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.108s +2025-10-01 13:09:15,231 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.111s +2025-10-01 13:09:17,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:17,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:17,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:17,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:09:17,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:09:17,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:18,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:18,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:18,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:18,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:09:18,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:09:18,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:18,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:18,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:18,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:18,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:09:18,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:09:18,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:19,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:19,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:19,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:19,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 13:09:19,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 13:09:19,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:20,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:20,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:20,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:21,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:09:21,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:09:21,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:22,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:22,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:22,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:22,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:09:22,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:09:22,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:22,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:22,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:22,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:22,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:09:22,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:09:22,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:23,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:23,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:23,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:24,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:09:24,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:09:24,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:24,456 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:09:24,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:09:24,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:09:24,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 13:09:24,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 13:09:24,750 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:09:27,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:27,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:27,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:27,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:09:27,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:09:27,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:28,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:28,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:28,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:28,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:09:28,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:09:28,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:29,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:29,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:29,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:29,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:09:29,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:09:29,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:30,573 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:09:30,603 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:09:30,706 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.924 +2025-10-01 13:09:30,706 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 13:09:30,707 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 13:09:31,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:31,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:31,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:31,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 13:09:31,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 13:09:31,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:33,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:33,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:33,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:33,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:09:33,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:09:33,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:38,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:38,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:38,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:38,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:09:38,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:09:38,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:39,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:39,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:39,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:40,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:09:40,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:09:40,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:42,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:42,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:42,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:42,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:09:42,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:09:42,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:42,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:42,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:42,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:42,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:09:42,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:09:42,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:47,332 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:09:47,357 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:09:47,471 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.779 +2025-10-01 13:09:47,472 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.113s +2025-10-01 13:09:47,472 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.115s +2025-10-01 13:09:48,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:48,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:49,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:49,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:09:49,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:09:49,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:50,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:50,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:50,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:50,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:09:50,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:09:50,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:51,090 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:09:51,112 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:09:51,192 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.162 +2025-10-01 13:09:51,192 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 13:09:51,192 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 13:09:54,398 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:09:54,429 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:09:54,514 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.863 +2025-10-01 13:09:54,514 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 13:09:54,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 13:09:55,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:55,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:55,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:55,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 13:09:55,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 13:09:55,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:55,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:55,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:55,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:55,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:09:55,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:09:55,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:09:59,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:09:59,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:09:59,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:09:59,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:09:59,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:09:59,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:01,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:01,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:01,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:01,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 13:10:01,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 13:10:01,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:02,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:02,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:02,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:02,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:10:02,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:10:02,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:04,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:04,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:04,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:04,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:10:04,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:10:04,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:07,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:07,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:07,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:07,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:10:07,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:10:07,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:07,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:07,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:07,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:07,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:10:07,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:10:07,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:09,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:09,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:10,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:10,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:10:10,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:10:10,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:12,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:12,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:12,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:12,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:10:12,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:10:12,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:15,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:15,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:15,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:15,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:10:15,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:10:15,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:16,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:16,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:16,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:16,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:10:16,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:10:16,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:20,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:20,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:20,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:20,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:10:20,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:10:20,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:21,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:21,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:21,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:21,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:10:21,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:10:21,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:22,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:22,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:22,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:22,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:10:22,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:10:22,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:23,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:23,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:23,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:23,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:10:23,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:10:23,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:27,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:27,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:27,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:27,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:10:27,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:10:27,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:29,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:29,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:29,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:29,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:10:29,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:10:29,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:30,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:30,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:30,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:30,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:10:30,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:10:30,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:30,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:30,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:30,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:30,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 13:10:30,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 13:10:30,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:33,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:33,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:33,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:33,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 13:10:33,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 13:10:33,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:33,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:33,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:33,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:33,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 13:10:33,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 13:10:33,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:34,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:34,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:34,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:34,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:10:34,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:10:34,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:35,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:35,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:35,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:35,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:10:35,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:10:35,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:37,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:37,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:37,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:37,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:10:37,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:10:37,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:40,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:40,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:40,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:40,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 13:10:40,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 13:10:40,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:40,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:40,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:40,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:40,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:10:40,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:10:40,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:40,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:40,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:40,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:40,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:10:40,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:10:40,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:41,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:41,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:41,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:41,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 13:10:41,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 13:10:41,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:46,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:46,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:46,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:46,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:10:46,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:10:46,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:47,848 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:10:47,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:10:47,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:10:48,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 13:10:48,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 13:10:48,141 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:10:48,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:48,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:48,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:48,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:10:48,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:10:48,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:48,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:48,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:48,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:49,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:10:49,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:10:49,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:52,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:52,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:52,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:52,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:10:52,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:10:52,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:53,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:53,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:53,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:53,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 13:10:53,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 13:10:53,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:54,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:54,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:54,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:54,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:10:54,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:10:54,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:57,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:57,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:10:57,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:10:57,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:10:57,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:10:57,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:10:59,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:10:59,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:00,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:00,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:11:00,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:11:00,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:01,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:01,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:01,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:01,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:11:01,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:11:01,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:02,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:02,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:02,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:03,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 13:11:03,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 13:11:03,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:06,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:06,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:06,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:06,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:11:06,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:11:06,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:07,869 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:11:07,896 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:11:08,006 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.433 +2025-10-01 13:11:08,006 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 13:11:08,008 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-01 13:11:10,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:10,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:10,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:10,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:11:10,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:11:10,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:11,368 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:11:11,403 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:11:11,522 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.947 +2025-10-01 13:11:11,523 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.119s +2025-10-01 13:11:11,524 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.121s +2025-10-01 13:11:12,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:12,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:12,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:12,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 13:11:12,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 13:11:12,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:13,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:13,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:13,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:13,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:11:13,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:11:13,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:15,131 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:11:15,149 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:11:15,262 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.149 +2025-10-01 13:11:15,262 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.111s +2025-10-01 13:11:15,263 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.114s +2025-10-01 13:11:15,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:15,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:15,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:15,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:11:15,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:11:15,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:15,669 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:11:15,690 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:11:15,798 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.038 +2025-10-01 13:11:15,799 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.107s +2025-10-01 13:11:15,799 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-01 13:11:19,106 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:11:19,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:11:19,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:11:19,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 13:11:19,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 13:11:19,393 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:11:19,877 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:11:19,911 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:11:20,018 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=164.221 +2025-10-01 13:11:20,018 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.107s +2025-10-01 13:11:20,019 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-01 13:11:23,920 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:11:23,948 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:11:24,036 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.825 +2025-10-01 13:11:24,037 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 13:11:24,037 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 13:11:24,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:24,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:24,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:24,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:11:24,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:11:24,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:27,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:27,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:27,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:27,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:11:27,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:11:27,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:27,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:27,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:27,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:27,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 13:11:27,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 13:11:27,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:28,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:28,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:28,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:28,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:11:28,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:11:28,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:29,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:29,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:29,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:29,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:11:29,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:11:29,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:31,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:31,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:31,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:31,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:11:31,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:11:31,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:35,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:35,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:35,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:35,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:11:35,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:11:35,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:37,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:37,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:37,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:37,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:11:37,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:11:37,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:41,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:41,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:41,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:41,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:11:41,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:11:41,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:43,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:43,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:43,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:44,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:11:44,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:11:44,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:51,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:51,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:51,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:51,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:11:51,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:11:51,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:52,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:52,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:52,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:52,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:11:52,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:11:52,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:53,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:53,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:53,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:53,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:11:53,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:11:53,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:54,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:54,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:54,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:54,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:11:54,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:11:54,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:58,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:58,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:58,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:11:58,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:11:58,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:11:58,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:11:59,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:11:59,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:11:59,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:00,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:12:00,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:12:00,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:00,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:00,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:00,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:00,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:12:00,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:12:00,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:00,725 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:12:00,746 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:12:00,845 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.899 +2025-10-01 13:12:00,846 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 13:12:00,846 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 13:12:02,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:02,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:02,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:02,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:12:02,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:12:02,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:02,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:02,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:02,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:02,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:12:02,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:12:02,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:03,897 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:12:03,921 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:12:04,026 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.001 +2025-10-01 13:12:04,026 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 13:12:04,026 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 13:12:05,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:05,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:05,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:05,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:12:05,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:12:05,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:06,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:06,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:06,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:06,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:12:06,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:12:06,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:06,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:06,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:06,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:06,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:12:06,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:12:06,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:07,068 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:12:07,094 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:12:07,168 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.156 +2025-10-01 13:12:07,168 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 13:12:07,168 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 13:12:08,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:08,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:08,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:09,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:12:09,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:12:09,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:11,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:11,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:11,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:11,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:12:11,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:12:11,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:12,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:12,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:12,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:12,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:12:12,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:12:12,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:13,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:13,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:13,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:13,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-01 13:12:13,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-01 13:12:13,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:13,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:13,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:13,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:13,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:12:13,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:12:13,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:14,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:14,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:14,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:14,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:12:14,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:12:14,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:15,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:15,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:15,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:15,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:12:15,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:12:15,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:17,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:17,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:17,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:18,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 13:12:18,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 13:12:18,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:18,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:18,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:18,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:18,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:12:18,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:12:18,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:22,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:22,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:22,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:22,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:12:22,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:12:22,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:26,538 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:12:26,566 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:12:26,656 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.967 +2025-10-01 13:12:26,656 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 13:12:26,658 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 13:12:29,958 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:12:29,994 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:12:30,104 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.372 +2025-10-01 13:12:30,105 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 13:12:30,105 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.111s +2025-10-01 13:12:31,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:31,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:31,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:31,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:12:31,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:12:31,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:36,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:36,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:36,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:36,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:12:36,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:12:36,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:36,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:12:36,841 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:12:36,918 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.390 +2025-10-01 13:12:36,918 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 13:12:36,918 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 13:12:40,164 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:12:40,190 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:12:40,265 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.094 +2025-10-01 13:12:40,265 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 13:12:40,266 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 13:12:40,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:40,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:40,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:40,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:12:40,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:12:40,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:41,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:41,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:41,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:41,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:12:41,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:12:41,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:43,474 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:12:43,498 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:12:43,575 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.094 +2025-10-01 13:12:43,576 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 13:12:43,576 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 13:12:43,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:43,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:43,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:43,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:12:43,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:12:43,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:44,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:44,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:44,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:44,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:12:44,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:12:44,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:44,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:44,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:45,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:45,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:12:45,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:12:45,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:50,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:50,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:50,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:50,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:12:50,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:12:50,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:50,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:50,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:51,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:51,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:12:51,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:12:51,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:51,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:51,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:51,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:51,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:12:51,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:12:51,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:53,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:53,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:53,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:54,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:12:54,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:12:54,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:55,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:55,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:55,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:55,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:12:55,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:12:55,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:56,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:56,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:56,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:56,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:12:56,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:12:56,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:58,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:58,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:58,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:58,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:12:58,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:12:58,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:12:59,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:12:59,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:12:59,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:12:59,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:12:59,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:12:59,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:00,216 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:13:00,241 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:13:00,317 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.371 +2025-10-01 13:13:00,318 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 13:13:00,318 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 13:13:03,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:03,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:03,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:03,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:13:03,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:13:03,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:03,549 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:13:03,567 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:13:03,646 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.988 +2025-10-01 13:13:03,646 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 13:13:03,646 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 13:13:06,723 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:13:06,750 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:13:06,835 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.994 +2025-10-01 13:13:06,835 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 13:13:06,835 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 13:13:07,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:07,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:07,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:07,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:13:07,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:13:07,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:09,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:09,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:09,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:09,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:13:09,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:13:09,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:10,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:10,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:10,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:10,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:13:10,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:13:10,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:11,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:11,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:11,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:11,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 13:13:11,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 13:13:11,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:13,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:13,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:13,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:13,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:13:13,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:13:13,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:15,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:15,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:15,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:15,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 13:13:15,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 13:13:15,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:15,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:15,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:16,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:16,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:13:16,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:13:16,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:18,138 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:13:18,157 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:13:18,244 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.463 +2025-10-01 13:13:18,244 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 13:13:18,244 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 13:13:19,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:19,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:19,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:19,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:13:19,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:13:19,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:20,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:20,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:20,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:20,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 13:13:20,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 13:13:20,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:20,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:20,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:20,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:20,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:13:20,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:13:20,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:22,785 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:13:22,816 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:13:22,897 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.176 +2025-10-01 13:13:22,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 13:13:22,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 13:13:24,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:24,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:24,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:24,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:13:24,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:13:24,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:25,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:25,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:25,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:25,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:13:25,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:13:25,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:25,993 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:13:26,009 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:13:26,091 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.006 +2025-10-01 13:13:26,091 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:13:26,091 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:13:26,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:26,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:26,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:26,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 13:13:26,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 13:13:26,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:28,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:28,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:28,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:28,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:13:28,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:13:28,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:29,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:29,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:29,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:29,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 13:13:29,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 13:13:29,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:29,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:29,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:29,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:29,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 13:13:29,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 13:13:29,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:31,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:31,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:31,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:31,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:13:31,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:13:31,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:32,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:32,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:32,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:32,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:13:32,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:13:32,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:33,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:33,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:33,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:33,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:13:33,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:13:33,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:34,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:34,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:34,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:34,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:13:34,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:13:34,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:38,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:38,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:38,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:38,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:13:38,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:13:38,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:41,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:41,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:41,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:41,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:13:41,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:13:41,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:42,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:42,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:42,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:42,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 13:13:42,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 13:13:42,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:43,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:43,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:43,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:43,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:13:43,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:13:43,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:49,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:49,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:49,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:49,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:13:49,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:13:49,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:51,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:51,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:51,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:51,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:13:51,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:13:51,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:54,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:54,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:54,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:54,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:13:54,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:13:54,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:55,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:13:55,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:13:55,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:13:55,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:13:55,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:13:55,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:13:59,242 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:13:59,264 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:13:59,361 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.315 +2025-10-01 13:13:59,362 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 13:13:59,362 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 13:14:01,764 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:14:01,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:14:01,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:14:02,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 13:14:02,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 13:14:02,056 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:14:02,633 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:14:02,658 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:14:02,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=13.270 +2025-10-01 13:14:02,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 13:14:02,747 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 13:14:05,746 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:14:05,773 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:14:05,850 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.740 +2025-10-01 13:14:05,850 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 13:14:05,851 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 13:14:09,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:09,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:09,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:09,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:14:09,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:14:09,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:11,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:11,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:11,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:11,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:14:11,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:14:11,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:12,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:12,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:12,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:12,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:14:12,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:14:12,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:15,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:15,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:15,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:15,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:14:15,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:14:15,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:22,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:22,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:22,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:22,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:14:22,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:14:22,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:24,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:24,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:24,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:24,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:14:24,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:14:24,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:27,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:27,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:27,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:27,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:14:27,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:14:27,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:30,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:30,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:31,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:31,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:14:31,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:14:31,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:32,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:32,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:33,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:33,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:14:33,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:14:33,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:33,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:33,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:33,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:33,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:14:33,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:14:33,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:36,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:36,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:36,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:36,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:14:36,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:14:36,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:38,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:38,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:38,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:38,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:14:38,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:14:38,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:39,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:39,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:39,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:39,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 13:14:39,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 13:14:39,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:39,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:39,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:39,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:39,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 13:14:39,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 13:14:39,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:39,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:39,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:39,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:39,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 13:14:39,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 13:14:39,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:42,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:42,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:42,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:42,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:14:42,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:14:42,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:43,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:43,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:43,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:43,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:14:43,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:14:43,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:43,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:43,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:43,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:44,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:14:44,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:14:44,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:45,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:45,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:45,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:45,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:14:45,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:14:45,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:47,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:47,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:47,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:47,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:14:47,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:14:47,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:48,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:48,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:48,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:48,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:14:48,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:14:48,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:50,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:50,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:50,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:50,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:14:50,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:14:50,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:51,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:51,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:51,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:51,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:14:51,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:14:51,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:51,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:51,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:51,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:51,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:14:51,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:14:51,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:53,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:53,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:53,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:53,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:14:53,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:14:53,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:54,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:54,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:54,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:54,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:14:54,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:14:54,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:55,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:55,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:55,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:14:55,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:14:55,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:14:55,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:14:59,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:14:59,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:14:59,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:00,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:15:00,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:15:00,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:00,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:00,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:00,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:00,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:15:00,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:15:00,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:05,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:05,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:05,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:05,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:15:05,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:15:05,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:05,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:05,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:05,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:05,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:15:05,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:15:05,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:05,858 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:15:05,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:15:05,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:15:06,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 13:15:06,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-01 13:15:06,131 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:15:13,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:13,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:13,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:13,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:15:13,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:15:13,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:15,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:15,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:15,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:15,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:15:15,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:15:15,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:18,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:18,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:18,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:18,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:15:18,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:15:18,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:18,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:18,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:18,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:19,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:15:19,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:15:19,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:19,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:19,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:19,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:19,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:15:19,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:15:19,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:28,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:28,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:28,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:28,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:15:28,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:15:28,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:31,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:31,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:31,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:31,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:15:31,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:15:31,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:34,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:34,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:34,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:34,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:15:34,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:15:34,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:40,378 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:15:40,408 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:15:40,518 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.294 +2025-10-01 13:15:40,518 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.108s +2025-10-01 13:15:40,519 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.111s +2025-10-01 13:15:42,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:42,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:42,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:42,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 13:15:42,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 13:15:42,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:42,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:42,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:42,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:42,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 13:15:42,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 13:15:42,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:43,921 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:15:43,954 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:15:44,065 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.614 +2025-10-01 13:15:44,065 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 13:15:44,066 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-01 13:15:46,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:46,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:46,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:46,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:15:46,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:15:46,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:47,303 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:15:47,334 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:15:47,443 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.278 +2025-10-01 13:15:47,443 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.108s +2025-10-01 13:15:47,444 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-01 13:15:48,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:48,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:48,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:49,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:15:49,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:15:49,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:49,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:49,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:49,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:49,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:15:49,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:15:49,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:52,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:52,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:52,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:53,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:15:53,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:15:53,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:53,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:53,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:53,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:53,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:15:53,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:15:53,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:54,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:54,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:54,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:54,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:15:54,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:15:54,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:15:56,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:15:56,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:15:56,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:15:57,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:15:57,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:15:57,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:00,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:00,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:00,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:00,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:16:00,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:16:00,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:04,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:04,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:04,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:04,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:16:04,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:16:04,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:06,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:06,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:06,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:07,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:16:07,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:16:07,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:08,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:08,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:08,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:08,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:16:08,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:16:08,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:10,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:10,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:10,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:10,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:16:10,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:16:11,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:12,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:12,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:12,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:12,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:16:12,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:16:12,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:17,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:17,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:17,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:17,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:16:17,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:16:17,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:18,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:18,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:18,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:18,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:16:18,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:16:18,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:22,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:22,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:22,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:22,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:16:22,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:16:22,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:25,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:25,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:25,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:25,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:16:25,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:16:25,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:27,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:27,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:27,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:27,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:16:27,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:16:27,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:29,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:29,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:29,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:29,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:16:29,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:16:29,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:31,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:31,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:31,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:31,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:16:31,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:16:31,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:32,127 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:16:32,166 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:16:32,270 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.730 +2025-10-01 13:16:32,270 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 13:16:32,270 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 13:16:32,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:32,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:32,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:32,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:16:32,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:16:32,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:36,630 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:16:36,659 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:16:36,744 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.923 +2025-10-01 13:16:36,745 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 13:16:36,745 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 13:16:37,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:37,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:37,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:37,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:16:37,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:16:37,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:37,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:37,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:37,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:38,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:16:38,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:16:38,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:39,942 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:16:39,974 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:16:40,070 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.183 +2025-10-01 13:16:40,070 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 13:16:40,072 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 13:16:42,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:42,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:42,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:42,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:16:42,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:16:42,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:43,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:43,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:43,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:43,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:16:43,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:16:43,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:46,921 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:16:46,951 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:16:47,068 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.950 +2025-10-01 13:16:47,068 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.115s +2025-10-01 13:16:47,069 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.118s +2025-10-01 13:16:47,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:47,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:48,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:48,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:16:48,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:16:48,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:50,487 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:16:50,515 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:16:50,625 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.653 +2025-10-01 13:16:50,625 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-01 13:16:50,626 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-01 13:16:51,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:16:51,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:16:51,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:16:51,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:16:51,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:16:51,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:16:54,730 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:16:54,758 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:16:54,871 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.737 +2025-10-01 13:16:54,871 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.113s +2025-10-01 13:16:54,872 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.115s +2025-10-01 13:16:54,896 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:16:54,911 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:16:55,007 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.776 +2025-10-01 13:16:55,007 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 13:16:55,007 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 13:16:55,709 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:16:55,735 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:16:55,810 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.537 +2025-10-01 13:16:55,810 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 13:16:55,811 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 13:16:58,995 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:16:59,019 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:16:59,099 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.308 +2025-10-01 13:16:59,100 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 13:16:59,100 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 13:16:59,797 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:16:59,819 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:16:59,901 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.381 +2025-10-01 13:16:59,901 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:16:59,902 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:17:02,402 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:17:02,423 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:17:02,502 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.532 +2025-10-01 13:17:02,502 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 13:17:02,502 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 13:17:09,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:17:09,538 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:17:09,623 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.933 +2025-10-01 13:17:09,623 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 13:17:09,623 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 13:17:11,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:11,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:11,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:11,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:17:11,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:17:11,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:16,282 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:17:16,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:17:16,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:17:16,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-01 13:17:16,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +2025-10-01 13:17:16,604 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:17:18,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:18,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:18,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:18,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:17:18,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:17:18,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:19,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:19,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:19,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:19,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:17:19,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:17:19,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:19,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:19,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:19,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:19,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:17:19,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:17:19,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:20,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:20,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:20,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:21,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:17:21,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:17:21,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:22,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:22,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:22,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:22,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:17:22,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:17:22,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:24,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:24,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:24,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:24,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:17:24,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:17:24,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:24,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:24,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:24,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:25,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:17:25,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:17:25,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:25,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:25,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:25,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:26,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:17:26,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:17:26,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:26,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:26,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:26,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:27,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:17:27,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:17:27,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:27,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:27,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:28,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:28,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:17:28,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:17:28,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:31,555 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:17:31,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:17:31,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:17:31,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 13:17:31,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.131s/image) +2025-10-01 13:17:31,819 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:17:32,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:32,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:32,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:32,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:17:32,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:17:32,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:34,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:34,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:34,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:34,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:17:34,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:17:34,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:34,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:34,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:34,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:35,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:17:35,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:17:35,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:35,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:35,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:35,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:35,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:17:35,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:17:35,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:36,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:36,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:36,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:36,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 13:17:36,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 13:17:36,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:37,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:37,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:37,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:37,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:17:37,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:17:37,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:38,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:38,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:38,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:38,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:17:38,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:17:38,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:39,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:39,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:39,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:39,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:17:39,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:17:39,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:39,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:39,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:39,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:39,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 13:17:39,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 13:17:39,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:47,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:47,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:47,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:47,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:17:47,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:17:47,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:50,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:50,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:50,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:50,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:17:50,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:17:50,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:50,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:50,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:50,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:51,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:17:51,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:17:51,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:53,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:53,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:53,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:53,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:17:53,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:17:53,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:57,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:57,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:57,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:57,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:17:57,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:17:57,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:17:58,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:17:58,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:17:58,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:17:59,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:17:59,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:17:59,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:02,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:02,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:02,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:03,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:18:03,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:18:03,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:04,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:04,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:04,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:04,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:18:04,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:18:04,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:06,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:06,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:06,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:06,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:18:06,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:18:06,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:06,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:06,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:06,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:06,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:18:06,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:18:06,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:10,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:10,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:10,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:10,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:18:10,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:18:10,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:11,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:11,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:11,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:11,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:18:11,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:18:11,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:14,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:14,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:14,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:14,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:18:14,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:18:14,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:16,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:16,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:16,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:16,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:18:16,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:18:16,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:16,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:16,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:16,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:16,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:18:16,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:18:16,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:17,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:17,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:17,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:17,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 13:18:17,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 13:18:17,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:19,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:19,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:19,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:19,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:18:19,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:18:19,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:20,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:20,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:20,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:20,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:18:20,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:18:20,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:21,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:21,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:21,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:21,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:18:21,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:18:21,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:24,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:24,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:24,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:24,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:18:24,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:18:24,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:26,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:26,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:26,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:26,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:18:26,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:18:26,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:28,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:28,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:28,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:28,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:18:28,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:18:28,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:30,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:30,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:30,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:30,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:18:30,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:18:30,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:32,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:32,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:32,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:32,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:18:32,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:18:32,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:33,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:33,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:33,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:33,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:18:33,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:18:33,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:34,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:34,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:34,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:34,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:18:34,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:18:34,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:35,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:35,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:35,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:35,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:18:35,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:18:35,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:36,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:36,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:36,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:36,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:18:36,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:18:36,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:36,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:36,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:36,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:36,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:18:36,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:18:36,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:37,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:37,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:37,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:37,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:18:37,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:18:37,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:38,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:38,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:38,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:39,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:18:39,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:18:39,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:41,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:41,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:41,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:41,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:18:41,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:18:41,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:41,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:41,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:41,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:41,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:18:41,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:18:41,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:43,482 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:18:43,515 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:18:43,629 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.609 +2025-10-01 13:18:43,629 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.113s +2025-10-01 13:18:43,631 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.117s +2025-10-01 13:18:44,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:44,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:44,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:44,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:18:44,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:18:44,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:44,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:44,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:44,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:44,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:18:44,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:18:44,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:46,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:46,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:46,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:46,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:18:46,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:18:46,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:47,310 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:18:47,336 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:18:47,447 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.393 +2025-10-01 13:18:47,448 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.111s +2025-10-01 13:18:47,449 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s +2025-10-01 13:18:48,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:48,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:49,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:49,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:18:49,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:18:49,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:49,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:49,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:49,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:49,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:18:49,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:18:49,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:50,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:50,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:50,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:50,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:18:50,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:18:50,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:50,757 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:18:50,783 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:18:50,897 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=224.158 +2025-10-01 13:18:50,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.113s +2025-10-01 13:18:50,898 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.116s +2025-10-01 13:18:55,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:55,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:55,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:55,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:18:55,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:18:55,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:56,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:56,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:56,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:56,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:18:56,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:18:56,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:18:56,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:18:56,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:18:56,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:18:57,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:18:57,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:18:57,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:02,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:02,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:02,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:02,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:19:02,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:19:02,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:03,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:03,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:03,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:03,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:19:03,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:19:03,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:06,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:06,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:06,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:06,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:19:06,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:19:06,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:07,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:07,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:07,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:07,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:19:07,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:19:07,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:08,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:08,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:08,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:08,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:19:08,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:19:08,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:10,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:10,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:10,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:10,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:19:10,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:19:10,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:15,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:15,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:15,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:15,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:19:15,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:19:15,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:17,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:17,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:17,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:17,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:19:17,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:19:17,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:18,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:18,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:18,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:19,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:19:19,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:19:19,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:24,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:24,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:24,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:24,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:19:24,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:19:24,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:25,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:25,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:25,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:25,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:19:25,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:19:25,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:31,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:31,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:32,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:32,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:19:32,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:19:32,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:32,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:32,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:32,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:32,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 13:19:32,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 13:19:32,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:38,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:38,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:39,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:39,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 13:19:39,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 13:19:39,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:40,358 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:19:40,384 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:19:40,498 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=215.030 +2025-10-01 13:19:40,499 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.113s +2025-10-01 13:19:40,500 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.116s +2025-10-01 13:19:40,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:40,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:40,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:41,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:19:41,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:19:41,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:44,280 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:19:44,331 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:19:44,453 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.919 +2025-10-01 13:19:44,454 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.122s +2025-10-01 13:19:44,455 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.125s +2025-10-01 13:19:45,129 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:19:45,152 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:19:45,264 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.481 +2025-10-01 13:19:45,264 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.111s +2025-10-01 13:19:45,266 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.114s +2025-10-01 13:19:48,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:48,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:48,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:48,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:19:48,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:19:48,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:48,847 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:19:48,865 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:19:48,974 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.830 +2025-10-01 13:19:48,975 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-01 13:19:48,976 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.111s +2025-10-01 13:19:52,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:52,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:52,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:52,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:19:52,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:19:52,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:56,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:56,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:56,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:19:56,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:19:56,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:19:56,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:19:59,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:19:59,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:19:59,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:00,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:20:00,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:20:00,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:00,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:00,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:00,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:00,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:20:00,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:20:00,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:03,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:03,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:03,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:03,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:20:03,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:20:03,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:04,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:04,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:04,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:04,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:20:04,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:20:04,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:04,992 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:20:05,012 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:20:05,113 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.615 +2025-10-01 13:20:05,113 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 13:20:05,114 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 13:20:05,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:05,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:05,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:05,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.124s +2025-10-01 13:20:05,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.124s (avg: 0.124s/image) +2025-10-01 13:20:05,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:06,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:06,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:06,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:06,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:20:06,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:20:06,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:07,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:07,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:07,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:08,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:20:08,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:20:08,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:08,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:08,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:08,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:08,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:20:08,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:20:08,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:08,846 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:20:08,867 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:20:08,973 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.347 +2025-10-01 13:20:08,973 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s +2025-10-01 13:20:08,975 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-01 13:20:12,473 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:20:12,500 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:20:12,618 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.151 +2025-10-01 13:20:12,619 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.118s +2025-10-01 13:20:12,620 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.120s +2025-10-01 13:20:13,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:13,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:13,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:13,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:20:13,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:20:13,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:13,878 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:20:13,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:20:13,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:20:14,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 13:20:14,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 13:20:14,189 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:20:19,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:19,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:19,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:19,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:20:19,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:20:19,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:19,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:19,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:19,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:20,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:20:20,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:20:20,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:23,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:23,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:23,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:23,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 13:20:23,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 13:20:23,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:24,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:24,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:24,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:24,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:20:24,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:20:24,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:27,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:27,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:27,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:27,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:20:27,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:20:27,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:29,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:29,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:29,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:29,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 13:20:29,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 13:20:29,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:29,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:29,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:29,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:30,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:20:30,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:20:30,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:30,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:30,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:30,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:30,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:20:30,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:20:30,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:32,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:32,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:33,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:33,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:20:33,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:20:33,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:35,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:35,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:35,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:35,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:20:35,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:20:35,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:36,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:36,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:36,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:36,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:20:36,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:20:36,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:36,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:36,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:36,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:37,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:20:37,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:20:37,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:38,504 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:20:38,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:20:38,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:20:38,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +2025-10-01 13:20:38,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +2025-10-01 13:20:38,769 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:20:40,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:40,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:40,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:40,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:20:40,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:20:40,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:42,672 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:20:42,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:20:42,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:20:42,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 13:20:42,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-01 13:20:42,940 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:20:43,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:43,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:43,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:43,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:20:43,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:20:43,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:44,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:44,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:44,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:45,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:20:45,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:20:45,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:46,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:46,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:46,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:46,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:20:46,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:20:46,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:47,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:47,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:47,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:47,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:20:47,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:20:47,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:48,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:48,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:48,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:48,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:20:48,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:20:48,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:51,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:51,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:51,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:52,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:20:52,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:20:52,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:53,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:53,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:53,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:54,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:20:54,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:20:54,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:55,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:55,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:55,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:55,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:20:55,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:20:55,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:56,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:56,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:20:56,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:20:56,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:20:56,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:20:56,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:20:56,709 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:20:56,724 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:20:56,806 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.138 +2025-10-01 13:20:56,806 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 13:20:56,806 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:20:56,823 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:20:56,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:20:56,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:20:57,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 13:20:57,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 13:20:57,116 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:20:59,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:20:59,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:00,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:00,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:21:00,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:21:00,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:00,362 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:21:00,383 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:21:00,464 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.919 +2025-10-01 13:21:00,464 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 13:21:00,464 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 13:21:01,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:01,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:01,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:01,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:21:01,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:21:01,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:02,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:02,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:02,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:02,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:21:02,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:21:02,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:04,439 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:21:04,459 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:21:04,533 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.213 +2025-10-01 13:21:04,533 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 13:21:04,533 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 13:21:04,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:04,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:04,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:04,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:21:04,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:21:04,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:05,357 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:21:05,392 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:21:05,489 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.742 +2025-10-01 13:21:05,489 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 13:21:05,492 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 13:21:06,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:06,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:06,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:06,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:21:06,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:21:06,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:07,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:07,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:07,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:08,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:21:08,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:21:08,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:08,743 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:21:08,759 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:21:08,845 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.396 +2025-10-01 13:21:08,845 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 13:21:08,845 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 13:21:08,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:08,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:09,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:09,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:21:09,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:21:09,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:11,532 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:21:11,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:21:11,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:21:11,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 13:21:11,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 13:21:11,819 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:21:12,013 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:21:12,030 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:21:12,101 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.684 +2025-10-01 13:21:12,101 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 13:21:12,101 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 13:21:13,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:13,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:13,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:13,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:21:13,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:21:13,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:14,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:14,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:14,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:14,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 13:21:14,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 13:21:14,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:18,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:18,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:18,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:18,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:21:18,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:21:18,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:18,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:18,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:18,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:18,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:21:18,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:21:18,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:19,092 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:21:19,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:21:19,212 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.983 +2025-10-01 13:21:19,213 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 13:21:19,213 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 13:21:22,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:22,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:22,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:22,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:21:22,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:21:22,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:25,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:25,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:25,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:25,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:21:25,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:21:25,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:27,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:27,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:27,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:27,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:21:27,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:21:27,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:28,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:28,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:28,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:28,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:21:28,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:21:28,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:31,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:31,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:32,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:32,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:21:32,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:21:32,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:32,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:32,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:32,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:33,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:21:33,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:21:33,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:34,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:34,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:34,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:34,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:21:34,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:21:34,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:37,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:37,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:38,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:38,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:21:38,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:21:38,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:38,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:38,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:38,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:39,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:21:39,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:21:39,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:41,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:41,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:41,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:41,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:21:41,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:21:41,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:41,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:41,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:41,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:41,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:21:41,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:21:41,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:42,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:42,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:42,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:42,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:21:42,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:21:42,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:44,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:44,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:44,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:44,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:21:44,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:21:44,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:21:57,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:21:57,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:21:57,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:21:57,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 13:21:57,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 13:21:57,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:04,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:04,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:04,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:04,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 13:22:04,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 13:22:04,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:10,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:10,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:10,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:10,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:22:10,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:22:10,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:21,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:21,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:21,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:21,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:22:21,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:22:21,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:22,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:22,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:23,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:23,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:22:23,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:22:23,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:26,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:26,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:27,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:27,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 13:22:27,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 13:22:27,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:28,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:29,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:29,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:29,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:22:29,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:22:29,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:31,344 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:22:31,370 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:22:31,462 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=213.202 +2025-10-01 13:22:31,462 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 13:22:31,462 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 13:22:33,844 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:22:33,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:22:33,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:22:34,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 13:22:34,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 13:22:34,128 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:22:35,175 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:22:35,197 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:22:35,292 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.403 +2025-10-01 13:22:35,292 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 13:22:35,293 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 13:22:38,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:38,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:38,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:38,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 13:22:38,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 13:22:38,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:38,681 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:22:38,700 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:22:38,783 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.750 +2025-10-01 13:22:38,783 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:22:38,784 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 13:22:43,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:43,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:43,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:43,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:22:43,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:22:43,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:48,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:48,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:48,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:48,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:22:48,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:22:48,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:50,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:50,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:50,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:50,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:22:50,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:22:50,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:51,334 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:22:51,370 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:22:51,486 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.896 +2025-10-01 13:22:51,487 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.116s +2025-10-01 13:22:51,488 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.119s +2025-10-01 13:22:52,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:52,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:52,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:52,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:22:52,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:22:52,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:56,200 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:22:56,228 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:22:56,338 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.257 +2025-10-01 13:22:56,338 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-01 13:22:56,339 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.111s +2025-10-01 13:22:57,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:57,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:57,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:57,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:22:57,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:22:57,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:57,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:22:57,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:22:58,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:22:58,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:22:58,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:22:58,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:22:59,732 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:22:59,761 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:22:59,869 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.949 +2025-10-01 13:22:59,869 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.107s +2025-10-01 13:22:59,870 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-01 13:23:00,835 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:23:00,855 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:23:00,957 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.237 +2025-10-01 13:23:00,957 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 13:23:00,957 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 13:23:03,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:03,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:03,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:03,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 13:23:03,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 13:23:03,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:04,861 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:23:04,887 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:23:04,970 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.486 +2025-10-01 13:23:04,970 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:23:04,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:23:10,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:10,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:10,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:10,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:23:10,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:23:10,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:12,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:12,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:12,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:13,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:23:13,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:23:13,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:13,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:13,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:13,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:13,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:23:13,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:23:13,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:13,922 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:23:13,945 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:23:14,026 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.370 +2025-10-01 13:23:14,026 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 13:23:14,026 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 13:23:17,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:17,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:17,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:17,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 13:23:17,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 13:23:17,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:17,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:17,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:17,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:17,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:23:17,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:23:17,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:21,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:21,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:21,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:21,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:23:21,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:23:21,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:24,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:24,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:24,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:25,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:23:25,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:23:25,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:26,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:26,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:26,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:26,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:23:26,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:23:26,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:28,371 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:23:28,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:23:28,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:23:28,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 13:23:28,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 13:23:28,657 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:23:32,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:32,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:32,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:32,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:23:32,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:23:32,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:34,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:34,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:34,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:34,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:23:34,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:23:34,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:35,720 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:23:35,745 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:23:35,823 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.715 +2025-10-01 13:23:35,823 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 13:23:35,823 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 13:23:36,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:36,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:36,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:36,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:23:36,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:23:36,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:36,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:36,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:36,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:36,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:23:36,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:23:36,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:39,180 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:23:39,204 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:23:39,289 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.175 +2025-10-01 13:23:39,290 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 13:23:39,290 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 13:23:39,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:39,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:39,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:39,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:23:39,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:23:39,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:40,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:40,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:40,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:40,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:23:40,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:23:40,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:43,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:23:43,904 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:23:43,983 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.585 +2025-10-01 13:23:43,983 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 13:23:43,983 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 13:23:44,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:44,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:44,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:44,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:23:44,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:23:44,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:45,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:45,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:45,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:45,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:23:45,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:23:45,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:47,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:47,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:47,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:47,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:23:47,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:23:47,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:50,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:50,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:50,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:50,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 13:23:50,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 13:23:50,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:52,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:52,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:52,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:52,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:23:52,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:23:52,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:56,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:56,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:56,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:56,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:23:56,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:23:56,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:23:57,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:23:57,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:23:58,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:23:58,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:23:58,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:23:58,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:00,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:00,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:00,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:01,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:24:01,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:24:01,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:03,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:03,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:03,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:03,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:24:03,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:24:03,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:03,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:03,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:03,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:03,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:24:03,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:24:03,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:06,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:06,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:06,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:06,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:24:06,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:24:06,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:07,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:07,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:07,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:07,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-01 13:24:07,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-01 13:24:07,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:07,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:07,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:07,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:07,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:24:07,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:24:07,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:08,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:08,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:08,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:08,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:24:08,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:24:08,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:12,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:12,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:12,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:12,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:24:12,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:24:12,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:12,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:12,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:12,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:13,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:24:13,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:24:13,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:13,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:13,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:13,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:13,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:24:13,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:24:13,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:14,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:14,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:15,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:15,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:24:15,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:24:15,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:15,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:15,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:15,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:15,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:24:15,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:24:15,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:17,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:17,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:17,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:18,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:24:18,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:24:18,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:18,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:18,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:18,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:18,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:24:18,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:24:18,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:20,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:20,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:20,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:20,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:24:20,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:24:20,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:21,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:21,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:21,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:21,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:24:21,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:24:21,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:21,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:21,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:21,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:21,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:24:21,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:24:21,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:24,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:24,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:24,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:24,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:24:24,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:24:24,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:28,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:28,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:28,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:28,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:24:28,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:24:28,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:32,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:32,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:32,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:32,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:24:32,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:24:32,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:32,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:32,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:32,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:32,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 13:24:32,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 13:24:32,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:33,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:33,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:33,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:33,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:24:33,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:24:33,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:34,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:34,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:34,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:34,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:24:34,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:24:34,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:41,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:41,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:41,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:41,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:24:41,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:24:41,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:42,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:42,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:42,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:42,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:24:42,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:24:42,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:45,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:45,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:45,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:45,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.212s +2025-10-01 13:24:45,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.212s (avg: 0.212s/image) +2025-10-01 13:24:45,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:48,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:48,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:48,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:48,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:24:48,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:24:48,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:49,137 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:24:49,168 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:24:49,253 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.644 +2025-10-01 13:24:49,253 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 13:24:49,254 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 13:24:49,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:49,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:49,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:49,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:24:49,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:24:49,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:53,082 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:24:53,110 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:24:53,220 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.185 +2025-10-01 13:24:53,221 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 13:24:53,222 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-01 13:24:55,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:55,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:55,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:55,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:24:55,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:24:55,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:56,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:56,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:56,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:24:56,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:24:56,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:24:56,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:24:56,857 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:24:56,883 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:24:56,992 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.005 +2025-10-01 13:24:56,992 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.108s +2025-10-01 13:24:56,994 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.111s +2025-10-01 13:24:59,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:24:59,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:24:59,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:00,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:25:00,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:25:00,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:02,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:02,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:02,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:03,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 13:25:03,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 13:25:03,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:04,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:04,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:04,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:04,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:25:04,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:25:04,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:06,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:06,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:06,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:06,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:25:06,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:25:06,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:07,731 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:25:07,759 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:25:07,856 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.224 +2025-10-01 13:25:07,856 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 13:25:07,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 13:25:11,699 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:25:11,722 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:25:11,798 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.685 +2025-10-01 13:25:11,798 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 13:25:11,798 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 13:25:12,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:12,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:12,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:12,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 13:25:12,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 13:25:12,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:15,897 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:25:15,938 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:25:16,024 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.302 +2025-10-01 13:25:16,025 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 13:25:16,025 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 13:25:19,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:19,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:19,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:19,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:25:19,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:25:19,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:22,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:22,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:22,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:22,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:25:22,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:25:22,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:25,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:25,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:25,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:26,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 13:25:26,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 13:25:26,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:28,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:28,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:28,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:28,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 13:25:28,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 13:25:28,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:29,196 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:25:29,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:25:29,353 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=17.715 +2025-10-01 13:25:29,353 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.131s +2025-10-01 13:25:29,354 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.133s +2025-10-01 13:25:31,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:31,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:31,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:31,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:25:31,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:25:31,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:33,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:33,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:33,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:33,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 13:25:33,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 13:25:33,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:34,064 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:25:34,109 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:25:34,225 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.197 +2025-10-01 13:25:34,225 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.115s +2025-10-01 13:25:34,226 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.117s +2025-10-01 13:25:37,797 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:25:37,825 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:25:37,940 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=187.461 +2025-10-01 13:25:37,941 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.114s +2025-10-01 13:25:37,942 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.117s +2025-10-01 13:25:40,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:40,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:40,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:40,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:25:40,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:25:40,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:43,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:43,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:43,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:43,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:25:43,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:25:43,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:44,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:44,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:44,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:44,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.214s +2025-10-01 13:25:44,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.214s (avg: 0.214s/image) +2025-10-01 13:25:44,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:45,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:45,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:45,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:45,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:25:45,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:25:45,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:46,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:46,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:46,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:46,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:25:46,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:25:46,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:50,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:50,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:50,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:50,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:25:50,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:25:50,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:51,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:51,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:51,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:51,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:25:51,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:25:51,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:52,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:52,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:53,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:53,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 13:25:53,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 13:25:53,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:25:53,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:25:53,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:25:53,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:25:53,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:25:53,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:25:53,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:04,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:04,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:04,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:04,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:26:04,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:26:04,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:05,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:05,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:05,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:06,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:26:06,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:26:06,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:07,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:07,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:07,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:07,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 13:26:07,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 13:26:07,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:10,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:10,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:10,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:10,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:26:10,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:26:10,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:13,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:13,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:13,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:13,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:26:13,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:26:13,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:15,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:15,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:15,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:15,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 13:26:15,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 13:26:15,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:16,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:16,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:16,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:16,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:26:16,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:26:16,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:17,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:17,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:17,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:17,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:26:17,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:26:17,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:18,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:18,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:18,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:18,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:26:18,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:26:18,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:19,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:19,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:19,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:20,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 13:26:20,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 13:26:20,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:20,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:20,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:20,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:20,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:26:20,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:26:20,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:21,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:21,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:21,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:21,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:26:21,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:26:21,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:22,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:22,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:22,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:23,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:26:23,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:26:23,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:24,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:24,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:24,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:24,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:26:24,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:26:24,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:25,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:25,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:25,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:25,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:26:25,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:26:25,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:27,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:27,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:27,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:27,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:26:27,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:26:27,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:29,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:29,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:29,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:29,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:26:29,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:26:29,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:29,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:29,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:29,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:29,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:26:29,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:26:29,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:30,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:30,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:30,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:30,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:26:30,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:26:30,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:34,396 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:26:34,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:26:34,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:26:34,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +2025-10-01 13:26:34,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.319s (avg: 0.159s/image) +2025-10-01 13:26:34,717 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:26:36,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:36,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:36,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:36,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 13:26:36,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 13:26:36,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:37,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:37,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:37,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:37,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:26:37,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:26:37,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:37,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:37,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:37,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:37,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:26:37,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:26:37,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:38,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:38,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:38,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:38,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 13:26:38,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 13:26:38,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:40,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:40,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:41,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:41,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:26:41,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:26:41,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:41,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:41,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:41,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:41,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:26:41,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:26:41,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:42,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:42,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:42,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:42,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:26:42,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:26:42,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:44,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:44,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:44,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:44,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:26:44,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:26:44,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:45,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:45,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:46,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:46,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:26:46,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:26:46,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:46,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:46,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:46,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:46,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:26:46,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:26:46,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:46,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:46,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:46,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:47,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:26:47,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:26:47,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:47,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:47,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:47,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:47,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 13:26:47,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 13:26:47,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:49,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:49,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:49,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:49,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:26:49,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:26:49,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:53,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:53,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:53,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:53,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 13:26:53,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 13:26:53,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:53,553 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:26:53,586 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:26:53,674 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.845 +2025-10-01 13:26:53,675 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 13:26:53,675 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 13:26:54,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:54,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:54,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:54,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:26:54,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:26:54,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:56,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:56,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:56,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:26:56,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:26:56,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:26:56,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:26:59,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:26:59,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:26:59,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:00,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-01 13:27:00,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-01 13:27:00,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:00,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:00,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:00,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:00,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 13:27:00,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 13:27:00,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:02,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:02,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:02,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:02,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:27:02,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:27:02,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:07,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:07,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:07,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:07,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 13:27:07,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 13:27:07,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:10,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:10,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:10,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:10,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:27:10,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:27:10,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:10,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:10,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:10,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:10,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:27:10,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:27:10,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:13,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:13,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:13,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:13,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 13:27:13,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 13:27:13,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:17,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:17,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:17,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:17,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:27:17,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:27:17,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:19,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:19,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:20,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:20,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-01 13:27:20,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-01 13:27:20,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:23,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:23,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:23,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:23,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:27:23,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:27:23,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:25,065 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:27:25,091 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:27:25,179 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.530 +2025-10-01 13:27:25,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 13:27:25,180 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 13:27:27,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:27,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:27,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:27,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:27:27,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:27:27,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:28,761 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:27:28,788 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:27:28,867 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.375 +2025-10-01 13:27:28,867 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 13:27:28,867 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 13:27:29,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:29,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:29,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:29,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:27:29,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:27:29,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:30,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:30,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:30,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:30,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:27:30,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:27:30,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:33,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:33,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:33,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:33,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:27:33,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:27:33,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:33,411 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:27:33,430 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:27:33,504 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.639 +2025-10-01 13:27:33,504 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 13:27:33,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 13:27:37,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:37,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:37,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:37,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:27:37,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:27:37,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:40,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:40,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:40,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:41,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 13:27:41,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 13:27:41,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:42,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:42,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:42,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:42,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:27:42,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:27:42,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:45,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:45,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:45,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:45,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s +2025-10-01 13:27:45,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +2025-10-01 13:27:45,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:47,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:47,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:47,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:48,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:27:48,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:27:48,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:48,574 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:27:48,602 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:27:48,688 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.574 +2025-10-01 13:27:48,688 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 13:27:48,688 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 13:27:51,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:51,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:51,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:51,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:27:51,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:27:51,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:53,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:53,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:53,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:53,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:27:53,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:27:53,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:27:54,043 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:27:54,068 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:27:54,149 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.655 +2025-10-01 13:27:54,149 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 13:27:54,149 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 13:27:58,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:27:58,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:27:58,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:27:58,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:27:58,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:27:58,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:00,486 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:28:00,512 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:28:00,586 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.311 +2025-10-01 13:28:00,586 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 13:28:00,586 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 13:28:04,275 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:28:04,301 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:28:04,377 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.491 +2025-10-01 13:28:04,377 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 13:28:04,377 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 13:28:04,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:04,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:04,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:04,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:28:04,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:28:04,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:06,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:06,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:06,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:07,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 13:28:07,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 13:28:07,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:07,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:07,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:07,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:08,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:28:08,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:28:08,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:10,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:10,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:10,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:10,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 13:28:10,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 13:28:10,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:11,719 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:28:11,766 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:28:11,854 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.819 +2025-10-01 13:28:11,854 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 13:28:11,854 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 13:28:13,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:13,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:13,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:13,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 13:28:13,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 13:28:13,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:15,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:15,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:15,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:15,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:28:15,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:28:15,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:16,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:16,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:16,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:16,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:28:16,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:28:16,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:21,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:21,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:21,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:21,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:28:21,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:28:21,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:22,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:22,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:22,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:22,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:28:22,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:28:22,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:23,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:23,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:23,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:23,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:28:23,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:28:23,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:28,713 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:28:28,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:28:28,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:28:29,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +2025-10-01 13:28:29,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.158s/image) +2025-10-01 13:28:29,031 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:28:30,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:30,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:30,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:30,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 13:28:30,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 13:28:30,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:32,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:32,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:32,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:32,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:28:32,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:28:32,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:35,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:35,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:35,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:35,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:28:35,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:28:35,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:35,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:35,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:35,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:36,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:28:36,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:28:36,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:36,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:36,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:36,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:36,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:28:36,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:28:36,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:37,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:37,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:37,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:37,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 13:28:37,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 13:28:37,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:40,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:40,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:40,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:40,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:28:40,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:28:40,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:41,920 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:28:41,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:28:41,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:28:42,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 13:28:42,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 13:28:42,212 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:28:43,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:43,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:43,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:43,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 13:28:43,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 13:28:43,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:48,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:48,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:48,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:48,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:28:48,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:28:48,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:53,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:53,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:53,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:53,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:28:53,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:28:53,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:54,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:54,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:54,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:55,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:28:55,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:28:55,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:28:55,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:28:55,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:28:55,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:28:55,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:28:55,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:28:55,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:02,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:02,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:02,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:02,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:29:02,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:29:02,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:09,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:09,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:09,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:09,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:29:09,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:29:09,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:12,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:12,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:12,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:12,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 13:29:12,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 13:29:12,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:12,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:12,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:12,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:13,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:29:13,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:29:13,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:16,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:16,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:16,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:16,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:29:16,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:29:16,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:22,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:22,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:22,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:22,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:29:22,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:29:22,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:27,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:27,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:27,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:27,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:29:27,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:29:27,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:28,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:28,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:28,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:28,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:29:28,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:29:28,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:33,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:33,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:33,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:34,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:29:34,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:29:34,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:34,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:34,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:34,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:34,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:29:34,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:29:34,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:38,017 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:29:38,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:29:38,139 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.198 +2025-10-01 13:29:38,139 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 13:29:38,140 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 13:29:40,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:40,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:40,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:40,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:29:40,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:29:40,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:41,363 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:29:41,381 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:29:41,458 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.584 +2025-10-01 13:29:41,459 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 13:29:41,459 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 13:29:41,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:41,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:41,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:41,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:29:41,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:29:41,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:44,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:44,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:44,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:44,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:29:44,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:29:44,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:44,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:44,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:44,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:45,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:29:45,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:29:45,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:45,104 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:29:45,118 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:29:45,206 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.342 +2025-10-01 13:29:45,207 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 13:29:45,207 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 13:29:47,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:47,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:47,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:47,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:29:47,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:29:47,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:49,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:49,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:49,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:49,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:29:49,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:29:49,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:50,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:50,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:50,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:50,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:29:50,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:29:50,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:53,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:53,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:53,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:53,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:29:53,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:29:53,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:29:57,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:29:57,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:29:57,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:29:57,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:29:57,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:29:57,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:30:07,495 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:30:07,553 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:30:07,647 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.542 +2025-10-01 13:30:07,648 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 13:30:07,649 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 13:30:13,534 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:30:13,594 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:30:13,704 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.749 +2025-10-01 13:30:13,705 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-01 13:30:13,706 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-01 13:30:15,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:30:15,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:30:15,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:30:15,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:30:15,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:30:15,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:30:19,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:30:19,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:30:19,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:30:19,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:30:19,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:30:19,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:30:20,799 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:30:20,832 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:30:20,935 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.523 +2025-10-01 13:30:20,935 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 13:30:20,937 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 13:30:22,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:30:22,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:30:22,664 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=211.058 +2025-10-01 13:30:22,664 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.132s +2025-10-01 13:30:22,666 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.134s +2025-10-01 13:30:24,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:30:24,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:30:24,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:30:24,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 13:30:24,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 13:30:24,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:30:29,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:30:29,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:30:29,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:30:29,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:30:29,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:30:29,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:30:31,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:30:31,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:30:31,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:30:31,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:30:31,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:30:31,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:30:34,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:30:34,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:30:34,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:30:34,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:30:34,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:30:34,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:30:38,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:30:38,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:30:38,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:30:38,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:30:38,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:30:38,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:30:41,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:30:41,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:30:41,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:30:41,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:30:41,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:30:41,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:30:44,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:30:44,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:30:44,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:30:44,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:30:44,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:30:44,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:30:52,248 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:30:52,286 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:30:52,417 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.870 +2025-10-01 13:30:52,417 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.130s +2025-10-01 13:30:52,417 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.131s +2025-10-01 13:30:54,143 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:30:54,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:30:54,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:30:54,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.322s +2025-10-01 13:30:54,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.322s (avg: 0.161s/image) +2025-10-01 13:30:54,467 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:30:55,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:30:55,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:30:55,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:30:55,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:30:55,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:30:55,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:30:56,050 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:30:56,089 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:30:56,182 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.299 +2025-10-01 13:30:56,183 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 13:30:56,183 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 13:31:01,803 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:31:01,847 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:31:01,926 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.351 +2025-10-01 13:31:01,926 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 13:31:01,926 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 13:31:04,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:04,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:04,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:04,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:31:04,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:31:04,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:06,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:06,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:06,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:06,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 13:31:06,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 13:31:06,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:08,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:08,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:08,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:08,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:31:08,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:31:08,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:15,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:15,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:15,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:15,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 13:31:15,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 13:31:15,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:18,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:18,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:18,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:18,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 13:31:18,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 13:31:18,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:19,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:19,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:19,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:19,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 13:31:19,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 13:31:19,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:20,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:20,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:20,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:20,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 13:31:20,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 13:31:20,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:20,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:20,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:20,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:20,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:31:20,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:31:20,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:21,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:21,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:21,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:21,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:31:21,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:31:21,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:22,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:22,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:22,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:22,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:31:22,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:31:22,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:26,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:26,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:26,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:26,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 13:31:26,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 13:31:26,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:27,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:27,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:27,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:27,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 13:31:27,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 13:31:27,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:27,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:27,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:27,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:27,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:31:27,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:31:27,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:27,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:27,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:27,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:28,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:31:28,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:31:28,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:28,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:28,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:28,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:29,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:31:29,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:31:29,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:30,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:30,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:30,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:30,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:31:30,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:31:30,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:32,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:32,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:33,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:33,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:31:33,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:31:33,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:39,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:39,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:39,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:39,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:31:39,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:31:39,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:39,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:39,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:39,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:40,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 13:31:40,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 13:31:40,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:41,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:41,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:41,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:41,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:31:41,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:31:41,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:46,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:46,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:46,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:46,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:31:46,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:31:46,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:47,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:47,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:47,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:47,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:31:47,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:31:47,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:48,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:48,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:48,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:48,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:31:48,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:31:48,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:48,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:48,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:48,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:48,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:31:48,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:31:48,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:51,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:51,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:51,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:52,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:31:52,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:31:52,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:56,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:56,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:56,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:57,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:31:57,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:31:57,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:31:58,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:31:58,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:31:58,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:31:58,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 13:31:58,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 13:31:58,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:03,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:03,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:03,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:03,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:32:03,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:32:03,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:06,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:06,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:06,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:06,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 13:32:06,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 13:32:06,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:15,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:15,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:15,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:15,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 13:32:15,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 13:32:15,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:20,876 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:32:20,933 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:32:21,060 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.958 +2025-10-01 13:32:21,060 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.125s +2025-10-01 13:32:21,062 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.129s +2025-10-01 13:32:21,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:21,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:21,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:21,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:32:21,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:32:21,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:22,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:22,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:22,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:22,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:32:22,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:32:22,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:23,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:23,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:23,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:23,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:32:23,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:32:23,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:25,039 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:32:25,095 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:32:25,219 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.352 +2025-10-01 13:32:25,219 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.123s +2025-10-01 13:32:25,221 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.126s +2025-10-01 13:32:27,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:27,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:28,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:28,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:32:28,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:32:28,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:31,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:31,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:31,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:31,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:32:31,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:32:31,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:32,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:32,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:32,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:33,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:32:33,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:32:33,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:33,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:33,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:33,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:33,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 13:32:33,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 13:32:33,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:34,009 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:32:34,059 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:32:34,173 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.327 +2025-10-01 13:32:34,173 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.112s +2025-10-01 13:32:34,175 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.115s +2025-10-01 13:32:34,394 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:32:34,432 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:32:34,541 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.320 +2025-10-01 13:32:34,541 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.107s +2025-10-01 13:32:34,542 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-01 13:32:37,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:37,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:37,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:37,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:32:37,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:32:37,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:38,617 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:32:38,641 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:32:38,745 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.244 +2025-10-01 13:32:38,745 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 13:32:38,746 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 13:32:39,987 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:32:40,027 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:32:40,147 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.260 +2025-10-01 13:32:40,147 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.119s +2025-10-01 13:32:40,148 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.122s +2025-10-01 13:32:41,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:41,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:41,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:41,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:32:41,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:32:41,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:42,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:42,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:42,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:42,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:32:42,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:32:42,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:43,649 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:32:43,692 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:32:43,795 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.801 +2025-10-01 13:32:43,795 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 13:32:43,797 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 13:32:44,121 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:32:44,163 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(830, 827, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:32:44,269 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.558 +2025-10-01 13:32:44,270 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +2025-10-01 13:32:44,270 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-01 13:32:47,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:47,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:47,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:47,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:32:47,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:32:47,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:48,199 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:32:48,251 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:32:48,358 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.538 +2025-10-01 13:32:48,358 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +2025-10-01 13:32:48,360 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.109s +2025-10-01 13:32:50,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:50,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:50,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:51,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 13:32:51,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 13:32:51,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:51,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:51,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:51,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:51,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:32:51,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:32:51,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:52,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:52,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:52,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:52,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:32:52,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:32:52,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:32:56,552 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:32:56,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:32:56,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:32:56,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 13:32:56,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 13:32:56,858 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:32:59,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:32:59,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:32:59,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:32:59,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 13:32:59,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 13:32:59,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:03,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:03,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:03,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:03,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:33:03,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:33:03,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:04,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:04,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:05,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:05,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:33:05,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:33:05,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:06,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:06,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:06,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:07,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:33:07,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:33:07,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:10,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:10,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:10,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:10,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:33:10,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:33:10,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:12,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:12,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:12,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:12,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 13:33:12,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 13:33:12,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:13,252 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:33:13,278 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:33:13,377 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.401 +2025-10-01 13:33:13,377 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 13:33:13,377 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 13:33:16,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:16,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:16,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:16,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 13:33:16,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 13:33:16,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:17,143 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:33:17,177 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:33:17,254 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.345 +2025-10-01 13:33:17,255 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 13:33:17,255 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 13:33:17,630 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:33:17,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:33:17,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:33:17,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.322s +2025-10-01 13:33:17,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.322s (avg: 0.161s/image) +2025-10-01 13:33:17,954 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:33:19,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:19,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:19,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:19,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:33:19,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:33:19,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:21,333 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:33:21,374 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:33:21,461 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.539 +2025-10-01 13:33:21,461 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 13:33:21,461 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 13:33:22,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:22,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:22,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:22,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:33:22,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:33:22,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:25,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:25,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:25,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:26,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:33:26,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:33:26,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:27,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:27,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:27,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:27,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:33:27,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:33:27,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:30,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:30,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:30,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:30,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:33:30,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:33:30,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:32,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:32,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:32,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:33,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:33:33,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:33:33,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:34,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:34,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:34,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:34,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:33:34,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:33:34,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:38,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:38,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:38,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:38,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:33:38,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:33:38,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:39,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:39,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:39,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:39,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:33:39,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:33:39,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:43,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:43,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:43,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:43,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:33:43,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:33:43,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:47,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:47,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:47,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:47,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:33:47,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:33:47,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:49,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:49,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:49,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:49,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 13:33:49,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 13:33:49,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:49,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:49,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:49,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:49,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:33:49,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:33:49,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:50,502 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:33:50,527 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:33:50,618 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.786 +2025-10-01 13:33:50,618 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 13:33:50,618 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 13:33:51,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:51,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:51,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:51,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:33:51,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:33:51,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:54,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:54,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:54,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:54,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 13:33:54,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 13:33:54,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:54,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:54,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:54,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:54,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:33:54,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:33:54,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:55,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:55,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:55,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:55,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:33:55,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:33:55,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:33:58,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:33:58,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:33:58,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:33:58,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:33:58,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:33:58,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:00,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:00,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:00,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:00,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:34:00,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:34:00,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:00,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:00,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:00,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:00,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:34:00,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:34:00,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:04,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:04,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:04,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:04,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:34:04,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:34:04,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:05,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:05,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:05,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:05,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:34:05,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:34:05,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:05,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:05,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:05,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:06,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:34:06,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:34:06,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:07,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:07,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:07,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:07,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:34:07,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:34:07,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:08,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:08,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:08,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:08,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:34:08,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:34:08,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:10,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:10,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:10,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:11,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:34:11,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:34:11,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:12,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:12,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:12,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:12,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:34:12,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:34:12,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:14,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:14,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:14,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:14,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:34:14,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:34:14,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:15,681 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:34:15,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:34:15,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:34:15,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 13:34:15,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 13:34:15,973 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:34:20,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:20,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:20,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:20,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:34:20,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:34:20,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:21,329 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:34:21,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:34:21,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:34:21,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 13:34:21,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 13:34:21,625 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:34:22,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:22,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:22,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:22,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:34:22,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:34:22,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:26,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:26,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:27,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:27,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:34:27,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:34:27,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:27,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:27,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:27,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:27,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:34:27,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:34:27,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:29,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:29,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:29,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:29,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:34:29,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:34:29,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:32,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:32,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:32,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:32,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:34:32,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:34:32,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:32,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:32,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:32,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:32,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:34:32,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:34:32,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:34,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:34,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:34,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:34,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:34:34,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:34:34,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:38,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:38,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:38,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:38,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:34:38,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:34:38,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:43,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:43,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:43,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:43,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:34:43,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:34:43,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:44,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:44,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:44,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:44,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:34:44,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:34:44,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:44,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:44,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:44,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:44,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:34:44,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:34:44,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:44,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:44,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:45,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:45,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:34:45,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:34:45,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:49,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:49,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:49,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:49,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:34:49,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:34:49,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:50,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:50,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:50,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:51,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:34:51,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:34:51,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:51,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:51,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:51,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:52,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:34:52,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:34:52,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:34:57,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:34:57,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:34:57,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:34:57,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:34:57,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:34:57,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:02,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:02,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:02,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:02,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:35:02,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:35:02,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:03,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:03,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:03,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:03,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:35:03,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:35:03,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:08,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:08,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:08,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:08,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:35:08,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:35:08,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:09,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:09,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:09,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:09,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:35:09,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:35:09,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:13,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:13,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:13,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:13,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:35:13,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:35:13,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:14,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:35:14,398 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:35:14,496 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.349 +2025-10-01 13:35:14,496 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 13:35:14,498 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 13:35:15,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:15,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:15,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:15,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:35:15,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:35:15,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:17,872 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:35:17,913 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:35:18,034 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.374 +2025-10-01 13:35:18,035 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.120s +2025-10-01 13:35:18,036 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.123s +2025-10-01 13:35:21,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:21,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:21,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:21,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 13:35:21,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 13:35:21,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:21,792 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:35:21,833 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:35:21,943 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.293 +2025-10-01 13:35:21,944 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 13:35:21,945 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-01 13:35:24,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:24,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:24,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:24,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:35:24,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:35:24,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:25,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:25,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:25,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:25,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:35:25,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:35:25,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:32,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:32,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:32,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:32,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:35:32,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:35:32,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:46,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:46,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:46,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:46,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:35:46,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:35:46,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:48,468 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:35:48,494 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(875, 875, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:35:48,588 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.825 +2025-10-01 13:35:48,589 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 13:35:48,590 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 13:35:49,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:49,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:49,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:49,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:35:49,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:35:49,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:50,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:50,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:50,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:50,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:35:50,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:35:50,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:50,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:50,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:50,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:50,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:35:50,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:35:50,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:53,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:53,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:53,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:53,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:35:53,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:35:53,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:53,563 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:35:53,589 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:35:53,680 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.452 +2025-10-01 13:35:53,680 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 13:35:53,680 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 13:35:54,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:54,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:54,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:55,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:35:55,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:35:55,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:35:57,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:35:57,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:35:57,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:35:57,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:35:57,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:35:57,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:00,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:00,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:00,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:00,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:36:00,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:36:00,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:01,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:01,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:01,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:01,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:36:01,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:36:01,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:08,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:08,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:08,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:08,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:36:08,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:36:08,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:09,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:09,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:09,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:09,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:36:09,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:36:09,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:14,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:14,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:14,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:14,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:36:14,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:36:14,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:15,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:15,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:15,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:15,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:36:15,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:36:15,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:18,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:18,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:18,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:18,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:36:18,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:36:18,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:21,684 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:36:21,708 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:36:21,781 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.446 +2025-10-01 13:36:21,782 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 13:36:21,782 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 13:36:27,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:27,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:27,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:27,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 13:36:27,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 13:36:27,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:27,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:27,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:27,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:27,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:36:27,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:36:27,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:31,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:31,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:32,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:32,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:36:32,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:36:32,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:41,079 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:36:41,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:36:41,198 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.686 +2025-10-01 13:36:41,199 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 13:36:41,199 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 13:36:44,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:44,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:44,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:44,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 13:36:44,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 13:36:44,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:44,934 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:36:44,953 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:36:45,028 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.482 +2025-10-01 13:36:45,028 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 13:36:45,028 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 13:36:45,231 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:36:45,257 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:36:45,346 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=187.167 +2025-10-01 13:36:45,347 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 13:36:45,348 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 13:36:46,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:46,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:46,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:46,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:36:46,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:36:46,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:48,875 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:36:48,901 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:36:48,996 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.234 +2025-10-01 13:36:48,996 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 13:36:48,996 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 13:36:49,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:49,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:49,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:49,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:36:49,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:36:49,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:55,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:55,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:55,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:55,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:36:55,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:36:55,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:36:56,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:36:56,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:36:56,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:36:56,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:36:56,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:36:56,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:00,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:00,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:00,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:01,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:37:01,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:37:01,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:03,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:03,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:03,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:03,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:37:03,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:37:03,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:06,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:06,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:06,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:06,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:37:06,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:37:06,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:11,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:11,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:11,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:11,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:37:11,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:37:11,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:12,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:12,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:12,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:12,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:37:12,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:37:12,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:17,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:17,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:17,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:18,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:37:18,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:37:18,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:19,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:19,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:19,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:19,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:37:19,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:37:19,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:21,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:21,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:21,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:21,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:37:21,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:37:21,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:23,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:23,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:23,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:23,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:37:23,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:37:23,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:25,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:25,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:25,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:26,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:37:26,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:37:26,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:27,136 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:37:27,155 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:37:27,232 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.363 +2025-10-01 13:37:27,233 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 13:37:27,233 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 13:37:28,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:28,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:28,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:28,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:37:28,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:37:28,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:30,461 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:37:30,487 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:37:30,569 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.745 +2025-10-01 13:37:30,569 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 13:37:30,569 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 13:37:31,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:31,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:31,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:31,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:37:31,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:37:31,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:33,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:33,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:33,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:33,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:37:33,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:37:33,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:33,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:33,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:33,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:33,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:37:33,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:37:33,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:33,978 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:37:33,998 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:37:34,070 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.746 +2025-10-01 13:37:34,071 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 13:37:34,071 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 13:37:35,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:35,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:35,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:35,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 13:37:35,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 13:37:35,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:35,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:35,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:35,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:36,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:37:36,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:37:36,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:37,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:37,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:37,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:38,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:37:38,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:37:38,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:39,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:39,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:39,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:39,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 13:37:39,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 13:37:39,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:41,311 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:37:41,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:37:41,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:37:41,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 13:37:41,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 13:37:41,589 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:37:45,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:45,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:45,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:45,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:37:45,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:37:45,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:45,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:45,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:45,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:45,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:37:45,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:37:45,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:50,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:50,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:50,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:50,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:37:50,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:37:50,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:37:54,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:37:54,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:37:54,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:37:54,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:37:54,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:37:54,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:00,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:00,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:00,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:00,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:38:00,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:38:00,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:04,859 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:38:04,888 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:38:04,970 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.320 +2025-10-01 13:38:04,971 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 13:38:04,971 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:38:05,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:05,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:05,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:05,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:38:05,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:38:05,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:06,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:06,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:06,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:06,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:38:06,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:38:06,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:08,559 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:38:08,579 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(748, 748, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:38:08,652 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=237.500 +2025-10-01 13:38:08,652 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 13:38:08,653 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 13:38:10,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:10,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:10,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:10,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:38:10,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:38:10,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:11,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:11,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:11,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:11,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:38:11,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:38:11,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:12,574 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:38:12,601 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:38:12,680 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.311 +2025-10-01 13:38:12,680 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 13:38:12,681 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 13:38:14,276 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:38:14,301 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:38:14,381 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.237 +2025-10-01 13:38:14,381 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 13:38:14,381 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 13:38:15,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:15,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:15,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:16,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 13:38:16,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 13:38:16,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:16,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:16,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:16,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:17,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:38:17,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:38:17,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:17,747 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:38:17,769 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:38:17,852 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.116 +2025-10-01 13:38:17,852 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:38:17,853 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:38:21,208 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:38:21,229 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:38:21,310 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=170.134 +2025-10-01 13:38:21,310 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 13:38:21,310 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 13:38:22,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:22,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:22,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:22,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:38:22,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:38:22,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:26,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:26,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:26,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:26,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:38:26,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:38:26,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:27,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:27,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:27,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:27,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 13:38:27,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 13:38:27,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:28,138 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:38:28,162 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:38:28,239 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.709 +2025-10-01 13:38:28,240 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 13:38:28,240 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 13:38:28,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:28,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:28,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:29,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:38:29,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:38:29,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:31,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:31,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:31,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:31,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:38:31,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:38:31,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:33,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:33,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:33,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:33,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:38:33,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:38:33,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:37,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:37,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:37,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:37,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:38:37,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:38:37,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:38,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:38,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:38,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:38,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:38:38,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:38:38,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:39,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:39,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:39,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:40,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:38:40,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:38:40,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:41,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:41,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:41,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:42,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:38:42,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:38:42,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:42,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:42,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:42,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:42,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:38:42,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:38:42,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:47,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:47,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:47,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:47,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:38:47,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:38:47,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:49,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:49,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:49,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:49,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:38:49,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:38:49,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:49,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:49,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:49,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:49,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:38:49,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:38:49,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:51,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:51,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:51,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:51,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:38:51,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:38:51,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:38:57,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:38:57,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:38:57,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:38:57,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:38:57,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:38:57,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:01,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:01,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:01,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:01,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:39:01,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:39:01,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:04,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:04,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:04,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:04,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:39:04,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:39:04,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:07,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:07,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:07,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:07,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:39:07,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:39:07,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:09,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:09,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:09,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:09,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 13:39:09,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 13:39:09,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:09,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:09,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:09,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:09,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:39:09,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:39:09,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:16,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:16,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:16,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:16,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:39:16,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:39:16,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:19,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:19,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:19,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:19,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:39:19,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:39:19,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:21,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:21,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:21,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:21,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:39:21,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:39:21,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:21,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:21,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:21,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:21,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:39:21,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:39:21,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:25,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:25,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:25,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:25,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:39:25,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:39:25,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:29,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:29,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:29,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:29,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:39:29,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:39:29,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:32,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:32,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:32,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:32,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:39:32,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:39:32,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:33,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:33,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:33,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:33,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:39:33,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:39:33,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:36,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:36,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:36,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:36,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:39:36,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:39:36,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:39,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:39,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:39,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:39,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 13:39:39,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 13:39:39,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:40,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:40,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:40,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:40,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:39:40,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:39:40,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:48,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:48,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:48,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:48,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:39:48,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:39:48,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:51,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:51,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:51,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:51,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:39:51,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:39:51,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:53,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:39:53,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:39:53,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:39:53,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 13:39:53,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 13:39:53,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:39:59,978 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:40:00,010 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:40:00,111 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.661 +2025-10-01 13:40:00,111 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 13:40:00,111 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 13:40:03,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:03,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:04,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:04,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:40:04,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:40:04,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:08,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:08,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:08,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:08,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 13:40:08,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 13:40:08,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:12,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:12,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:12,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:12,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:40:12,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:40:12,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:23,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:23,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:23,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:23,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:40:23,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:40:23,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:26,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:40:26,453 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:40:26,547 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.959 +2025-10-01 13:40:26,547 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 13:40:26,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 13:40:28,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:28,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:28,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:28,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:40:28,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:40:28,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:29,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:29,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:29,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:29,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:40:29,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:40:29,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:30,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:30,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:30,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:30,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:40:30,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:40:30,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:30,229 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:40:30,256 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:40:30,344 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.295 +2025-10-01 13:40:30,344 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 13:40:30,345 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 13:40:33,989 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:40:34,016 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:40:34,112 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.895 +2025-10-01 13:40:34,112 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 13:40:34,113 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 13:40:34,708 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:40:34,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:40:34,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:40:35,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 13:40:35,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 13:40:35,005 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:40:38,511 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:40:38,542 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:40:38,640 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.972 +2025-10-01 13:40:38,641 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 13:40:38,642 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 13:40:38,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:38,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:38,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:39,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:40:39,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:40:39,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:39,116 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:40:39,131 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:40:39,215 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.663 +2025-10-01 13:40:39,215 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 13:40:39,215 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 13:40:40,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:40,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:40,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:40,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:40:40,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:40:40,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:40,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:40,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:40,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:41,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:40:41,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:40:41,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:41,911 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:40:41,934 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:40:42,021 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.772 +2025-10-01 13:40:42,021 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 13:40:42,023 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 13:40:44,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:44,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:44,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:44,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:40:44,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:40:44,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:45,435 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:40:45,462 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:40:45,558 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.282 +2025-10-01 13:40:45,558 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 13:40:45,559 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 13:40:45,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:45,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:46,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:46,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:40:46,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:40:46,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:47,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:47,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:47,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:47,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:40:47,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:40:47,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:50,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:50,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:50,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:50,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:40:50,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:40:50,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:52,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:52,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:52,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:52,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:40:52,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:40:52,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:54,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:54,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:54,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:54,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:40:54,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:40:54,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:40:57,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:40:57,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:40:57,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:40:57,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:40:57,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:40:57,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:00,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:00,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:00,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:01,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 13:41:01,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 13:41:01,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:01,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:01,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:01,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:01,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 13:41:01,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 13:41:01,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:03,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:03,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:03,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:03,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:41:03,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:41:03,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:05,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:05,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:05,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:05,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 13:41:05,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 13:41:05,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:07,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:07,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:07,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:08,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:41:08,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:41:08,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:10,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:10,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:10,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:10,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:41:10,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:41:10,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:12,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:12,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:12,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:13,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:41:13,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:41:13,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:14,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:14,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:14,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:14,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:41:14,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:41:14,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:15,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:15,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:15,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:15,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 13:41:15,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 13:41:15,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:15,870 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:41:15,907 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:41:15,993 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.663 +2025-10-01 13:41:15,993 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 13:41:15,993 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 13:41:16,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:16,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:16,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:17,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:41:17,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:41:17,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:19,411 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:41:19,454 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:41:19,550 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.984 +2025-10-01 13:41:19,550 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 13:41:19,552 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 13:41:20,383 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:41:20,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:41:20,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:41:20,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.324s +2025-10-01 13:41:20,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.324s (avg: 0.162s/image) +2025-10-01 13:41:20,708 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:41:22,901 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:41:22,928 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:41:23,018 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.868 +2025-10-01 13:41:23,018 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 13:41:23,018 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 13:41:26,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:26,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:26,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:26,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:41:26,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:41:26,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:29,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:29,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:29,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:29,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:41:29,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:41:29,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:29,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:29,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:29,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:30,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 13:41:30,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 13:41:30,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:32,919 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:41:32,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:41:32,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:41:33,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 13:41:33,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 13:41:33,198 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:41:38,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:38,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:38,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:38,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:41:38,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:41:38,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:39,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:39,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:39,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:39,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:41:39,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:41:39,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:40,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:40,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:40,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:40,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 13:41:40,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 13:41:40,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:41,130 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:41:41,147 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:41:41,215 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.847 +2025-10-01 13:41:41,215 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 13:41:41,215 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 13:41:41,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:41,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:41,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:41,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:41:41,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:41:41,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:44,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:44,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:44,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:45,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:41:45,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:41:45,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:47,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:47,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:47,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:47,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:41:47,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:41:47,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:49,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:49,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:49,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:49,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:41:49,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:41:49,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:49,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:49,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:49,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:49,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:41:49,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:41:49,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:51,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:51,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:51,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:51,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 13:41:51,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 13:41:51,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:41:54,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:41:54,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:41:54,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:41:54,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:41:54,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:41:54,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:02,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:02,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:02,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:02,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:42:02,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:42:02,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:04,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:04,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:04,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:04,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:42:04,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:42:04,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:07,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:07,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:07,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:07,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:42:07,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:42:07,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:10,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:10,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:10,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:11,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:42:11,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:42:11,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:12,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:12,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:12,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:12,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:42:12,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:42:12,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:12,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:12,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:13,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:13,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:42:13,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:42:13,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:13,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:13,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:13,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:13,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:42:13,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:42:13,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:17,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:17,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:17,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:17,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:42:17,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:42:17,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:18,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:18,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:18,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:18,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:42:18,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:42:18,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:18,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:18,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:18,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:19,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:42:19,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:42:19,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:21,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:21,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:21,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:21,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:42:21,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:42:21,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:25,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:25,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:25,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:26,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:42:26,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:42:26,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:27,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:27,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:28,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:28,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:42:28,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:42:28,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:31,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:31,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:31,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:31,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:42:31,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:42:31,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:32,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:32,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:32,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:32,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:42:32,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:42:32,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:36,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:36,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:36,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:36,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:42:36,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:42:36,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:38,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:38,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:38,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:38,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:42:38,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:42:38,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:43,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:43,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:43,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:43,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:42:43,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:42:43,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:45,600 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:42:45,626 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:42:45,725 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.711 +2025-10-01 13:42:45,726 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 13:42:45,728 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 13:42:46,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:46,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:46,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:47,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:42:47,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:42:47,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:48,227 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:42:48,249 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:42:48,341 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.935 +2025-10-01 13:42:48,342 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 13:42:48,342 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 13:42:49,738 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:42:49,763 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:42:49,854 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.987 +2025-10-01 13:42:49,855 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 13:42:49,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 13:42:51,923 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:42:51,954 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:42:52,048 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.940 +2025-10-01 13:42:52,048 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 13:42:52,048 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 13:42:52,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:52,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:52,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:53,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:42:53,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:42:53,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:53,591 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:42:53,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:42:53,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.356 +2025-10-01 13:42:53,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 13:42:53,707 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 13:42:54,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:42:54,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:42:54,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:42:54,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:42:54,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:42:54,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:42:55,139 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:42:55,157 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:42:55,233 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.305 +2025-10-01 13:42:55,234 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 13:42:55,234 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 13:42:56,997 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:42:57,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:42:57,100 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.056 +2025-10-01 13:42:57,100 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 13:42:57,100 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 13:43:00,561 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:43:00,584 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:43:00,663 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.258 +2025-10-01 13:43:00,663 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 13:43:00,663 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 13:43:01,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:01,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:01,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:01,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:43:01,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:43:01,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:03,967 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:43:04,010 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:43:04,116 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.289 +2025-10-01 13:43:04,116 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 13:43:04,117 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-01 13:43:07,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:07,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:07,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:07,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:43:07,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:43:07,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:08,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:08,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:08,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:08,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:43:08,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:43:08,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:12,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:12,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:12,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:13,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:43:13,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:43:13,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:13,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:13,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:13,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:13,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:43:13,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:43:13,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:18,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:18,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:18,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:18,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:43:18,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:43:18,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:20,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:20,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:20,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:20,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:43:20,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:43:20,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:22,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:22,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:22,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:22,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:43:22,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:43:22,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:23,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:23,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:23,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:23,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:43:23,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:43:23,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:23,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:23,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:23,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:23,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:43:23,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:43:23,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:28,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:28,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:28,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:28,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:43:28,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:43:28,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:29,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:29,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:29,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:29,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:43:29,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:43:29,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:34,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:34,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:34,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:34,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:43:34,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:43:34,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:34,758 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:43:34,782 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:43:34,863 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.770 +2025-10-01 13:43:34,863 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 13:43:34,863 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 13:43:34,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:34,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:34,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:35,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:43:35,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:43:35,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:35,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:35,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:35,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:35,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:43:35,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:43:35,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:38,248 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:43:38,267 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(798, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:43:38,347 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.466 +2025-10-01 13:43:38,348 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 13:43:38,348 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 13:43:38,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:38,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:38,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:38,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:43:38,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:43:38,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:42,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:42,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:42,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:42,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 13:43:42,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 13:43:42,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:42,337 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:43:42,355 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(795, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:43:42,452 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.039 +2025-10-01 13:43:42,453 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 13:43:42,453 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 13:43:44,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:44,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:44,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:44,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:43:44,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:43:44,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:45,668 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:43:45,687 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(805, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:43:45,781 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.653 +2025-10-01 13:43:45,781 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 13:43:45,781 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 13:43:46,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:46,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:46,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:46,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:43:46,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:43:46,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:46,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:46,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:46,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:46,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:43:46,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:43:46,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:51,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:51,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:51,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:51,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 13:43:51,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 13:43:51,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:53,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:53,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:53,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:54,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:43:54,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:43:54,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:43:55,278 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:43:55,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:43:55,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:43:55,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 13:43:55,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 13:43:55,582 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:43:58,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:43:58,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:43:58,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:43:58,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:43:58,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:43:58,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:00,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:00,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:00,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:00,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:44:00,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:44:00,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:03,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:03,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:03,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:03,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:44:03,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:44:03,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:04,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:04,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:04,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:04,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:44:04,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:44:04,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:04,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:04,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:04,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:04,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:44:04,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:44:04,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:05,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:05,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:05,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:05,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 13:44:05,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 13:44:05,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:08,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:08,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:08,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:08,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 13:44:08,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 13:44:08,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:08,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:08,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:08,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:09,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:44:09,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:44:09,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:11,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:11,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:11,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:11,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.204s +2025-10-01 13:44:11,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image) +2025-10-01 13:44:11,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:11,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:11,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:11,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:11,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:44:11,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:44:11,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:12,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:12,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:12,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:12,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:44:12,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:44:12,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:14,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:14,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:14,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:14,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 13:44:14,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 13:44:14,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:15,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:15,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:15,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:15,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:44:15,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:44:15,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:16,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:16,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:17,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:17,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:44:17,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:44:17,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:20,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:20,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:20,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:20,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:44:20,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:44:20,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:21,147 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:44:21,172 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:44:21,262 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.528 +2025-10-01 13:44:21,262 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 13:44:21,264 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 13:44:23,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:23,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:23,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:23,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:44:23,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:44:23,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:25,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:25,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:25,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:25,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:44:25,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:44:25,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:31,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:31,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:31,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:31,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:44:31,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:44:31,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:33,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:33,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:33,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:33,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:44:33,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:44:33,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:37,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:37,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:37,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:37,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:44:37,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:44:37,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:37,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:37,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:37,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:38,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:44:38,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:44:38,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:42,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:42,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:42,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:42,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:44:42,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:44:42,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:45,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:45,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:45,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:45,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 13:44:45,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 13:44:45,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:48,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:48,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:48,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:49,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:44:49,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:44:49,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:50,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:50,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:50,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:50,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 13:44:50,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 13:44:50,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:54,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:54,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:54,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:54,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:44:54,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:44:54,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:54,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:54,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:54,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:55,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:44:55,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:44:55,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:55,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:55,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:55,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:55,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:44:55,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:44:55,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:56,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:56,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:56,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:44:56,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:44:56,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:44:56,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:44:59,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:44:59,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:44:59,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:00,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:45:00,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:45:00,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:00,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:00,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:00,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:00,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:45:00,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:45:00,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:03,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:03,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:03,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:03,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:45:03,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:45:03,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:06,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:06,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:06,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:06,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:45:06,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:45:06,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:06,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:06,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:06,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:06,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:45:06,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:45:06,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:07,000 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:45:07,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:45:07,116 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=220.594 +2025-10-01 13:45:07,116 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 13:45:07,116 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 13:45:07,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:07,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:07,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:07,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:45:07,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:45:07,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:08,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:08,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:08,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:08,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:45:08,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:45:08,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:11,045 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:45:11,068 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:45:11,149 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.790 +2025-10-01 13:45:11,149 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 13:45:11,150 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 13:45:13,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:13,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:13,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:13,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:45:13,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:45:13,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:14,403 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:45:14,432 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:45:14,514 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.570 +2025-10-01 13:45:14,514 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 13:45:14,514 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:45:14,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:14,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:14,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:15,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:45:15,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:45:15,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:16,625 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:45:16,645 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:45:16,723 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.158 +2025-10-01 13:45:16,724 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 13:45:16,724 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 13:45:19,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:19,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:19,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:19,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:45:19,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:45:19,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:21,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:21,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:21,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:21,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:45:21,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:45:21,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:22,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:22,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:22,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:22,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:45:22,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:45:22,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:24,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:24,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:24,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:25,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:45:25,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:45:25,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:32,440 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:45:32,459 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:45:32,562 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.297 +2025-10-01 13:45:32,562 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 13:45:32,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 13:45:35,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:35,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:35,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:35,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:45:35,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:45:35,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:35,940 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:45:35,951 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(674, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:45:36,021 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.565 +2025-10-01 13:45:36,022 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 13:45:36,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 13:45:39,150 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:45:39,171 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(676, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:45:39,249 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.385 +2025-10-01 13:45:39,249 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 13:45:39,249 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 13:45:39,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:39,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:39,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:39,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:45:39,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:45:39,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:40,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:40,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:40,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:40,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-01 13:45:40,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-01 13:45:40,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:43,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:43,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:43,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:43,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:45:43,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:45:43,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:45,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:45,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:45,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:45,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:45:45,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:45:45,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:46,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:46,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:46,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:47,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:45:47,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:45:47,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:51,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:51,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:51,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:51,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:45:51,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:45:51,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:52,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:52,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:52,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:53,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 13:45:53,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 13:45:53,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:57,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:57,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:57,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:57,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:45:57,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:45:57,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:45:59,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:45:59,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:45:59,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:45:59,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 13:45:59,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 13:45:59,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:00,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:00,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:00,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:00,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:46:00,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:46:00,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:02,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:02,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:02,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:02,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:46:02,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:46:02,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:02,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:02,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:02,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:02,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 13:46:02,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 13:46:02,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:03,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:03,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:03,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:03,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:46:03,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:46:03,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:06,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:06,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:06,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:06,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:46:06,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:46:06,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:07,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:07,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:08,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:08,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:46:08,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:46:08,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:11,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:11,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:11,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:11,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:46:11,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:46:11,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:13,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:13,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:13,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:13,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:46:13,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:46:13,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:16,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:16,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:16,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:16,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:46:16,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:46:16,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:18,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:18,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:18,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:18,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:46:18,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:46:18,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:18,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:18,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:18,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:19,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:46:19,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:46:19,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:20,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:20,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:20,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:20,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:46:20,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:46:20,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:22,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:22,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:22,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:22,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:46:22,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:46:22,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:35,721 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:46:35,753 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:46:35,835 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.334 +2025-10-01 13:46:35,836 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:46:35,836 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:46:36,706 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:46:36,732 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:46:36,815 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.116 +2025-10-01 13:46:36,815 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:46:36,815 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:46:44,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:44,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:44,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:44,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:46:44,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:46:44,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:53,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:46:53,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:46:53,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:46:53,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:46:53,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:46:53,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:46:53,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:46:53,898 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:46:54,008 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.832 +2025-10-01 13:46:54,009 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 13:46:54,010 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-01 13:46:57,559 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:46:57,602 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 747, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:46:57,719 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.030 +2025-10-01 13:46:57,720 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.116s +2025-10-01 13:46:57,721 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.118s +2025-10-01 13:47:01,257 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:47:01,287 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:47:01,409 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.247 +2025-10-01 13:47:01,410 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.121s +2025-10-01 13:47:01,411 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.124s +2025-10-01 13:47:19,304 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:47:19,341 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:47:19,438 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.659 +2025-10-01 13:47:19,439 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 13:47:19,439 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 13:47:20,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:47:20,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:47:20,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:47:21,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:47:21,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:47:21,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:47:21,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:47:21,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:47:21,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:47:21,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:47:21,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:47:21,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:47:24,498 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:47:24,518 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:47:24,598 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.215 +2025-10-01 13:47:24,599 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 13:47:24,599 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 13:47:27,526 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:47:27,546 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:47:27,625 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=179.769 +2025-10-01 13:47:27,625 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 13:47:27,626 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 13:47:30,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:47:30,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:47:30,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:47:30,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:47:30,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:47:30,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:47:30,883 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:47:30,906 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:47:30,986 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.999 +2025-10-01 13:47:30,986 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 13:47:30,986 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 13:47:31,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:47:31,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:47:31,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:47:31,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:47:31,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:47:31,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:47:33,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:47:33,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:47:33,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:47:34,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:47:34,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:47:34,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:47:37,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:47:37,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:47:37,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:47:37,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:47:37,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:47:37,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:47:39,955 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:47:39,979 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:47:40,069 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.303 +2025-10-01 13:47:40,069 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 13:47:40,070 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 13:47:40,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:47:40,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:47:40,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:47:40,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:47:40,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:47:40,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:47:44,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:47:44,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:47:44,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:47:44,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:47:44,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:47:44,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:47:45,902 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:47:45,925 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:47:46,023 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.589 +2025-10-01 13:47:46,024 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 13:47:46,025 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 13:47:50,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:47:50,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:47:50,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:47:50,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:47:50,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:47:50,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:47:51,921 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:47:51,952 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:47:52,062 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.804 +2025-10-01 13:47:52,062 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 13:47:52,063 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.111s +2025-10-01 13:47:54,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:47:54,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:47:54,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:47:54,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:47:54,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:47:54,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:47:55,228 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:47:55,253 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:47:55,330 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.777 +2025-10-01 13:47:55,330 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 13:47:55,330 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 13:47:58,861 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:47:58,881 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:47:58,958 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.828 +2025-10-01 13:47:58,959 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 13:47:58,959 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 13:47:59,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:47:59,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:47:59,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:47:59,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:47:59,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:47:59,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:01,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:01,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:01,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:01,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:48:01,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:48:01,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:02,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:02,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:03,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:03,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:48:03,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:48:03,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:05,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:05,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:05,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:05,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 13:48:05,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 13:48:05,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:08,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:08,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:08,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:08,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:48:08,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:48:08,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:09,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:09,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:09,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:09,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:48:09,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:48:09,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:09,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:09,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:09,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:09,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:48:09,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:48:09,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:14,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:14,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:14,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:14,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:48:14,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:48:14,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:14,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:14,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:14,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:14,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:48:14,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:48:14,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:15,506 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:48:15,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:48:15,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:48:15,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 13:48:15,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 13:48:15,797 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:48:19,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:19,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:19,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:19,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:48:19,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:48:19,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:19,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:19,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:19,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:20,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:48:20,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:48:20,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:21,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:21,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:21,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:22,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:48:22,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:48:22,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:23,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:23,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:23,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:23,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:48:23,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:48:23,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:24,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:24,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:24,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:24,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:48:24,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:48:24,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:26,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:26,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:26,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:27,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:48:27,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:48:27,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:27,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:27,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:27,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:27,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:48:27,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:48:27,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:29,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:29,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:29,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:30,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:48:30,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:48:30,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:30,440 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:48:30,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:48:30,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:48:30,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 13:48:30,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 13:48:30,716 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:48:31,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:31,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:31,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:31,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:48:31,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:48:31,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:33,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:33,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:33,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:34,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:48:34,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:48:34,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:34,289 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:48:34,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:48:34,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:48:34,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 13:48:34,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 13:48:34,565 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:48:36,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:36,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:36,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:36,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 13:48:36,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 13:48:36,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:37,108 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:48:37,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:48:37,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:48:37,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +2025-10-01 13:48:37,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +2025-10-01 13:48:37,369 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:48:38,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:38,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:38,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:38,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:48:38,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:48:38,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:38,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:38,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:38,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:39,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:48:39,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:48:39,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:41,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:41,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:41,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:41,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:48:41,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:48:41,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:45,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:45,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:45,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:45,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:48:45,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:48:45,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:45,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:45,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:45,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:46,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 13:48:46,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 13:48:46,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:48,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:48,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:49,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:49,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:48:49,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:48:49,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:48:53,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:48:53,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:48:53,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:48:53,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:48:53,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:48:53,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:03,340 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:49:03,366 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:49:03,450 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.415 +2025-10-01 13:49:03,450 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 13:49:03,451 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 13:49:05,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:05,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:05,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:05,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:49:05,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:49:05,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:05,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:05,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:05,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:06,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:49:06,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:49:06,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:08,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:08,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:08,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:08,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 13:49:08,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 13:49:08,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:11,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:11,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:11,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:11,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:49:11,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:49:11,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:17,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:17,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:17,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:17,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:49:17,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:49:17,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:17,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:17,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:17,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:18,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:49:18,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:49:18,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:19,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:19,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:19,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:19,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:49:19,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:49:19,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:26,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:26,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:26,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:26,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:49:26,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:49:26,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:29,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:29,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:29,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:29,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:49:29,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:49:29,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:30,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:30,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:30,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:30,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:49:30,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:49:30,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:35,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:35,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:35,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:36,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:49:36,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:49:36,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:41,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:41,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:41,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:41,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:49:41,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:49:41,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:49:52,711 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:49:52,754 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:49:52,855 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.595 +2025-10-01 13:49:52,855 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 13:49:52,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 13:49:57,124 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:49:57,161 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:49:57,241 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.200 +2025-10-01 13:49:57,241 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 13:49:57,241 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 13:49:57,742 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:49:57,786 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:49:57,875 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.505 +2025-10-01 13:49:57,875 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 13:49:57,877 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 13:49:59,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:49:59,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:49:59,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:49:59,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:49:59,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:49:59,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:00,400 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:50:00,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:50:00,519 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.193 +2025-10-01 13:50:00,519 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 13:50:00,519 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 13:50:07,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:07,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:08,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:08,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:50:08,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:50:08,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:09,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:09,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:09,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:10,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:50:10,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:50:10,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:12,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:12,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:12,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:13,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:50:13,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:50:13,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:16,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:16,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:16,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:16,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:50:16,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:50:16,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:18,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:18,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:18,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:18,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:50:18,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:50:18,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:22,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:22,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:22,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:22,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:50:22,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:50:22,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:23,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:23,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:23,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:23,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:50:23,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:50:23,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:23,813 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:50:23,838 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:50:23,914 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.224 +2025-10-01 13:50:23,914 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 13:50:23,915 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 13:50:27,733 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:50:27,766 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:50:27,846 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.168 +2025-10-01 13:50:27,846 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 13:50:27,846 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 13:50:29,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:29,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:29,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:29,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 13:50:29,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 13:50:29,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:31,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:31,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:31,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:31,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 13:50:31,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 13:50:31,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:31,791 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:50:31,828 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:50:31,906 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.690 +2025-10-01 13:50:31,906 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 13:50:31,906 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 13:50:36,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:36,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:36,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:36,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:50:36,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:50:36,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:37,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:37,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:37,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:37,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:50:37,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:50:37,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:38,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:38,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:38,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:38,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:50:38,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:50:38,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:43,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:43,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:43,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:43,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:50:43,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:50:43,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:44,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:44,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:44,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:44,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:50:44,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:50:44,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:50,924 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:50:50,950 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:50:51,044 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.961 +2025-10-01 13:50:51,044 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 13:50:51,045 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 13:50:54,425 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:50:54,452 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:50:54,554 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.232 +2025-10-01 13:50:54,554 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 13:50:54,555 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 13:50:56,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:50:56,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:50:56,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:50:56,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:50:56,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:50:56,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:50:58,195 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:50:58,217 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:50:58,382 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.956 +2025-10-01 13:50:58,382 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.164s +2025-10-01 13:50:58,383 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.166s +2025-10-01 13:51:03,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:03,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:03,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:03,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:51:03,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:51:03,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:04,941 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:51:04,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:51:04,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:51:05,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 13:51:05,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 13:51:05,224 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:51:06,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:06,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:06,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:06,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:51:06,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:51:06,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:08,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:08,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:08,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:08,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:51:08,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:51:08,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:09,541 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:51:09,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:51:09,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:51:09,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.322s +2025-10-01 13:51:09,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.322s (avg: 0.161s/image) +2025-10-01 13:51:09,865 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:51:10,938 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:51:10,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:51:11,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:51:11,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 13:51:11,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 13:51:11,234 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:51:11,413 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:51:11,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(634, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:51:11,508 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.822 +2025-10-01 13:51:11,508 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:51:11,508 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:51:12,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:12,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:12,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:12,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:51:12,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:51:12,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:15,520 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:51:15,550 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(667, 667, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:51:15,627 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.378 +2025-10-01 13:51:15,627 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 13:51:15,627 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 13:51:16,123 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:51:16,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:51:16,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:51:16,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 13:51:16,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 13:51:16,402 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:51:16,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:16,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:16,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:16,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:51:16,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:51:16,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:18,647 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:51:18,672 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:51:18,782 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.923 +2025-10-01 13:51:18,783 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 13:51:18,783 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.111s +2025-10-01 13:51:19,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:19,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:19,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:20,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:51:20,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:51:20,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:25,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:25,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:25,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:25,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:51:25,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:51:25,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:25,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:25,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:25,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:25,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:51:25,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:51:25,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:27,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:27,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:27,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:27,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:51:27,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:51:27,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:33,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:33,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:34,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:34,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:51:34,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:51:34,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:34,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:34,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:34,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:35,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:51:35,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:51:35,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:36,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:36,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:36,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:36,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:51:36,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:51:36,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:40,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:40,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:40,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:40,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:51:40,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:51:40,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:46,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:46,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:46,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:46,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:51:46,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:51:46,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:50,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:50,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:50,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:50,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:51:50,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:51:50,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:54,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:54,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:54,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:54,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:51:54,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:51:54,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:51:55,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:51:55,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:51:55,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:51:55,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:51:55,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:51:55,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:02,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:02,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:02,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:03,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:52:03,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:52:03,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:03,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:03,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:03,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:03,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:52:03,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:52:03,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:04,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:04,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:04,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:04,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:52:04,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:52:04,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:07,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:07,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:07,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:08,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:52:08,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:52:08,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:09,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:09,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:09,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:09,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:52:09,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:52:09,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:10,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:10,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:10,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:10,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:52:10,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:52:10,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:15,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:15,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:15,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:15,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:52:15,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:52:15,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:15,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:15,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:15,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:15,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:52:15,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:52:15,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:16,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:16,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:16,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:16,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:52:16,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:52:16,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:16,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:16,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:16,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:16,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:52:16,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:52:16,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:20,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:20,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:20,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:20,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:52:20,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:52:20,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:20,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:20,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:20,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:20,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:52:20,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:52:20,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:26,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:26,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:26,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:26,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:52:26,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:52:26,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:27,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:27,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:27,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:27,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:52:27,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:52:27,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:29,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:29,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:29,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:29,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 13:52:29,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 13:52:29,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:30,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:30,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:30,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:30,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:52:30,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:52:30,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:32,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:32,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:32,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:32,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:52:32,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:52:32,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:34,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:34,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:35,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:35,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:52:35,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:52:35,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:39,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:39,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:39,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:39,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 13:52:39,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 13:52:39,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:40,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:40,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:40,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:40,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:52:40,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:52:40,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:40,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:40,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:40,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:40,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:52:40,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:52:40,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:45,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:45,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:45,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:45,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:52:45,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:52:45,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:49,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:49,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:49,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:50,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:52:50,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:52:50,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:52,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:52,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:52,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:52,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:52:52,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:52:52,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:54,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:54,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:54,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:54,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:52:54,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:52:54,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:56,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:56,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:56,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:56,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:52:56,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:52:56,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:56,632 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:52:56,657 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:52:56,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.242 +2025-10-01 13:52:56,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 13:52:56,750 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 13:52:59,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:59,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:59,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:59,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:52:59,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:52:59,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:52:59,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:52:59,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:52:59,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:52:59,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:52:59,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:52:59,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:00,271 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:53:00,303 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:53:00,392 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=171.638 +2025-10-01 13:53:00,392 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 13:53:00,393 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 13:53:04,376 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:53:04,402 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:53:04,495 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.434 +2025-10-01 13:53:04,495 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 13:53:04,496 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 13:53:04,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:04,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:04,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:04,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:53:04,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:53:04,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:05,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:05,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:05,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:05,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:53:05,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:53:05,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:08,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:08,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:08,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:08,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 13:53:08,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 13:53:08,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:10,416 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:53:10,463 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:53:10,564 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=167.001 +2025-10-01 13:53:10,564 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 13:53:10,566 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 13:53:12,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:12,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:12,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:12,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 13:53:12,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 13:53:12,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:12,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:12,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:12,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:13,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:53:13,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:53:13,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:15,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:15,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:15,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:15,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:53:15,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:53:15,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:17,285 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:53:17,318 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:53:17,444 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.352 +2025-10-01 13:53:17,444 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.126s +2025-10-01 13:53:17,444 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.127s +2025-10-01 13:53:18,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:18,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:18,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:18,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:53:18,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:53:18,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:20,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:20,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:20,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:20,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 13:53:20,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 13:53:20,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:20,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:20,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:20,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:20,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 13:53:20,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 13:53:20,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:20,991 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:53:21,012 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:53:21,089 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.785 +2025-10-01 13:53:21,090 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 13:53:21,090 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 13:53:23,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:23,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:23,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:23,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:53:23,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:53:23,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:24,554 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:53:24,574 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:53:24,658 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.303 +2025-10-01 13:53:24,658 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 13:53:24,658 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 13:53:24,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:24,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:25,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:25,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:53:25,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:53:25,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:26,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:26,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:26,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:26,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:53:26,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:53:26,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:30,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:30,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:30,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:31,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:53:31,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:53:31,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:32,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:32,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:32,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:32,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:53:32,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:53:32,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:32,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:32,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:32,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:32,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:53:32,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:53:32,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:34,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:34,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:34,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:34,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:53:34,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:53:34,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:36,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:36,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:36,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:36,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 13:53:36,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 13:53:36,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:39,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:39,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:39,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:39,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:53:39,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:53:39,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:40,126 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:53:40,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:53:40,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:53:40,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +2025-10-01 13:53:40,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +2025-10-01 13:53:40,391 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:53:44,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:44,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:44,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:45,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 13:53:45,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 13:53:45,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:45,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:45,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:45,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:45,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:53:45,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:53:45,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:46,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:46,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:46,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:46,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:53:46,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:53:46,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:47,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:47,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:47,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:48,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:53:48,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:53:48,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:50,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:50,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:50,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:50,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:53:50,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:53:50,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:50,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:50,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:50,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:50,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:53:50,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:53:50,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:52,299 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:53:52,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:53:52,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:53:52,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 13:53:52,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 13:53:52,582 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:53:54,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:54,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:54,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:54,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:53:54,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:53:54,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:56,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:56,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:56,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:56,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:53:56,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:53:56,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:57,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:57,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:57,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:57,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:53:57,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:53:57,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:53:58,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:53:58,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:53:58,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:53:58,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:53:58,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:53:58,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:00,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:00,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:00,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:00,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:54:00,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:54:00,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:03,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:03,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:03,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:03,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:54:03,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:54:03,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:04,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:04,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:04,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:04,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:54:04,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:54:04,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:05,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:05,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:05,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:05,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:54:05,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:54:05,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:08,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:08,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:08,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:08,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:54:08,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:54:08,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:08,737 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:54:08,759 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:54:08,841 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.735 +2025-10-01 13:54:08,841 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 13:54:08,841 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 13:54:10,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:10,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:10,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:10,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:54:10,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:54:10,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:11,397 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:54:11,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:54:11,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:54:11,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 13:54:11,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-01 13:54:11,699 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:54:12,117 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:54:12,135 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:54:12,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.735 +2025-10-01 13:54:12,320 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.183s +2025-10-01 13:54:12,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.185s +2025-10-01 13:54:15,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:15,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:15,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:15,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:54:15,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:54:15,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:15,480 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:54:15,500 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:54:15,574 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.804 +2025-10-01 13:54:15,575 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 13:54:15,575 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 13:54:16,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:16,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:16,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:16,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:54:16,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:54:16,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:20,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:20,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:20,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:20,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:54:20,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:54:20,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:21,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:21,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:21,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:21,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 13:54:21,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 13:54:21,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:24,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:24,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:24,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:24,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:54:24,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:54:24,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:24,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:24,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:24,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:24,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:54:24,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:54:24,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:25,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:25,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:26,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:26,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:54:26,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:54:26,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:27,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:27,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:27,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:27,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:54:27,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:54:27,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:28,744 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:54:28,763 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:54:28,845 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.702 +2025-10-01 13:54:28,845 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:54:28,846 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:54:29,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:29,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:29,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:29,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:54:29,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:54:29,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:30,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:30,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:30,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:30,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:54:30,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:54:30,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:33,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:33,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:33,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:33,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:54:33,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:54:33,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:34,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:34,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:34,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:34,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:54:34,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:54:34,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:35,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:35,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:35,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:35,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:54:35,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:54:35,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:38,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:38,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:38,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:38,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 13:54:38,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 13:54:38,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:41,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:41,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:41,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:41,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:54:41,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:54:41,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:42,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:42,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:42,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:42,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:54:42,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:54:42,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:45,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:45,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:45,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:45,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:54:45,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:54:45,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:50,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:50,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:50,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:50,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:54:50,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:54:50,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:50,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:50,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:50,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:51,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:54:51,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:54:51,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:51,622 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:54:51,649 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:54:51,731 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.928 +2025-10-01 13:54:51,731 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 13:54:51,733 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:54:52,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:52,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:52,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:53,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:54:53,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:54:53,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:54,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:54,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:54,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:54,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:54:54,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:54:54,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:55,569 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:54:55,597 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:54:55,787 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.442 +2025-10-01 13:54:55,788 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.189s +2025-10-01 13:54:55,788 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.191s +2025-10-01 13:54:57,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:57,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:57,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:57,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:54:57,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:54:57,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:54:59,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:54:59,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:54:59,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:54:59,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:54:59,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:54:59,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:00,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:00,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:00,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:00,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:55:00,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:55:00,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:00,620 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:55:00,651 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:55:00,730 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=203.888 +2025-10-01 13:55:00,730 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 13:55:00,731 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 13:55:01,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:01,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:01,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:01,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:55:01,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:55:01,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:05,162 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:55:05,182 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:55:05,263 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.199 +2025-10-01 13:55:05,264 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 13:55:05,264 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 13:55:06,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:06,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:06,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:06,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:55:06,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:55:06,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:07,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:07,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:07,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:07,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:55:07,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:55:07,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:08,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:08,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:08,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:08,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:55:08,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:55:08,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:10,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:10,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:10,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:11,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:55:11,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:55:11,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:13,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:13,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:13,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:13,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:55:13,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:55:13,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:13,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:13,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:13,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:13,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:55:13,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:55:13,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:14,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:14,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:14,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:14,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:55:14,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:55:14,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:15,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:15,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:15,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:15,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:55:15,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:55:15,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:15,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:15,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:15,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:15,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:55:15,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:55:15,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:17,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:17,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:17,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:17,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:55:17,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:55:17,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:17,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:17,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:17,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:17,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:55:17,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:55:17,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:18,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:18,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:18,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:18,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:55:18,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:55:18,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:20,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:20,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:20,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:20,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:55:20,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:55:20,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:21,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:21,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:21,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:22,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:55:22,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:55:22,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:22,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:22,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:22,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:22,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:55:22,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:55:22,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:22,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:22,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:22,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:23,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:55:23,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:55:23,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:24,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:24,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:24,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:24,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:55:24,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:55:24,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:27,180 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:55:27,220 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:55:27,301 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=14.171 +2025-10-01 13:55:27,302 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 13:55:27,302 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 13:55:27,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:27,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:27,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:27,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:55:27,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:55:27,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:32,132 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:55:32,170 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:55:32,254 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.660 +2025-10-01 13:55:32,254 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:55:32,254 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 13:55:32,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:32,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:32,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:32,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:55:32,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:55:32,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:32,894 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:55:32,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:55:32,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:55:33,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-01 13:55:33,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +2025-10-01 13:55:33,155 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:55:33,432 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:55:33,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:55:33,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:55:33,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.256s +2025-10-01 13:55:33,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.256s (avg: 0.128s/image) +2025-10-01 13:55:33,689 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:55:37,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:37,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:37,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:37,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:55:37,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:55:37,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:38,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:38,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:38,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:38,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:55:38,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:55:38,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:38,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:38,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:38,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:38,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:55:38,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:55:38,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:38,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:38,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:38,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:38,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +2025-10-01 13:55:38,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +2025-10-01 13:55:38,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:41,049 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:55:41,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:55:41,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:55:41,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 13:55:41,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-01 13:55:41,324 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:55:42,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:42,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:42,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:42,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:55:42,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:55:42,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:42,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:42,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:42,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:42,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 13:55:42,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 13:55:42,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:45,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:45,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:45,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:45,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:55:45,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:55:45,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:46,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:46,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:46,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:46,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:55:46,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:55:46,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:47,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:47,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:47,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:47,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:55:47,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:55:47,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:48,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:48,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:48,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:49,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:55:49,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:55:49,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:55:54,586 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:55:54,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:55:54,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:55:54,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 13:55:54,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-01 13:55:54,858 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:55:56,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:55:56,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:55:56,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:55:56,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:55:56,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:55:56,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:02,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:02,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:02,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:02,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:56:02,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:56:02,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:03,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:03,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:03,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:03,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:56:03,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:56:03,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:09,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:09,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:09,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:09,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:56:09,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:56:09,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:09,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:09,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:10,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:10,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:56:10,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:56:10,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:11,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:11,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:11,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:12,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:56:12,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:56:12,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:13,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:13,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:13,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:13,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:56:13,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:56:13,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:14,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:14,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:14,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:15,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 13:56:15,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 13:56:15,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:18,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:18,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:18,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:18,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:56:18,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:56:18,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:19,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:19,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:20,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:20,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:56:20,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:56:20,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:21,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:21,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:21,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:21,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:56:21,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:56:21,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:24,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:24,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:24,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:24,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:56:24,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:56:24,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:28,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:28,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:28,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:28,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 13:56:28,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 13:56:28,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:28,624 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:56:28,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:56:28,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:56:28,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 13:56:28,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 13:56:28,918 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:56:30,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:30,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:30,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:30,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:56:30,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:56:30,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:32,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:32,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:32,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:32,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 13:56:32,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 13:56:32,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:36,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:36,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:36,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:36,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:56:36,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:56:36,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:37,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:37,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:37,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:37,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:56:37,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:56:37,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:37,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:37,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:37,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:38,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 13:56:38,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 13:56:38,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:38,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:38,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:38,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:38,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:56:38,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:56:38,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:42,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:42,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:42,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:42,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:56:42,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:56:42,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:44,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:44,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:44,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:44,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:56:44,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:56:44,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:44,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:44,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:44,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:44,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:56:44,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:56:44,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:45,244 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:56:45,268 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:56:45,464 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.602 +2025-10-01 13:56:45,464 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.195s +2025-10-01 13:56:45,465 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.197s +2025-10-01 13:56:45,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:45,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:45,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:45,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-01 13:56:45,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-01 13:56:45,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:47,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:47,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:47,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:47,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:56:47,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:56:47,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:48,852 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:56:48,877 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:56:49,118 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.628 +2025-10-01 13:56:49,118 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.241s +2025-10-01 13:56:49,119 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.243s +2025-10-01 13:56:49,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:49,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:49,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:49,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-01 13:56:49,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-01 13:56:49,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:50,087 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:56:50,107 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:56:50,300 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.451 +2025-10-01 13:56:50,300 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.192s +2025-10-01 13:56:50,300 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.193s +2025-10-01 13:56:52,552 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:56:52,579 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:56:52,691 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.841 +2025-10-01 13:56:52,692 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.112s +2025-10-01 13:56:52,692 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s +2025-10-01 13:56:53,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:53,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:53,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:53,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:56:53,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:56:53,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:53,767 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:56:53,797 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:56:53,932 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.057 +2025-10-01 13:56:53,933 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.134s +2025-10-01 13:56:53,934 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.137s +2025-10-01 13:56:54,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:54,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:54,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:54,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:56:54,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:56:54,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:54,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:56:54,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:56:54,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:56:54,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 13:56:54,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 13:56:54,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:56:56,976 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:56:57,004 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:56:57,220 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.306 +2025-10-01 13:56:57,220 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.215s +2025-10-01 13:56:57,220 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.216s +2025-10-01 13:56:57,652 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:56:57,685 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:56:57,768 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.316 +2025-10-01 13:56:57,768 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:56:57,769 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:57:00,339 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:57:00,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:57:00,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:57:00,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 13:57:00,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 13:57:00,639 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:57:00,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:00,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:00,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:00,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:57:00,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:57:00,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:04,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:04,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:04,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:04,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 13:57:04,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 13:57:04,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:06,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:06,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:06,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:06,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:57:06,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:57:06,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:07,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:07,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:07,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:07,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:57:07,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:57:07,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:08,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:08,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:08,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:08,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:57:08,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:57:08,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:13,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:13,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:13,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:13,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:57:13,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:57:13,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:13,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:13,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:13,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:13,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:57:13,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:57:13,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:14,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:14,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:14,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:14,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:57:14,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:57:14,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:15,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:15,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:15,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:15,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:57:15,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:57:15,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:18,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:18,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:18,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:19,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:57:19,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:57:19,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:19,343 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:57:19,365 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:57:19,555 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.075 +2025-10-01 13:57:19,556 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.190s +2025-10-01 13:57:19,556 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.191s +2025-10-01 13:57:19,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:19,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:19,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:19,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 13:57:19,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 13:57:19,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:20,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:20,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:20,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:20,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:57:20,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:57:20,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:23,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:23,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:23,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:23,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:57:23,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:57:23,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:23,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:23,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:23,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:24,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 13:57:24,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 13:57:24,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:25,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:25,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:25,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:25,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:57:25,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:57:25,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:25,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:25,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:25,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:25,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:57:25,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:57:25,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:26,083 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:57:26,101 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:57:26,316 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.522 +2025-10-01 13:57:26,317 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.215s +2025-10-01 13:57:26,317 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.216s +2025-10-01 13:57:26,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:26,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:26,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:26,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 13:57:26,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 13:57:26,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:27,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:27,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:27,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:27,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:57:27,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:57:27,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:29,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:29,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:29,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:29,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:57:29,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:57:29,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:29,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:29,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:30,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:30,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:57:30,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:57:30,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:31,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:31,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:31,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:31,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:57:31,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:57:31,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:32,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:32,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:32,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:32,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:57:32,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:57:32,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:33,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:33,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:33,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:33,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:57:33,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:57:33,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:35,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:35,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:35,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:35,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 13:57:35,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 13:57:35,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:36,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:36,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:36,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:36,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:57:36,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:57:36,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:37,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:37,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:37,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:37,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 13:57:37,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 13:57:37,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:39,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:39,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:39,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:39,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:57:39,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:57:39,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:40,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:40,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:40,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:40,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 13:57:40,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 13:57:40,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:41,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:41,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:41,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:41,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:57:41,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:57:41,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:42,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:42,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:42,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:42,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:57:42,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:57:42,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:44,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:44,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:44,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:44,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:57:44,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:57:44,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:47,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:47,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:47,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:47,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:57:47,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:57:47,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:50,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:50,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:50,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:50,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:57:50,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:57:50,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:51,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:51,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:51,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:51,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 13:57:51,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 13:57:51,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:52,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:52,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:52,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:52,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:57:52,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:57:52,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:55,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:55,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:55,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:55,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 13:57:55,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 13:57:55,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:57,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:57,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:57,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:57,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 13:57:57,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 13:57:57,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:57:58,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:57:58,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:57:58,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:57:58,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:57:58,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:57:58,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:00,002 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:58:00,027 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:58:00,107 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.319 +2025-10-01 13:58:00,108 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 13:58:00,108 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 13:58:00,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:00,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:00,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:00,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 13:58:00,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 13:58:00,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:02,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:02,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:02,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:02,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 13:58:02,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 13:58:02,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:03,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:03,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:03,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:03,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:58:03,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:58:03,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:04,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:58:04,941 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:58:05,023 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.591 +2025-10-01 13:58:05,023 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 13:58:05,024 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 13:58:06,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:06,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:06,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:06,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 13:58:06,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 13:58:06,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:07,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:07,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:07,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:07,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:58:07,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:58:07,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:08,379 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:58:08,409 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:58:08,490 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.376 +2025-10-01 13:58:08,490 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 13:58:08,490 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 13:58:08,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:08,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:08,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:09,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:58:09,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:58:09,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:12,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:12,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:12,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:12,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:58:12,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:58:12,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:13,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:13,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:13,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:13,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:58:13,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:58:13,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:16,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:16,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:16,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:16,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:58:16,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:58:16,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:17,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:17,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:17,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:17,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 13:58:17,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 13:58:17,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:22,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:22,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:22,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:22,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:58:22,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:58:22,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:24,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:24,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:24,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:24,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:58:24,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:58:24,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:26,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:26,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:26,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:26,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 13:58:26,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 13:58:26,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:28,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:28,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:28,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:28,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 13:58:28,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 13:58:28,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:30,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:30,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:30,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:30,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:58:30,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:58:30,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:34,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:34,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:34,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:34,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:58:34,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:58:34,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:35,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:35,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:35,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:35,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 13:58:35,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 13:58:35,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:37,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:37,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:37,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:37,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:58:37,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:58:37,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:38,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:38,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:38,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:39,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 13:58:39,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 13:58:39,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:39,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:39,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:39,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:39,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 13:58:39,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 13:58:39,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:40,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:40,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:40,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:41,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:58:41,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:58:41,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:41,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:41,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:41,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:41,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 13:58:41,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 13:58:41,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:41,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:41,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:42,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:42,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 13:58:42,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 13:58:42,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:45,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:45,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:45,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:45,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 13:58:45,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 13:58:45,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:46,464 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:58:46,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:58:46,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:58:46,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.256s +2025-10-01 13:58:46,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.256s (avg: 0.128s/image) +2025-10-01 13:58:46,721 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:58:48,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:48,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:48,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:48,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:58:48,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:58:48,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:51,330 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:58:51,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:58:51,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:58:51,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-01 13:58:51,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.154s/image) +2025-10-01 13:58:51,640 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:58:53,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:53,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:53,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:53,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:58:53,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:58:53,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:53,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:53,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:53,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:53,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 13:58:53,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 13:58:53,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:54,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:54,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:54,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:54,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 13:58:54,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 13:58:54,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:57,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:57,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:57,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:57,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:58:57,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:58:57,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:58:59,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:58:59,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:58:59,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:58:59,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 13:58:59,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 13:58:59,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:00,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:00,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:00,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:01,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 13:59:01,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 13:59:01,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:01,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:01,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:01,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:01,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:59:01,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:59:01,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:02,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:02,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:03,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:03,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 13:59:03,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 13:59:03,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:04,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:04,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:04,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:04,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:59:04,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:59:04,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:06,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:06,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:06,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:06,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 13:59:06,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 13:59:06,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:10,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:10,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:10,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:10,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 13:59:10,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 13:59:10,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:11,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:11,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:11,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:11,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:59:11,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:59:11,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:16,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:16,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:16,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:17,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 13:59:17,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 13:59:17,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:17,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:17,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:17,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:17,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 13:59:17,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 13:59:17,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:19,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:19,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:19,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:19,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 13:59:19,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 13:59:19,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:23,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:23,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:23,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:23,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 13:59:23,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 13:59:23,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:27,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:27,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:27,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:28,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 13:59:28,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 13:59:28,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:28,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:28,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:28,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:28,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 13:59:28,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 13:59:28,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:32,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:32,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:32,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:32,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:59:32,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:59:32,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:37,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:37,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:37,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:37,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:59:37,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:59:37,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:40,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:40,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:40,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:40,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 13:59:40,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 13:59:40,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:46,124 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:59:46,154 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:59:46,245 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.845 +2025-10-01 13:59:46,245 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 13:59:46,246 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 13:59:47,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:47,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:47,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:47,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 13:59:47,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 13:59:47,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:48,923 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 13:59:48,948 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 13:59:49,031 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.097 +2025-10-01 13:59:49,031 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 13:59:49,032 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 13:59:49,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:49,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:49,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:49,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 13:59:49,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 13:59:49,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:54,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:54,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:54,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:54,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 13:59:54,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 13:59:54,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:55,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:55,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:55,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:55,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 13:59:55,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 13:59:55,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:55,868 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:59:55,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:59:55,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:59:56,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 13:59:56,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 13:59:56,147 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 13:59:56,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 13:59:56,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 13:59:56,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 13:59:56,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 13:59:56,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 13:59:56,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 13:59:59,158 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 13:59:59,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 13:59:59,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 13:59:59,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 13:59:59,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 13:59:59,446 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:00:01,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:01,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:01,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:02,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:00:02,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:00:02,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:02,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:02,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:02,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:02,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:00:02,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:00:02,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:02,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:02,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:02,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:02,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:00:02,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:00:02,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:03,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:03,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:03,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:03,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 14:00:03,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 14:00:03,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:04,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:04,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:04,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:04,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:00:04,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:00:04,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:06,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:06,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:06,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:06,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:00:06,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:00:06,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:07,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:07,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:08,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:08,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:00:08,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:00:08,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:08,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:08,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:08,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:08,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:00:08,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:00:08,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:09,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:09,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:09,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:09,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:00:09,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:00:09,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:09,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:09,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:09,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:09,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:00:09,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:00:09,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:10,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:10,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:10,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:10,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 14:00:10,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 14:00:10,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:10,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:10,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:10,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:10,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 14:00:10,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 14:00:10,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:12,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:12,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:12,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:12,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:00:12,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:00:12,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:13,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:13,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:13,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:13,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:00:13,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:00:13,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:14,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:14,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:14,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:14,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:00:14,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:00:14,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:16,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:16,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:16,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:16,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:00:16,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:00:16,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:18,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:18,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:18,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:18,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:00:18,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:00:18,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:20,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:20,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:20,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:20,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:00:20,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:00:20,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:22,211 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:00:22,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:00:22,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:00:22,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 14:00:22,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 14:00:22,496 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:00:25,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:25,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:25,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:25,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 14:00:25,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 14:00:25,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:25,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:25,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:25,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:26,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:00:26,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:00:26,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:28,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:28,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:28,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:28,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:00:28,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:00:28,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:29,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:29,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:29,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:29,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:00:29,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:00:29,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:31,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:31,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:31,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:31,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:00:31,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:00:31,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:32,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:32,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:32,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:32,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:00:32,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:00:32,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:32,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:32,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:32,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:32,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:00:32,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:00:32,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:34,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:34,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:34,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:35,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:00:35,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:00:35,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:35,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:35,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:35,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:35,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:00:35,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:00:35,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:39,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:39,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:39,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:39,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:00:39,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:00:39,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:40,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:40,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:40,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:41,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:00:41,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:00:41,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:41,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:41,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:41,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:41,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:00:41,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:00:41,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:45,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:45,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:45,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:45,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:00:45,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:00:45,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:46,506 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:00:46,549 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:00:46,637 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.174 +2025-10-01 14:00:46,637 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:00:46,638 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 14:00:46,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:46,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:46,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:47,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:00:47,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:00:47,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:50,500 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:00:50,535 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:00:50,627 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.711 +2025-10-01 14:00:50,627 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 14:00:50,628 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 14:00:52,314 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:00:52,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:00:52,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:00:52,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 14:00:52,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 14:00:52,617 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:00:52,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:52,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:53,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:53,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 14:00:53,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 14:00:53,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:55,197 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:00:55,225 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:00:55,312 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=184.679 +2025-10-01 14:00:55,313 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 14:00:55,314 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 14:00:58,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:00:58,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:00:58,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:00:58,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:00:58,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:00:58,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:00:59,208 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:00:59,232 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:00:59,360 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.462 +2025-10-01 14:00:59,360 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.127s +2025-10-01 14:00:59,360 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.128s +2025-10-01 14:01:00,595 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:01:00,619 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:01:00,694 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.295 +2025-10-01 14:01:00,694 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:01:00,694 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 14:01:02,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:02,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:02,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:02,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:01:02,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:01:02,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:02,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:02,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:03,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:03,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:01:03,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:01:03,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:03,150 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:01:03,171 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:01:03,245 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=175.837 +2025-10-01 14:01:03,245 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 14:01:03,246 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 14:01:03,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:03,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:03,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:03,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:01:03,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:01:03,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:03,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:03,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:04,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:04,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:01:04,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:01:04,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:04,346 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:01:04,363 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:01:04,433 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.231 +2025-10-01 14:01:04,434 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 14:01:04,434 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 14:01:04,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:04,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:04,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:04,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 14:01:04,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 14:01:04,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:07,572 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:01:07,608 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:01:07,686 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.086 +2025-10-01 14:01:07,687 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:01:07,687 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:01:08,048 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:01:08,072 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:01:08,148 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.709 +2025-10-01 14:01:08,148 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:01:08,149 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:01:08,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:08,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:08,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:08,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 14:01:08,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 14:01:08,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:08,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:08,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:08,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:09,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:01:09,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:01:09,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:09,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:09,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:09,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:09,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:01:09,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:01:09,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:10,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:10,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:10,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:10,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:01:10,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:01:10,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:13,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:13,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:13,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:13,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:01:13,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:01:13,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:14,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:14,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:14,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:14,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:01:14,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:01:14,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:15,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:15,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:15,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:15,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:01:15,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:01:15,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:15,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:15,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:15,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:16,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:01:16,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:01:16,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:16,517 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:01:16,541 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:01:16,611 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.033 +2025-10-01 14:01:16,611 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 14:01:16,611 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 14:01:19,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:19,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:20,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:20,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:01:20,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:01:20,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:21,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:21,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:21,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:21,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:01:21,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:01:21,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:22,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:22,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:22,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:22,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:01:22,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:01:22,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:23,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:23,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:23,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:23,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:01:23,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:01:23,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:24,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:24,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:24,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:24,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:01:24,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:01:24,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:28,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:28,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:28,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:28,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:01:28,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:01:28,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:29,134 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:01:29,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:01:29,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:01:29,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.312s +2025-10-01 14:01:29,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.312s (avg: 0.156s/image) +2025-10-01 14:01:29,447 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:01:29,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:29,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:29,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:29,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +2025-10-01 14:01:29,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +2025-10-01 14:01:29,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:29,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:29,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:29,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:30,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 14:01:30,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 14:01:30,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:34,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:34,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:34,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:34,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 14:01:34,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 14:01:34,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:34,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:34,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:34,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:34,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 14:01:34,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 14:01:34,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:35,954 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:01:35,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:01:35,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:01:36,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.255s +2025-10-01 14:01:36,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.255s (avg: 0.128s/image) +2025-10-01 14:01:36,211 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:01:37,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:37,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:37,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:38,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:01:38,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:01:38,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:39,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:39,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:39,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:39,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 14:01:39,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 14:01:39,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:39,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:39,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:39,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:39,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:01:39,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:01:39,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:40,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:40,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:40,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:40,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:01:40,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:01:40,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:40,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:40,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:40,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:41,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:01:41,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:01:41,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:45,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:45,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:45,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:45,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:01:45,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:01:45,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:47,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:47,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:47,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:47,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:01:47,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:01:47,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:49,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:49,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:49,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:49,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:01:49,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:01:49,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:49,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:49,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:49,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:49,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:01:49,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:01:49,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:50,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:50,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:50,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:50,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:01:50,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:01:50,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:53,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:53,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:53,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:53,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:01:53,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:01:53,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:56,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:56,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:56,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:57,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:01:57,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:01:57,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:01:58,513 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:01:58,547 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:01:58,681 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.885 +2025-10-01 14:01:58,682 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.133s +2025-10-01 14:01:58,684 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.137s +2025-10-01 14:01:59,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:01:59,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:01:59,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:01:59,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 14:01:59,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 14:01:59,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:01,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:01,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:01,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:02,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:02:02,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:02:02,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:02,107 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:02:02,132 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:02:02,427 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.952 +2025-10-01 14:02:02,427 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.294s +2025-10-01 14:02:02,428 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.296s +2025-10-01 14:02:03,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:03,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:03,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:04,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 14:02:04,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 14:02:04,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:06,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:06,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:06,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:06,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:02:06,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:02:06,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:06,792 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:02:06,821 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:02:07,124 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.739 +2025-10-01 14:02:07,124 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.302s +2025-10-01 14:02:07,126 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.304s +2025-10-01 14:02:07,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:07,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:07,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:07,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-01 14:02:07,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-01 14:02:07,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:10,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:10,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:10,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:10,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 14:02:10,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 14:02:10,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:11,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:11,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:11,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:11,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 14:02:11,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 14:02:11,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:11,554 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:02:11,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:02:11,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:02:11,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 14:02:11,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 14:02:11,830 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:02:15,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:15,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:15,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:15,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:02:15,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:02:15,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:15,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:15,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:15,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:15,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:02:15,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:02:15,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:16,307 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:02:16,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:02:16,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:02:16,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-01 14:02:16,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-01 14:02:16,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:02:18,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:18,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:18,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:18,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:02:18,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:02:18,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:18,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:18,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:18,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:18,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 14:02:18,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 14:02:18,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:20,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:20,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:20,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:20,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:02:20,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:02:20,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:21,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:21,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:21,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:21,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:02:21,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:02:21,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:21,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:21,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:21,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:21,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:02:21,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:02:21,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:23,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:23,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:23,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:23,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:02:23,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:02:23,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:25,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:25,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:25,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:25,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:02:25,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:02:25,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:28,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:28,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:28,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:28,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:02:28,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:02:28,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:31,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:31,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:31,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:31,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:02:31,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:02:31,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:31,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:31,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:31,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:31,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:02:31,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:02:31,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:32,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:32,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:32,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:32,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:02:32,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:02:32,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:33,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:33,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:33,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:33,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 14:02:33,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 14:02:33,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:35,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:35,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:35,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:35,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:02:35,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:02:35,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:36,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:36,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:36,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:36,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:02:36,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:02:36,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:37,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:37,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:37,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:37,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:02:37,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:02:37,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:37,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:37,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:37,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:37,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:02:37,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:02:37,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:39,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:39,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:39,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:39,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:02:39,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:02:39,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:40,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:40,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:40,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:40,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:02:40,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:02:40,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:41,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:41,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:41,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:41,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:02:41,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:02:41,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:42,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:42,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:42,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:42,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:02:42,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:02:42,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:46,408 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:02:46,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:02:46,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:02:46,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 14:02:46,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 14:02:46,691 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:02:51,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:51,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:51,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:51,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:02:51,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:02:51,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:51,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:51,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:52,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:52,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:02:52,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:02:52,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:55,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:55,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:55,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:55,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:02:55,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:02:55,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:02:57,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:02:57,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:02:57,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:02:57,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:02:57,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:02:57,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:00,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:00,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:00,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:00,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:03:00,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:03:00,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:01,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:01,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:01,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:01,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:03:01,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:03:01,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:01,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:01,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:01,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:01,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:03:01,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:03:01,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:05,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:05,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:05,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:05,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:03:05,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:03:05,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:06,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:06,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:06,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:06,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:03:06,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:03:06,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:10,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:10,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:10,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:11,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:03:11,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:03:11,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:12,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:12,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:12,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:12,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:03:12,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:03:12,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:14,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:14,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:14,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:14,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 14:03:14,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 14:03:14,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:16,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:16,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:16,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:16,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:03:16,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:03:16,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:21,738 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:03:21,765 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:03:21,986 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.168 +2025-10-01 14:03:21,986 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.220s +2025-10-01 14:03:21,988 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.222s +2025-10-01 14:03:23,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:23,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:23,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:23,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:03:23,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:03:23,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:24,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:24,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:24,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:24,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:03:24,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:03:24,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:27,823 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:03:27,852 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:03:28,095 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=184.839 +2025-10-01 14:03:28,095 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.243s +2025-10-01 14:03:28,096 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.245s +2025-10-01 14:03:28,556 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:03:28,578 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:03:28,814 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.531 +2025-10-01 14:03:28,814 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.235s +2025-10-01 14:03:28,814 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.236s +2025-10-01 14:03:28,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:28,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:28,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:29,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:03:29,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:03:29,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:30,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:30,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:30,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:30,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:03:30,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:03:30,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:35,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:35,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:35,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:35,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:03:35,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:03:35,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:35,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:35,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:35,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:35,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:03:35,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:03:35,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:40,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:40,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:40,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:40,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:03:40,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:03:40,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:41,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:41,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:41,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:41,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:03:41,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:03:41,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:45,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:45,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:45,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:46,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:03:46,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:03:46,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:50,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:50,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:50,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:50,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:03:50,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:03:50,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:51,703 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:03:51,732 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:03:51,814 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.252 +2025-10-01 14:03:51,814 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 14:03:51,815 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 14:03:52,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:52,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:52,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:52,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:03:52,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:03:52,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:53,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:53,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:53,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:53,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:03:53,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:03:53,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:03:56,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:03:56,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:03:56,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:03:56,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:03:56,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:03:56,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:00,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:00,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:00,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:00,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:04:00,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:04:00,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:02,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:02,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:02,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:02,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:04:02,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:04:02,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:02,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:02,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:02,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:02,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:04:02,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:04:02,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:06,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:06,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:06,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:06,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:04:06,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:04:06,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:06,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:06,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:06,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:07,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:04:07,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:04:07,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:09,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:09,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:09,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:09,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:04:09,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:04:09,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:11,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:11,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:11,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:11,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:04:11,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:04:11,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:12,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:12,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:12,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:12,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:04:12,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:04:12,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:13,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:13,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:13,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:14,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:04:14,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:04:14,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:14,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:14,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:14,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:14,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:04:14,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:04:14,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:15,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:15,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:15,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:15,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:04:15,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:04:15,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:16,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:16,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:16,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:17,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:04:17,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:04:17,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:18,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:18,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:18,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:18,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:04:18,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:04:18,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:22,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:22,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:22,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:23,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:04:23,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:04:23,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:23,439 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:04:23,486 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:04:23,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.459 +2025-10-01 14:04:23,588 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 14:04:23,589 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 14:04:24,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:24,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:24,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:24,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:04:24,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:04:24,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:24,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:24,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:24,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:24,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:04:24,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:04:24,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:25,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:25,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:25,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:25,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:04:25,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:04:25,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:26,966 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:04:26,996 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:04:27,236 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.904 +2025-10-01 14:04:27,236 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.239s +2025-10-01 14:04:27,237 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.241s +2025-10-01 14:04:29,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:29,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:29,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:29,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:04:29,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:04:29,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:31,179 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:04:31,207 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:04:31,472 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.416 +2025-10-01 14:04:31,473 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.264s +2025-10-01 14:04:31,474 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.266s +2025-10-01 14:04:31,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:31,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:31,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:31,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:04:31,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:04:31,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:32,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:32,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:32,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:32,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:04:32,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:04:32,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:38,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:38,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:38,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:38,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:04:38,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:04:38,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:38,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:38,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:38,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:39,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:04:39,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:04:39,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:39,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:39,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:39,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:39,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:04:39,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:04:39,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:44,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:44,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:44,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:44,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:04:44,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:04:44,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:45,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:45,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:45,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:45,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:04:45,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:04:45,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:47,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:47,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:47,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:47,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:04:47,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:04:47,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:49,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:49,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:49,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:49,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:04:49,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:04:49,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:50,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:50,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:51,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:51,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:04:51,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:04:51,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:51,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:51,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:51,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:51,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:04:51,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:04:51,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:53,502 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:04:53,534 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:04:53,781 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.463 +2025-10-01 14:04:53,782 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.246s +2025-10-01 14:04:53,782 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.247s +2025-10-01 14:04:55,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:04:55,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:04:56,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:04:56,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:04:56,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:04:56,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:04:57,396 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:04:57,430 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:04:57,512 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.490 +2025-10-01 14:04:57,513 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:04:57,513 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:04:58,656 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:04:58,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:04:58,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:04:58,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 14:04:58,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 14:04:58,945 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:05:00,704 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:05:00,729 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:05:00,970 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.343 +2025-10-01 14:05:00,971 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.241s +2025-10-01 14:05:00,971 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.242s +2025-10-01 14:05:03,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:03,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:03,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:04,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:05:04,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:05:04,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:06,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:06,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:06,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:06,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:05:06,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:05:06,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:06,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:06,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:06,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:06,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:05:06,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:05:06,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:09,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:09,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:09,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:09,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:05:09,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:05:09,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:13,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:13,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:13,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:13,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:05:13,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:05:13,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:14,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:14,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:14,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:14,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:05:14,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:05:14,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:14,926 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:05:14,948 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:05:15,192 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.691 +2025-10-01 14:05:15,192 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.242s +2025-10-01 14:05:15,193 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.245s +2025-10-01 14:05:15,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:15,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:15,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:15,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 14:05:15,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 14:05:15,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:18,653 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:05:18,674 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:05:18,828 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.777 +2025-10-01 14:05:18,829 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.154s +2025-10-01 14:05:18,830 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.156s +2025-10-01 14:05:20,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:20,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:20,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:20,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:05:20,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:05:20,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:21,901 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:05:21,933 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:05:22,055 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.400 +2025-10-01 14:05:22,055 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.121s +2025-10-01 14:05:22,057 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.124s +2025-10-01 14:05:22,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:22,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:22,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:22,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:05:22,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:05:22,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:24,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:24,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:24,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:24,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:05:24,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:05:24,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:26,377 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:05:26,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:05:26,537 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.258 +2025-10-01 14:05:26,537 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.121s +2025-10-01 14:05:26,538 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.123s +2025-10-01 14:05:26,835 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:05:26,861 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:05:26,973 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.812 +2025-10-01 14:05:26,973 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.111s +2025-10-01 14:05:26,973 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-01 14:05:29,694 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:05:29,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:05:29,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:05:29,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 14:05:29,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 14:05:29,987 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:05:30,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:30,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:30,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:30,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:05:30,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:05:30,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:30,345 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:05:30,365 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:05:30,444 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.563 +2025-10-01 14:05:30,445 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:05:30,446 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:05:32,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:32,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:32,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:32,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:05:32,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:05:32,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:33,744 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:05:33,771 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:05:33,874 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.558 +2025-10-01 14:05:33,874 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 14:05:33,875 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 14:05:35,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:35,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:35,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:36,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:05:36,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:05:36,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:36,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:36,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:36,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:36,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:05:36,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:05:36,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:36,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:36,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:36,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:36,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 14:05:36,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 14:05:36,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:41,954 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:05:41,980 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:05:42,081 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.994 +2025-10-01 14:05:42,081 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 14:05:42,081 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 14:05:43,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:43,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:43,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:43,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:05:43,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:05:43,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:43,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:43,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:43,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:44,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:05:44,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:05:44,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:45,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:45,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:45,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:45,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:05:45,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:05:45,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:49,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:49,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:49,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:49,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:05:49,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:05:49,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:49,760 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:05:49,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:05:49,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:05:50,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 14:05:50,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 14:05:50,056 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:05:53,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:53,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:53,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:53,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:05:53,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:05:53,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:54,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:54,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:54,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:54,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:05:54,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:05:54,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:57,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:57,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:57,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:57,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:05:57,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:05:57,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:05:57,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:05:57,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:05:57,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:05:57,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:05:57,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:05:57,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:02,444 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:06:02,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:06:02,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:06:02,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.326s +2025-10-01 14:06:02,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.326s (avg: 0.163s/image) +2025-10-01 14:06:02,772 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:06:04,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:04,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:04,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:04,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:06:04,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:06:04,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:09,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:09,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:09,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:09,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s +2025-10-01 14:06:09,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +2025-10-01 14:06:09,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:10,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:10,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:10,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:10,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:06:10,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:06:10,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:14,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:14,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:14,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:14,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:06:14,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:06:14,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:17,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:17,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:17,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:17,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:06:17,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:06:17,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:18,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:18,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:18,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:18,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:06:18,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:06:18,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:19,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:19,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:19,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:19,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:06:19,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:06:19,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:19,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:19,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:19,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:19,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:06:19,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:06:19,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:21,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:21,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:21,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:22,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:06:22,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:06:22,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:26,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:26,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:26,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:26,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:06:26,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:06:26,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:27,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:27,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:27,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:27,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:06:27,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:06:27,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:28,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:28,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:28,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:28,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:06:28,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:06:28,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:28,940 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:06:28,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:06:28,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:06:29,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 14:06:29,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 14:06:29,233 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:06:30,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:30,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:30,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:30,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:06:30,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:06:30,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:33,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:33,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:33,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:33,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:06:33,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:06:33,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:38,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:38,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:38,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:38,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:06:38,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:06:38,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:41,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:41,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:41,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:41,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:06:41,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:06:41,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:42,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:42,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:42,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:42,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 14:06:42,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 14:06:42,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:43,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:43,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:43,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:44,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:06:44,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:06:44,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:47,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:47,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:47,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:47,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:06:47,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:06:47,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:50,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:50,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:50,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:50,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 14:06:50,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 14:06:50,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:51,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:51,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:51,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:51,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:06:51,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:06:51,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:51,477 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:06:51,502 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:06:51,629 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.383 +2025-10-01 14:06:51,629 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.126s +2025-10-01 14:06:51,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.130s +2025-10-01 14:06:51,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:51,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:51,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:51,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 14:06:51,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 14:06:51,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:54,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:54,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:54,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:54,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:06:54,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:06:54,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:56,260 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:06:56,285 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:06:56,410 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.018 +2025-10-01 14:06:56,411 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.124s +2025-10-01 14:06:56,412 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.127s +2025-10-01 14:06:56,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:06:56,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:06:56,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:06:56,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:06:56,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:06:56,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:06:59,848 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:06:59,874 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:06:59,994 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.351 +2025-10-01 14:06:59,994 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.119s +2025-10-01 14:06:59,995 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.121s +2025-10-01 14:07:00,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:00,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:00,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:00,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:07:00,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:07:00,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:06,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:06,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:06,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:06,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 14:07:06,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 14:07:06,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:06,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:06,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:06,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:06,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:07:06,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:07:06,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:09,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:09,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:09,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:09,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:07:09,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:07:09,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:10,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:10,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:10,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:11,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:07:11,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:07:11,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:11,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:11,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:11,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:11,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 14:07:11,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 14:07:11,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:11,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:11,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:11,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:11,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:07:11,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:07:11,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:12,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:12,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:12,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:13,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:07:13,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:07:13,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:13,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:13,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:13,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:13,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:07:13,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:07:13,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:15,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:15,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:15,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:15,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:07:15,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:07:15,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:15,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:15,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:15,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:16,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:07:16,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:07:16,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:17,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:17,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:17,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:17,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:07:17,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:07:17,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:20,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:20,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:20,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:20,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 14:07:20,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 14:07:20,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:21,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:21,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:21,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:21,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:07:21,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:07:21,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:25,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:25,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:25,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:25,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:07:25,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:07:25,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:27,591 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:07:27,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:07:27,729 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.521 +2025-10-01 14:07:27,729 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 14:07:27,730 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 14:07:28,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:28,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:28,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:28,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:07:28,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:07:28,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:32,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:32,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:32,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:32,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:07:32,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:07:32,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:37,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:37,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:37,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:37,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s +2025-10-01 14:07:37,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image) +2025-10-01 14:07:37,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:37,431 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:07:37,455 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:07:37,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.603 +2025-10-01 14:07:37,547 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 14:07:37,548 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 14:07:37,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:37,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:37,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:38,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:07:38,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:07:38,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:40,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:40,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:40,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:40,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 14:07:40,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 14:07:40,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:40,732 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:07:40,757 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:07:40,868 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.786 +2025-10-01 14:07:40,868 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.111s +2025-10-01 14:07:40,869 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s +2025-10-01 14:07:44,187 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:07:44,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:07:44,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:07:44,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 14:07:44,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-01 14:07:44,462 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:07:44,655 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:07:44,682 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:07:44,787 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.534 +2025-10-01 14:07:44,787 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 14:07:44,789 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-01 14:07:50,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:50,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:50,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:50,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:07:50,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:07:50,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:54,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:54,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:54,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:54,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:07:54,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:07:54,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:54,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:54,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:54,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:54,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:07:54,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:07:54,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:07:59,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:07:59,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:07:59,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:07:59,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:07:59,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:07:59,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:02,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:02,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:02,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:02,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:08:02,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:08:02,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:07,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:07,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:07,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:07,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:08:07,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:08:07,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:14,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:14,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:14,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:14,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:08:14,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:08:14,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:15,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:15,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:15,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:15,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 14:08:15,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 14:08:15,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:19,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:19,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:19,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:19,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:08:19,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:08:19,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:23,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:23,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:23,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:24,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:08:24,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:08:24,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:24,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:24,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:24,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:24,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:08:24,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:08:24,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:27,909 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:08:27,928 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:08:28,017 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.803 +2025-10-01 14:08:28,018 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 14:08:28,018 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 14:08:29,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:29,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:29,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:29,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:08:29,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:08:29,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:29,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:29,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:29,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:30,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:08:30,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:08:30,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:31,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:31,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:31,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:31,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:08:31,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:08:31,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:31,614 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:08:31,638 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:08:31,714 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.042 +2025-10-01 14:08:31,714 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:08:31,715 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:08:34,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:34,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:34,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:34,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:08:34,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:08:34,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:35,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:35,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:35,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:35,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:08:35,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:08:35,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:35,673 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:08:35,691 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:08:35,764 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.748 +2025-10-01 14:08:35,765 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 14:08:35,765 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 14:08:39,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:39,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:39,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:39,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:08:39,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:08:39,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:40,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:40,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:40,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:40,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:08:40,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:08:40,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:40,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:40,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:41,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:41,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:08:41,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:08:41,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:43,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:43,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:43,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:43,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:08:43,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:08:43,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:45,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:45,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:45,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:45,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:08:45,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:08:45,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:46,497 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:08:46,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:08:46,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:08:46,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 14:08:46,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 14:08:46,773 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:08:47,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:47,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:47,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:48,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:08:48,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:08:48,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:50,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:50,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:50,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:50,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:08:50,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:08:50,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:52,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:52,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:52,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:53,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:08:53,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:08:53,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:53,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:53,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:53,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:53,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:08:53,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:08:53,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:55,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:55,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:55,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:56,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:08:56,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:08:56,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:58,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:58,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:58,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:58,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:08:58,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:08:58,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:08:58,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:08:58,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:08:58,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:08:58,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:08:58,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:08:58,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:02,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:02,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:02,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:02,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:09:02,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:09:02,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:09,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:09,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:09,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:09,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:09:09,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:09:09,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:11,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:11,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:11,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:12,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:09:12,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:09:12,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:12,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:09:12,843 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:09:12,928 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.972 +2025-10-01 14:09:12,928 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:09:12,928 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 14:09:15,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:15,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:15,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:15,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:09:15,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:09:15,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:16,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:16,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:16,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:16,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:09:16,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:09:16,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:20,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:20,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:20,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:21,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:09:21,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:09:21,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:21,479 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:09:21,499 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:09:21,576 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.100 +2025-10-01 14:09:21,577 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:09:21,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 14:09:22,335 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:09:22,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:09:22,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:09:22,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 14:09:22,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 14:09:22,630 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:09:23,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:23,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:23,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:23,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:09:23,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:09:23,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:27,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:27,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:27,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:27,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:09:27,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:09:27,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:27,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:27,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:27,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:27,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:09:27,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:09:27,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:31,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:31,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:31,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:31,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:09:31,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:09:31,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:31,843 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:09:31,876 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:09:31,966 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.771 +2025-10-01 14:09:31,966 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 14:09:31,967 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 14:09:35,163 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:09:35,176 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:09:35,259 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.438 +2025-10-01 14:09:35,259 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:09:35,259 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:09:35,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:35,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:35,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:35,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:09:35,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:09:35,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:36,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:36,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:36,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:36,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:09:36,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:09:36,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:38,323 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:09:38,348 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:09:38,436 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.485 +2025-10-01 14:09:38,436 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:09:38,438 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 14:09:40,035 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:09:40,067 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:09:40,187 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.761 +2025-10-01 14:09:40,187 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.119s +2025-10-01 14:09:40,188 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.121s +2025-10-01 14:09:46,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:46,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:46,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:47,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:09:47,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:09:47,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:48,516 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:09:48,540 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:09:48,647 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.887 +2025-10-01 14:09:48,648 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +2025-10-01 14:09:48,649 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.109s +2025-10-01 14:09:51,675 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:09:51,705 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:09:51,818 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=177.464 +2025-10-01 14:09:51,818 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.112s +2025-10-01 14:09:51,819 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.114s +2025-10-01 14:09:53,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:53,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:53,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:53,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:09:53,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:09:53,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:53,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:53,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:53,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:54,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:09:54,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:09:54,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:09:56,555 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:09:56,580 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:09:56,687 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.953 +2025-10-01 14:09:56,687 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +2025-10-01 14:09:56,688 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-01 14:09:57,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:09:57,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:09:57,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:09:57,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:09:57,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:09:57,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:00,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:00,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:00,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:00,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:10:00,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:10:00,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:02,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:02,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:02,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:03,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:10:03,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:10:03,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:06,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:06,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:06,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:06,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:10:06,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:10:06,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:08,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:08,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:08,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:08,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:10:08,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:10:08,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:10,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:10,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:10,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:10,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:10:10,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:10:10,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:11,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:11,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:11,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:11,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:10:11,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:10:11,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:13,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:13,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:13,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:13,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:10:13,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:10:13,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:15,733 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:10:15,769 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:10:15,884 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.798 +2025-10-01 14:10:15,884 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.114s +2025-10-01 14:10:15,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.117s +2025-10-01 14:10:17,056 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:10:17,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:10:17,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:10:17,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.318s +2025-10-01 14:10:17,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.318s (avg: 0.159s/image) +2025-10-01 14:10:17,375 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:10:18,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:18,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:18,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:18,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:10:18,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:10:18,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:18,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:18,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:18,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:19,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:10:19,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:10:19,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:20,369 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:10:20,394 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:10:20,494 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.116 +2025-10-01 14:10:20,494 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 14:10:20,496 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 14:10:24,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:24,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:24,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:24,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:10:24,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:10:24,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:27,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:27,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:27,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:27,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:10:27,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:10:27,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:28,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:28,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:28,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:28,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:10:28,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:10:28,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:30,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:30,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:30,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:30,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:10:30,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:10:30,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:30,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:30,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:30,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:30,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:10:30,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:10:30,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:31,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:31,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:31,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:31,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:10:31,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:10:31,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:32,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:32,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:32,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:32,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:10:32,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:10:32,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:34,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:34,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:34,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:34,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 14:10:34,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 14:10:34,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:36,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:36,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:36,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:36,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:10:36,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:10:36,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:37,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:37,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:37,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:37,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:10:37,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:10:37,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:38,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:38,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:38,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:38,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:10:38,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:10:38,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:38,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:38,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:39,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:39,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:10:39,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:10:39,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:39,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:39,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:39,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:39,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:10:39,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:10:39,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:42,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:42,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:42,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:42,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:10:42,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:10:42,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:44,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:44,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:44,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:44,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:10:44,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:10:44,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:44,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:44,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:44,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:44,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:10:44,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:10:44,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:45,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:45,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:45,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:45,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:10:45,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:10:45,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:48,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:48,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:48,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:48,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:10:48,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:10:48,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:49,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:49,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:49,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:49,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:10:49,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:10:49,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:53,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:53,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:53,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:53,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:10:53,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:10:53,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:55,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:55,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:55,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:55,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 14:10:55,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 14:10:55,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:10:55,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:10:55,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:10:55,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:10:55,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:10:55,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:10:55,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:00,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:00,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:00,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:00,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:11:00,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:11:00,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:00,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:00,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:00,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:00,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:11:00,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:11:00,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:05,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:05,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:05,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:06,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:11:06,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:11:06,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:06,963 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:11:06,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:11:07,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:11:07,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +2025-10-01 14:11:07,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.159s/image) +2025-10-01 14:11:07,282 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:11:08,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:08,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:08,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:08,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:11:08,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:11:08,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:12,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:12,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:12,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:12,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:11:12,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:11:12,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:12,483 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:11:12,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:11:12,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:11:12,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 14:11:12,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-01 14:11:12,764 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:11:12,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:12,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:12,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:13,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 14:11:13,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 14:11:13,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:16,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:16,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:16,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:16,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:11:16,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:11:16,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:17,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:17,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:17,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:17,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:11:17,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:11:17,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:19,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:19,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:19,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:19,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:11:19,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:11:19,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:21,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:21,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:21,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:21,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:11:21,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:11:21,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:21,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:21,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:21,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:21,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 14:11:21,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 14:11:21,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:23,787 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:11:23,821 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:11:23,917 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.714 +2025-10-01 14:11:23,917 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 14:11:23,917 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 14:11:25,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:25,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:25,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:25,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 14:11:25,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 14:11:25,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:25,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:25,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:25,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:25,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:11:25,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:11:25,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:26,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:11:26,937 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:11:27,011 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.506 +2025-10-01 14:11:27,011 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 14:11:27,011 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 14:11:30,186 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:11:30,210 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:11:30,283 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.853 +2025-10-01 14:11:30,284 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 14:11:30,284 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 14:11:37,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:37,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:37,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:37,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:11:37,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:11:37,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:52,600 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:11:52,636 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:11:52,724 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.989 +2025-10-01 14:11:52,724 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:11:52,724 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 14:11:52,847 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:11:52,864 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:11:52,940 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.070 +2025-10-01 14:11:52,940 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:11:52,940 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 14:11:55,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:11:55,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:11:56,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:11:56,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 14:11:56,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 14:11:56,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:11:56,171 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:11:56,187 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:11:56,264 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.794 +2025-10-01 14:11:56,264 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:11:56,264 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:11:59,115 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:11:59,139 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:11:59,217 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.867 +2025-10-01 14:11:59,218 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:11:59,218 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:12:01,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:12:01,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:12:01,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:12:01,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:12:01,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:12:01,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:12:01,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:12:01,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:12:01,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:12:01,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 14:12:01,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 14:12:01,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:12:04,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:12:04,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:12:04,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:12:04,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:12:04,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:12:04,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:12:06,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:12:06,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:12:06,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:12:06,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 14:12:06,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 14:12:06,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:12:08,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:12:08,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:12:08,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:12:08,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:12:08,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:12:08,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:12:14,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:12:14,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:12:14,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:12:14,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:12:14,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:12:14,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:12:19,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:12:19,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:12:19,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:12:19,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:12:19,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:12:19,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:12:25,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:12:25,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:12:25,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:12:25,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:12:25,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:12:25,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:12:36,960 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:12:37,002 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:12:37,089 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.242 +2025-10-01 14:12:37,089 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 14:12:37,089 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 14:12:43,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:12:43,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:12:43,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:12:43,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:12:43,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:12:43,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:12:43,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:12:43,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:12:43,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:12:44,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:12:44,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:12:44,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:12:51,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:12:51,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:12:51,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:12:51,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:12:51,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:12:51,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:02,507 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:13:02,536 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:13:02,622 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.456 +2025-10-01 14:13:02,622 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 14:13:02,622 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 14:13:05,898 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:13:05,918 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:13:05,995 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.682 +2025-10-01 14:13:05,996 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:13:05,996 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 14:13:06,321 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:13:06,349 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:13:06,429 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.681 +2025-10-01 14:13:06,430 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:13:06,430 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:13:06,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:06,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:07,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:07,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:13:07,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:13:07,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:09,393 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:13:09,413 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:13:09,492 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.313 +2025-10-01 14:13:09,492 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:13:09,492 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 14:13:13,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:13,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:13,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:13,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:13:13,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:13:13,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:16,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:16,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:16,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:16,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:13:16,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:13:16,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:17,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:17,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:17,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:17,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:13:17,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:13:17,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:19,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:19,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:19,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:19,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:13:19,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:13:19,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:22,034 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:13:22,060 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:13:22,140 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.416 +2025-10-01 14:13:22,140 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:13:22,140 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 14:13:22,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:22,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:22,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:22,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 14:13:22,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 14:13:22,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:23,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:23,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:23,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:23,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:13:23,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:13:23,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:24,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:24,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:24,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:24,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:13:24,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:13:24,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:24,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:24,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:24,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:25,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 14:13:25,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 14:13:25,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:28,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:28,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:28,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:28,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:13:28,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:13:28,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:29,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:29,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:29,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:29,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:13:29,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:13:29,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:29,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:29,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:29,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:30,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:13:30,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:13:30,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:30,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:30,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:30,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:30,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 14:13:30,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 14:13:30,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:34,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:34,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:34,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:34,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:13:34,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:13:34,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:35,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:35,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:35,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:35,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:13:35,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:13:35,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:35,407 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:13:35,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:13:35,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:13:35,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 14:13:35,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 14:13:35,692 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:13:40,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:40,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:40,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:40,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:13:40,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:13:40,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:41,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:41,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:41,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:41,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:13:41,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:13:41,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:41,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:41,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:41,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:41,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:13:41,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:13:41,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:44,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:44,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:44,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:44,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:13:44,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:13:44,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:46,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:46,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:46,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:46,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:13:46,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:13:46,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:47,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:47,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:47,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:47,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:13:47,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:13:47,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:48,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:48,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:48,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:48,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:13:48,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:13:48,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:53,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:53,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:53,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:53,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:13:53,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:13:53,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:56,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:56,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:56,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:56,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:13:56,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:13:56,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:56,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:56,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:56,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:56,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:13:56,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:13:56,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:58,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:58,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:59,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:59,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:13:59,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:13:59,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:13:59,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:13:59,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:13:59,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:13:59,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:13:59,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:13:59,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:02,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:02,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:02,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:02,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:14:02,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:14:02,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:02,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:02,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:02,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:02,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:14:02,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:14:02,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:07,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:07,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:07,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:07,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:14:07,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:14:07,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:07,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:07,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:07,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:07,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:14:07,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:14:07,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:09,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:09,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:09,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:10,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:14:10,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:14:10,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:11,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:11,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:11,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:12,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:14:12,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:14:12,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:12,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:12,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:12,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:12,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:14:12,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:14:12,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:15,666 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:14:15,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:14:15,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:14:15,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 14:14:15,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 14:14:15,944 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:14:16,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:16,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:16,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:16,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:14:16,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:14:16,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:18,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:18,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:18,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:18,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:14:18,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:14:18,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:21,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:21,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:21,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:21,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:14:21,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:14:21,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:23,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:23,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:23,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:23,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:14:23,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:14:23,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:23,804 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:14:23,829 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:14:23,917 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.521 +2025-10-01 14:14:23,918 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:14:23,918 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 14:14:24,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:24,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:24,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:24,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:14:24,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:14:24,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:29,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:29,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:29,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:29,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:14:29,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:14:29,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:29,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:29,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:29,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:29,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:14:29,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:14:29,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:30,318 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:14:30,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:14:30,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:14:30,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 14:14:30,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 14:14:30,608 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:14:34,136 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:14:34,176 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:14:34,268 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.010 +2025-10-01 14:14:34,269 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 14:14:34,270 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 14:14:36,841 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:14:36,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:14:36,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:14:37,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 14:14:37,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 14:14:37,125 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:14:43,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:43,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:43,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:43,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:14:43,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:14:43,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:47,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:47,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:47,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:47,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:14:47,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:14:47,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:48,228 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:14:48,253 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:14:48,351 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.413 +2025-10-01 14:14:48,351 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 14:14:48,351 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 14:14:51,286 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:14:51,303 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:14:51,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.394 +2025-10-01 14:14:51,380 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:14:51,380 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:14:51,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:51,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:51,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:51,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 14:14:51,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 14:14:51,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:52,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:52,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:52,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:52,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:14:52,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:14:52,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:54,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:14:54,462 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:14:54,543 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.756 +2025-10-01 14:14:54,543 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 14:14:54,544 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 14:14:57,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:57,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:57,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:57,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:14:57,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:14:57,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:58,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:58,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:58,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:58,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 14:14:58,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 14:14:58,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:14:59,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:14:59,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:14:59,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:14:59,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:14:59,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:14:59,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:04,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:04,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:04,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:04,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:15:04,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:15:04,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:05,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:05,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:05,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:05,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:15:05,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:15:05,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:07,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:07,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:07,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:07,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:15:07,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:15:07,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:11,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:11,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:11,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:11,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:15:11,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:15:11,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:14,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:14,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:14,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:14,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:15:14,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:15:14,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:19,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:19,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:19,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:19,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:15:19,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:15:19,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:21,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:21,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:21,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:21,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:15:21,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:15:21,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:27,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:27,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:27,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:27,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:15:27,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:15:27,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:29,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:29,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:29,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:29,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:15:29,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:15:29,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:29,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:29,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:29,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:29,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:15:29,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:15:29,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:34,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:34,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:34,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:34,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:15:34,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:15:34,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:35,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:35,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:35,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:35,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:15:35,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:15:35,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:36,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:36,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:36,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:36,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:15:36,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:15:36,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:38,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:38,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:38,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:38,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:15:38,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:15:38,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:39,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:39,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:39,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:39,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:15:39,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:15:39,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:40,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:40,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:40,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:41,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:15:41,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:15:41,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:42,986 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:15:42,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:15:43,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:15:43,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 14:15:43,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 14:15:43,291 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:15:43,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:43,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:43,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:43,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:15:43,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:15:43,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:46,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:46,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:46,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:46,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:15:46,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:15:46,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:47,570 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:15:47,612 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:15:47,711 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.219 +2025-10-01 14:15:47,711 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 14:15:47,713 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 14:15:49,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:49,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:49,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:49,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:15:49,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:15:49,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:49,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:49,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:49,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:49,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:15:49,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:15:49,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:51,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:51,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:51,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:51,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:15:51,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:15:51,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:53,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:53,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:53,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:53,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:15:53,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:15:53,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:53,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:53,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:53,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:54,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:15:54,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:15:54,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:56,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:56,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:56,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:56,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:15:57,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:15:57,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:57,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:57,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:57,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:57,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:15:57,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:15:57,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:57,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:57,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:57,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:57,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:15:57,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:15:57,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:58,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:58,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:58,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:58,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:15:58,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:15:58,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:15:59,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:15:59,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:15:59,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:15:59,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:15:59,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:15:59,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:01,204 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:16:01,227 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:16:01,334 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.012 +2025-10-01 14:16:01,334 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +2025-10-01 14:16:01,334 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-01 14:16:01,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:01,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:01,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:02,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:16:02,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:16:02,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:04,065 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:16:04,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:16:04,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:16:04,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 14:16:04,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 14:16:04,344 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:16:05,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:16:05,104 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:16:05,214 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.442 +2025-10-01 14:16:05,214 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-01 14:16:05,214 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-01 14:16:06,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:06,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:06,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:06,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:16:06,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:16:06,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:08,986 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:16:09,008 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:16:09,092 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.267 +2025-10-01 14:16:09,092 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:16:09,093 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:16:09,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:09,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:09,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:10,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 14:16:10,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 14:16:10,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:10,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:10,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:10,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:10,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:16:10,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:16:10,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:11,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:11,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:11,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:11,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:16:11,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:16:11,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:11,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:11,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:11,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:12,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:16:12,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:16:12,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:14,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:14,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:14,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:14,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:16:14,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:16:14,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:15,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:15,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:15,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:15,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:16:15,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:16:15,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:15,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:15,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:15,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:15,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:16:15,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:16:15,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:18,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:18,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:18,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:18,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:16:18,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:16:18,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:19,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:19,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:19,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:19,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:16:19,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:16:19,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:19,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:19,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:19,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:19,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:16:19,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:16:19,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:19,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:19,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:19,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:20,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 14:16:20,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 14:16:20,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:21,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:21,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:21,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:21,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:16:21,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:16:21,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:24,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:24,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:24,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:24,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:16:24,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:16:24,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:24,949 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:16:24,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:16:24,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:16:25,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.258s +2025-10-01 14:16:25,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.258s (avg: 0.129s/image) +2025-10-01 14:16:25,209 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:16:25,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:25,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:25,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:25,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:16:25,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:16:25,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:26,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:26,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:26,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:26,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:16:26,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:16:26,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:26,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:26,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:26,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:27,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:16:27,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:16:27,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:29,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:29,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:29,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:29,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:16:29,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:16:29,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:30,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:30,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:30,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:30,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:16:30,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:16:30,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:30,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:30,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:30,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:30,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:16:30,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:16:30,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:32,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:32,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:32,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:32,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:16:32,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:16:32,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:34,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:34,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:34,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:34,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:16:34,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:16:34,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:34,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:34,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:34,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:35,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:16:35,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:16:35,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:35,669 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:16:35,694 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:16:35,789 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.936 +2025-10-01 14:16:35,789 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 14:16:35,789 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 14:16:36,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:36,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:36,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:36,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:16:36,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:16:36,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:36,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:36,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:36,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:36,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:16:36,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:16:36,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:37,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:37,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:37,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:37,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:16:37,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:16:37,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:39,579 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:16:39,603 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:16:39,682 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.109 +2025-10-01 14:16:39,683 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:16:39,683 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 14:16:41,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:41,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:41,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:41,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:16:41,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:16:41,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:41,603 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:16:41,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:16:41,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:16:41,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 14:16:41,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 14:16:41,888 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:16:43,103 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:16:43,129 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:16:43,211 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.112 +2025-10-01 14:16:43,211 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 14:16:43,212 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:16:43,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:43,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:43,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:44,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:16:44,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:16:44,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:45,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:45,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:45,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:45,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:16:45,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:16:45,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:45,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:45,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:45,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:45,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:16:45,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:16:45,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:47,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:47,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:47,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:47,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:16:47,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:16:47,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:49,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:49,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:49,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:49,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:16:49,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:16:49,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:50,051 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:16:50,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:16:50,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:16:50,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 14:16:50,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 14:16:50,341 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:16:50,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:50,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:50,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:51,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:16:51,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:16:51,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:55,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:55,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:55,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:55,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:16:55,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:16:55,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:56,279 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:16:56,300 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:16:56,382 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.781 +2025-10-01 14:16:56,382 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 14:16:56,382 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:16:56,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:56,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:56,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:56,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:16:56,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:16:56,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:16:59,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:16:59,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:16:59,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:16:59,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:16:59,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:16:59,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:00,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:00,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:00,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:00,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:17:00,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:17:00,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:02,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:02,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:02,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:02,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:17:02,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:17:02,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:04,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:04,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:04,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:04,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:17:04,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:17:04,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:09,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:09,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:09,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:10,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:17:10,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:17:10,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:13,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:13,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:13,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:13,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:17:13,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:17:13,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:16,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:16,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:16,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:16,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:17:16,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:17:16,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:18,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:18,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:18,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:18,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:17:18,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:17:18,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:18,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:18,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:18,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:18,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:17:18,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:17:18,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:20,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:20,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:20,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:20,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:17:20,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:17:20,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:22,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:22,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:22,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:22,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:17:22,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:17:22,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:25,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:25,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:25,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:25,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:17:25,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:17:25,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:25,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:25,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:25,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:26,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:17:26,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:17:26,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:28,315 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:17:28,343 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:17:28,439 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.711 +2025-10-01 14:17:28,439 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 14:17:28,441 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 14:17:29,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:29,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:29,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:29,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:17:29,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:17:29,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:31,680 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:17:31,702 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:17:31,818 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.254 +2025-10-01 14:17:31,818 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.114s +2025-10-01 14:17:31,819 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.117s +2025-10-01 14:17:34,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:34,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:34,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:35,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:17:35,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:17:35,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:35,142 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:17:35,168 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:17:35,273 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.018 +2025-10-01 14:17:35,274 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 14:17:35,275 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 14:17:35,456 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:17:35,477 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:17:35,560 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.844 +2025-10-01 14:17:35,560 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:17:35,560 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:17:36,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:36,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:36,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:37,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:17:37,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:17:37,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:40,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:40,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:40,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:40,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:17:40,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:17:40,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:43,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:43,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:43,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:43,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:17:43,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:17:43,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:47,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:47,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:47,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:47,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:17:47,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:17:47,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:47,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:47,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:47,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:47,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:17:47,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:17:47,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:49,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:49,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:49,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:50,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:17:50,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:17:50,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:51,285 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:17:51,310 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:17:51,393 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.581 +2025-10-01 14:17:51,393 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:17:51,394 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:17:52,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:52,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:52,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:52,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:17:52,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:17:52,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:55,489 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:17:55,522 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:17:55,598 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.664 +2025-10-01 14:17:55,598 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:17:55,598 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:17:55,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:55,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:55,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:56,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:17:56,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:17:56,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:56,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:56,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:56,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:56,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:17:56,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:17:56,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:56,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:56,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:56,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:56,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:17:56,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:17:56,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:58,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:17:58,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:17:58,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:17:58,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 14:17:58,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 14:17:58,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:17:59,558 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:17:59,591 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:17:59,704 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.168 +2025-10-01 14:17:59,704 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.112s +2025-10-01 14:17:59,706 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.115s +2025-10-01 14:18:00,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:00,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:00,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:00,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:18:00,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:18:00,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:02,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:02,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:02,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:02,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:18:02,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:18:02,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:02,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:02,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:03,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:03,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:18:03,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:18:03,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:04,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:04,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:04,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:04,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:18:04,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:18:04,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:05,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:05,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:05,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:05,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:18:05,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:18:05,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:08,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:08,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:08,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:08,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:18:08,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:18:08,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:08,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:08,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:08,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:09,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:18:09,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:18:09,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:09,520 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:18:09,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:18:09,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:18:09,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 14:18:09,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-01 14:18:09,795 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:18:14,859 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:18:14,885 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:18:14,989 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.196 +2025-10-01 14:18:14,989 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 14:18:14,989 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 14:18:15,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:15,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:15,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:15,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 14:18:15,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 14:18:15,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:15,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:15,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:15,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:15,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:18:15,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:18:15,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:16,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:16,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:16,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:16,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:18:16,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:18:16,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:16,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:16,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:16,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:16,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:18:16,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:18:16,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:19,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:19,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:19,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:19,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:18:19,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:18:19,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:20,207 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:18:20,231 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:18:20,322 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.845 +2025-10-01 14:18:20,322 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 14:18:20,322 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 14:18:21,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:21,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:21,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:21,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:18:21,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:18:21,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:23,560 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:18:23,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:18:23,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:18:23,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 14:18:23,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 14:18:23,843 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:18:24,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:24,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:24,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:24,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:18:24,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:18:24,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:24,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:24,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:24,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:24,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:18:24,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:18:24,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:26,502 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:18:26,528 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:18:26,609 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.658 +2025-10-01 14:18:26,609 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 14:18:26,609 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 14:18:27,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:27,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:27,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:27,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:18:27,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:18:27,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:29,177 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:18:29,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:18:29,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:18:29,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 14:18:29,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 14:18:29,479 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:18:29,920 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:18:29,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:18:29,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:18:30,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 14:18:30,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 14:18:30,226 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:18:31,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:31,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:31,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:31,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:18:31,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:18:31,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:34,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:34,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:34,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:34,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:18:34,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:18:34,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:34,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:34,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:34,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:34,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:18:34,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:18:34,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:39,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:39,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:39,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:39,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:18:39,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:18:39,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:39,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:39,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:39,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:39,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:18:39,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:18:39,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:40,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:40,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:40,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:41,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:18:41,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:18:41,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:42,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:42,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:42,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:42,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:18:42,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:18:42,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:43,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:43,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:43,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:43,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:18:43,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:18:43,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:44,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:44,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:44,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:44,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:18:44,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:18:44,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:46,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:46,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:46,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:46,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:18:46,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:18:46,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:47,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:47,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:48,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:48,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:18:48,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:18:48,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:49,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:49,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:49,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:49,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:18:49,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:18:49,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:50,024 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:18:50,051 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:18:50,159 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.099 +2025-10-01 14:18:50,160 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.108s +2025-10-01 14:18:50,161 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-01 14:18:50,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:50,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:50,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:50,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:18:50,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:18:50,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:52,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:52,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:52,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:52,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:18:52,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:18:52,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:52,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:52,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:52,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:52,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:18:52,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:18:52,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:53,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:53,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:53,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:53,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:18:53,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:18:53,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:53,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:53,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:53,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:53,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:18:53,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:18:53,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:54,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:54,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:54,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:54,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:18:54,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:18:54,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:54,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:54,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:54,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:54,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:18:54,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:18:54,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:54,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:54,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:55,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:55,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:18:55,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:18:55,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:56,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:56,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:57,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:57,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:18:57,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:18:57,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:57,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:57,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:57,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:58,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:18:58,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:18:58,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:58,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:58,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:58,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:58,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 14:18:58,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 14:18:58,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:18:59,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:18:59,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:18:59,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:18:59,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:18:59,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:18:59,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:00,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:00,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:00,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:00,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:19:00,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:19:00,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:02,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:02,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:02,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:02,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:19:02,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:19:02,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:02,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:02,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:02,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:02,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:19:02,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:19:02,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:04,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:04,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:04,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:04,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:19:04,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:19:04,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:05,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:05,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:05,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:05,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:19:05,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:19:05,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:06,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:06,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:06,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:06,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:19:06,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:19:06,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:07,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:07,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:07,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:07,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:19:07,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:19:07,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:11,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:11,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:11,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:11,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:19:11,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:19:11,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:12,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:12,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:12,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:12,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:19:12,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:19:12,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:14,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:14,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:14,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:14,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:19:14,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:19:14,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:16,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:16,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:16,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:16,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:19:16,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:19:16,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:16,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:16,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:17,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:17,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:19:17,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:19:17,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:18,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:18,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:18,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:18,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:19:18,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:19:18,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:21,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:21,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:21,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:22,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:19:22,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:19:22,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:22,568 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:19:22,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:19:22,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:19:22,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 14:19:22,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 14:19:22,862 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:19:23,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:23,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:23,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:23,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:19:23,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:19:23,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:27,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:27,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:27,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:27,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:19:27,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:19:27,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:28,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:28,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:28,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:28,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:19:28,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:19:28,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:29,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:29,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:29,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:29,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:19:29,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:19:29,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:29,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:29,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:29,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:30,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:19:30,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:19:30,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:33,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:33,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:33,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:33,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:19:33,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:19:33,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:34,286 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:19:34,317 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:19:34,415 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.310 +2025-10-01 14:19:34,415 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 14:19:34,415 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 14:19:35,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:35,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:35,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:35,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 14:19:35,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 14:19:35,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:35,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:35,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:35,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:35,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:19:35,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:19:35,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:37,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:37,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:37,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:37,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:19:37,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:19:37,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:44,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:44,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:45,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:45,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:19:45,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:19:45,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:45,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:45,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:45,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:45,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:19:45,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:19:45,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:46,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:46,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:46,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:47,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:19:47,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:19:47,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:48,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:48,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:48,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:48,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:19:48,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:19:48,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:53,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:53,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:53,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:53,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:19:53,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:19:53,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:53,299 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:19:53,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:19:53,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:19:53,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 14:19:53,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 14:19:53,585 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:19:54,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:54,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:54,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:54,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:19:54,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:19:54,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:55,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:55,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:55,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:55,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:19:55,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:19:55,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:57,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:57,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:57,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:58,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:19:58,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:19:58,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:58,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:58,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:58,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:58,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:19:58,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:19:58,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:58,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:19:58,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:19:58,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:19:59,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:19:59,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:19:59,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:19:59,849 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:19:59,873 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:19:59,973 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.085 +2025-10-01 14:19:59,973 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 14:19:59,974 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 14:20:03,453 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:20:03,472 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:20:03,550 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.640 +2025-10-01 14:20:03,551 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:20:03,551 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:20:04,534 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:20:04,570 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:20:04,671 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.904 +2025-10-01 14:20:04,672 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 14:20:04,674 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 14:20:05,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:05,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:05,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:05,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:20:05,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:20:05,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:06,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:06,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:06,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:06,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:20:06,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:20:06,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:07,641 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:20:07,664 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:20:07,770 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.392 +2025-10-01 14:20:07,770 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s +2025-10-01 14:20:07,770 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 14:20:08,065 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:20:08,098 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:20:08,206 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.105 +2025-10-01 14:20:08,206 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +2025-10-01 14:20:08,208 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.109s +2025-10-01 14:20:08,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:08,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:08,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:08,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:20:08,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:20:08,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:10,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:10,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:10,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:10,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:20:10,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:20:10,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:11,465 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:20:11,491 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:20:11,612 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.499 +2025-10-01 14:20:11,612 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.119s +2025-10-01 14:20:11,613 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.122s +2025-10-01 14:20:13,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:13,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:13,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:13,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.214s +2025-10-01 14:20:13,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.214s (avg: 0.214s/image) +2025-10-01 14:20:13,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:14,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:14,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:14,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:15,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:20:15,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:20:15,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:16,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:16,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:16,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:16,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:20:16,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:20:16,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:17,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:17,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:17,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:17,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:20:17,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:20:17,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:21,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:21,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:21,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:21,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:20:21,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:20:21,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:21,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:21,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:21,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:21,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:20:21,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:20:21,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:22,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:22,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:22,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:22,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:20:22,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:20:22,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:23,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:23,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:23,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:23,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:20:23,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:20:23,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:27,403 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:20:27,430 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:20:27,533 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.336 +2025-10-01 14:20:27,533 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 14:20:27,534 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 14:20:27,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:27,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:27,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:27,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:20:27,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:20:27,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:33,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:33,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:33,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:33,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:20:33,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:20:33,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:39,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:39,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:39,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:39,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:20:39,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:20:39,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:39,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:39,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:39,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:39,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:20:39,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:20:39,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:40,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:40,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:40,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:40,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:20:40,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:20:40,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:43,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:43,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:43,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:43,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:20:43,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:20:43,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:43,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:43,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:44,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:44,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:20:44,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:20:44,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:44,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:44,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:44,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:44,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:20:44,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:20:44,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:47,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:47,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:47,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:47,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:20:47,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:20:47,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:47,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:47,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:47,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:48,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:20:48,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:20:48,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:50,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:50,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:50,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:50,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:20:50,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:20:50,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:51,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:51,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:51,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:51,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:20:51,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:20:51,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:51,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:51,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:51,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:52,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:20:52,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:20:52,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:55,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:55,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:55,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:55,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 14:20:55,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 14:20:55,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:55,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:55,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:55,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:55,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:20:55,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:20:55,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:58,254 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:20:58,277 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:20:58,382 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.906 +2025-10-01 14:20:58,382 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 14:20:58,383 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 14:20:58,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:58,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:58,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:58,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:20:58,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:20:58,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:20:59,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:20:59,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:20:59,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:20:59,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:20:59,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:20:59,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:00,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:00,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:00,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:00,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:21:00,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:21:00,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:03,733 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:21:03,761 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:21:03,864 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.903 +2025-10-01 14:21:03,865 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 14:21:03,865 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 14:21:04,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:04,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:04,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:04,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:21:04,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:21:04,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:04,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:04,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:04,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:04,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:21:04,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:21:04,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:06,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:06,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:06,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:06,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 14:21:06,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 14:21:06,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:13,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:13,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:13,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:13,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.211s +2025-10-01 14:21:13,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.211s (avg: 0.211s/image) +2025-10-01 14:21:13,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:18,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:18,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:18,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:18,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 14:21:18,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 14:21:18,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:18,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:18,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:18,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:18,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:21:18,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:21:18,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:19,196 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:21:19,238 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:21:19,330 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.997 +2025-10-01 14:21:19,330 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 14:21:19,331 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 14:21:22,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:22,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:22,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:22,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 14:21:22,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 14:21:22,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:22,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:22,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:22,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:22,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:21:22,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:21:22,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:23,140 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:21:23,165 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:21:23,243 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.475 +2025-10-01 14:21:23,243 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:21:23,243 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 14:21:25,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:25,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:25,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:25,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:21:25,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:21:25,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:26,349 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:21:26,368 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:21:26,465 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.002 +2025-10-01 14:21:26,465 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 14:21:26,465 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 14:21:27,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:27,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:27,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:28,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:21:28,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:21:28,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:31,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:31,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:31,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:31,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:21:31,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:21:31,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:36,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:36,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:36,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:36,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:21:36,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:21:36,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:38,944 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:21:38,967 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:21:39,056 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.439 +2025-10-01 14:21:39,056 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 14:21:39,057 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 14:21:43,899 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:21:43,921 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:21:43,995 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.353 +2025-10-01 14:21:43,995 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 14:21:43,995 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:21:44,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:44,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:44,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:44,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:21:44,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:21:44,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:47,257 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:21:47,278 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:21:47,351 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.417 +2025-10-01 14:21:47,351 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 14:21:47,352 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 14:21:47,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:47,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:47,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:47,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:21:47,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:21:47,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:49,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:49,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:49,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:49,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:21:49,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:21:49,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:50,613 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:21:50,636 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:21:50,713 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.338 +2025-10-01 14:21:50,713 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:21:50,713 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:21:52,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:52,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:52,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:52,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:21:52,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:21:52,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:52,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:52,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:53,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:53,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:21:53,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:21:53,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:53,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:53,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:53,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:54,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:21:54,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:21:54,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:54,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:54,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:54,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:54,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:21:54,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:21:54,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:21:59,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:21:59,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:21:59,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:21:59,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:21:59,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:21:59,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:01,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:01,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:01,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:01,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:22:01,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:22:01,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:02,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:02,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:02,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:02,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:22:02,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:22:02,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:02,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:02,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:02,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:02,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:22:02,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:22:02,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:03,104 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:22:03,132 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:22:03,213 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.259 +2025-10-01 14:22:03,214 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 14:22:03,214 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 14:22:04,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:04,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:04,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:04,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:22:04,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:22:04,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:07,960 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:22:07,990 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:22:08,072 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.674 +2025-10-01 14:22:08,073 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 14:22:08,073 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:22:09,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:09,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:09,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:10,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:22:10,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:22:10,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:10,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:10,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:10,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:10,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:22:10,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:22:10,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:11,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:11,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:11,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:11,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 14:22:11,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 14:22:11,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:11,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:11,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:11,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:11,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:22:11,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:22:11,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:15,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:15,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:15,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:15,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:22:15,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:22:15,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:16,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:16,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:16,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:16,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:22:16,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:22:16,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:19,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:19,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:19,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:20,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:22:20,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:22:20,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:20,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:20,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:20,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:20,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 14:22:20,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 14:22:20,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:20,738 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:22:20,753 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:22:20,843 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.477 +2025-10-01 14:22:20,844 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 14:22:20,844 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 14:22:21,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:21,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:21,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:21,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:22:21,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:22:21,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:24,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:24,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:24,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:24,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:22:24,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:22:24,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:25,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:25,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:25,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:25,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:22:25,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:22:25,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:26,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:26,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:26,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:27,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:22:27,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:22:27,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:27,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:27,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:27,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:27,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:22:27,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:22:27,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:27,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:27,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:27,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:27,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:22:27,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:22:27,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:30,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:30,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:30,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:30,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:22:30,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:22:30,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:31,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:31,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:31,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:31,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:22:31,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:22:31,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:34,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:34,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:34,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:34,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:22:34,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:22:34,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:35,553 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:22:35,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:22:35,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:22:35,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 14:22:35,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 14:22:35,845 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:22:42,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:42,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:42,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:42,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 14:22:42,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 14:22:42,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:44,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:44,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:44,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:44,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:22:44,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:22:44,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:44,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:44,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:44,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:44,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:22:44,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:22:44,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:45,712 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:22:45,755 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:22:45,847 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.595 +2025-10-01 14:22:45,848 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 14:22:45,849 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 14:22:48,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:48,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:48,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:48,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 14:22:48,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 14:22:48,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:49,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:49,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:49,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:49,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:22:49,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:22:49,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:50,087 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:22:50,119 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:22:50,218 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.919 +2025-10-01 14:22:50,219 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 14:22:50,219 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 14:22:52,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:52,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:52,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:52,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:22:52,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:22:52,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:53,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:53,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:53,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:53,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:22:53,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:22:53,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:53,794 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:22:53,819 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:22:53,897 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.689 +2025-10-01 14:22:53,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:22:53,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 14:22:54,120 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:22:54,137 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:22:54,213 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.396 +2025-10-01 14:22:54,213 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:22:54,213 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 14:22:54,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:54,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:54,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:54,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:22:54,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:22:54,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:56,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:56,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:56,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:56,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:22:56,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:22:56,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:22:58,172 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:22:58,208 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:22:58,300 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=169.219 +2025-10-01 14:22:58,300 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 14:22:58,300 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 14:22:59,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:22:59,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:22:59,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:22:59,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:22:59,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:22:59,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:01,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:01,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:01,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:01,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.121s +2025-10-01 14:23:01,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.121s (avg: 0.121s/image) +2025-10-01 14:23:01,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:01,624 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:23:01,638 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:23:01,726 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.653 +2025-10-01 14:23:01,727 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 14:23:01,727 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 14:23:01,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:01,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:01,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:02,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:23:02,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:23:02,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:03,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:03,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:03,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:03,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:23:03,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:23:03,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:05,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:05,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:05,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:05,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:23:05,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:23:05,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:07,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:07,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:07,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:07,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:23:07,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:23:07,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:10,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:10,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:10,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:10,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:23:10,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:23:10,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:13,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:13,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:13,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:13,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:23:13,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:23:13,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:19,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:19,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:19,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:19,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:23:19,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:23:19,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:21,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:21,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:21,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:21,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:23:21,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:23:21,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:27,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:27,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:27,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:27,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:23:27,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:23:27,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:27,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:27,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:27,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:27,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:23:27,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:23:27,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:29,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:29,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:29,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:29,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 14:23:29,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 14:23:29,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:29,612 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:23:29,636 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:23:29,723 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.518 +2025-10-01 14:23:29,723 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 14:23:29,723 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 14:23:30,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:30,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:30,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:30,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:23:30,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:23:30,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:34,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:34,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:34,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:34,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:23:34,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:23:34,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:35,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:35,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:35,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:35,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:23:35,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:23:35,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:38,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:38,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:38,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:38,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:23:38,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:23:38,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:42,187 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:23:42,227 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:23:42,306 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.678 +2025-10-01 14:23:42,306 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:23:42,306 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 14:23:42,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:42,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:42,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:42,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:23:42,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:23:42,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:43,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:43,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:43,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:43,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:23:43,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:23:43,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:43,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:43,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:43,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:43,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:23:43,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:23:43,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:44,991 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:23:45,029 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:23:45,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.107 +2025-10-01 14:23:45,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 14:23:45,111 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 14:23:46,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:46,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:46,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:46,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:23:46,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:23:46,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:46,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:46,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:46,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:46,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:23:46,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:23:46,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:47,446 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:23:47,471 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:23:47,563 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.191 +2025-10-01 14:23:47,563 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 14:23:47,563 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 14:23:50,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:50,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:50,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:50,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:23:50,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:23:50,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:51,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:51,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:51,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:51,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:23:51,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:23:51,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:54,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:54,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:54,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:54,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:23:54,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:23:54,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:23:56,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:23:56,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:23:56,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:23:56,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:23:56,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:23:56,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:00,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:00,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:00,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:00,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:24:00,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:24:00,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:09,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:09,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:09,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:09,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:24:09,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:24:09,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:16,427 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:24:16,451 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:24:16,535 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.912 +2025-10-01 14:24:16,536 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 14:24:16,536 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 14:24:17,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:17,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:17,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:18,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:24:18,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:24:18,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:21,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:21,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:21,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:22,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:24:22,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:24:22,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:25,415 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:24:25,441 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:24:25,519 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.648 +2025-10-01 14:24:25,519 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:24:25,519 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:24:26,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:26,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:26,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:26,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:24:26,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:24:26,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:27,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:27,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:27,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:28,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:24:28,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:24:28,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:29,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:29,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:29,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:29,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:24:29,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:24:29,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:32,210 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:24:32,229 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:24:32,303 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.880 +2025-10-01 14:24:32,304 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 14:24:32,304 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:24:32,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:32,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:32,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:32,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:24:32,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:24:32,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:34,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:34,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:34,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:34,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:24:34,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:24:34,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:34,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:34,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:34,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:35,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:24:35,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:24:35,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:35,360 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:24:35,397 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:24:35,485 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.086 +2025-10-01 14:24:35,485 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 14:24:35,485 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 14:24:35,665 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:24:35,683 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:24:35,758 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.692 +2025-10-01 14:24:35,758 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 14:24:35,759 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:24:36,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:36,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:36,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:36,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:24:36,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:24:36,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:39,051 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:24:39,075 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:24:39,157 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.555 +2025-10-01 14:24:39,158 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 14:24:39,158 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:24:40,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:40,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:40,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:40,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:24:40,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:24:40,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:42,768 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:24:42,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:24:42,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:24:43,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 14:24:43,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 14:24:43,052 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:24:44,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:44,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:44,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:44,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:24:44,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:24:44,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:47,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:47,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:47,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:48,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:24:48,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:24:48,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:50,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:50,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:50,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:50,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:24:50,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:24:50,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:52,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:52,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:52,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:52,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:24:52,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:24:52,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:24:59,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:24:59,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:24:59,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:24:59,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:24:59,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:24:59,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:00,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:00,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:00,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:00,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:25:00,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:25:00,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:00,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:00,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:00,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:00,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:25:00,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:25:00,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:01,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:01,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:01,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:01,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:25:01,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:25:01,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:05,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:05,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:05,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:05,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:25:05,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:25:05,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:07,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:07,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:07,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:07,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:25:07,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:25:07,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:07,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:07,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:07,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:08,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:25:08,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:25:08,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:08,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:08,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:08,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:08,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 14:25:08,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 14:25:08,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:08,448 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:25:08,475 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:25:08,593 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.613 +2025-10-01 14:25:08,593 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.117s +2025-10-01 14:25:08,595 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.120s +2025-10-01 14:25:10,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:10,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:10,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:10,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:25:10,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:25:10,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:10,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:10,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:10,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:10,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:25:10,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:25:10,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:16,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:16,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:16,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:16,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 14:25:16,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 14:25:16,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:21,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:21,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:21,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:21,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:25:21,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:25:21,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:22,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:22,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:22,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:22,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:25:22,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:25:22,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:25,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:25,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:25,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:25,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:25:25,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:25:25,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:26,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:26,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:26,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:26,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:25:26,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:25:26,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:30,152 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:25:30,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:25:30,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:25:30,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 14:25:30,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 14:25:30,445 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:25:31,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:31,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:31,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:31,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:25:31,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:25:31,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:33,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:33,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:33,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:33,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:25:33,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:25:33,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:33,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:33,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:33,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:34,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:25:34,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:25:34,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:35,079 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:25:35,100 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:25:35,187 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.779 +2025-10-01 14:25:35,188 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:25:35,188 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 14:25:38,314 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:25:38,335 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:25:38,409 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=183.263 +2025-10-01 14:25:38,409 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 14:25:38,409 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:25:38,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:38,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:38,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:39,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:25:39,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:25:39,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:39,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:39,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:39,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:39,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:25:39,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:25:39,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:40,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:40,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:40,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:40,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:25:40,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:25:40,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:42,970 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:25:42,999 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:25:43,075 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.505 +2025-10-01 14:25:43,076 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:25:43,076 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:25:45,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:45,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:45,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:45,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:25:45,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:25:45,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:48,195 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:25:48,223 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:25:48,315 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.217 +2025-10-01 14:25:48,315 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 14:25:48,317 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 14:25:48,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:48,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:48,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:48,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:25:48,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:25:48,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:50,320 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:25:50,340 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:25:50,434 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.785 +2025-10-01 14:25:50,434 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 14:25:50,434 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 14:25:51,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:51,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:51,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:51,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:25:51,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:25:51,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:53,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:53,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:53,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:53,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:25:53,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:25:53,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:54,168 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:25:54,189 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:25:54,261 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.021 +2025-10-01 14:25:54,261 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 14:25:54,262 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 14:25:57,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:25:57,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:25:57,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:25:57,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:25:57,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:25:57,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:25:57,639 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:25:57,656 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:25:57,736 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.289 +2025-10-01 14:25:57,736 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:25:57,736 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 14:26:03,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:03,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:03,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:04,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 14:26:04,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 14:26:04,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:04,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:04,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:04,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:04,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:26:04,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:26:04,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:04,697 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:26:04,715 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:26:04,790 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.109 +2025-10-01 14:26:04,790 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 14:26:04,790 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:26:08,122 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:26:08,140 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:26:08,219 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.937 +2025-10-01 14:26:08,220 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:26:08,220 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 14:26:08,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:08,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:08,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:08,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:26:08,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:26:08,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:12,477 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:26:12,506 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(785, 785, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:26:12,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.037 +2025-10-01 14:26:12,587 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 14:26:12,588 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:26:12,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:12,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:12,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:13,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:26:13,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:26:13,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:13,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:13,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:13,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:13,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:26:13,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:26:13,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:17,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:17,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:17,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:17,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:26:17,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:26:17,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:18,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:18,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:18,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:18,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:26:18,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:26:18,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:18,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:18,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:18,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:18,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:26:18,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:26:18,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:21,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:21,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:21,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:21,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 14:26:21,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 14:26:21,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:23,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:23,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:23,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:23,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:26:23,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:26:23,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:25,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:25,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:25,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:25,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:26:25,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:26:25,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:25,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:25,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:25,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:25,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:26:25,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:26:25,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:28,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:28,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:28,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:28,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:26:28,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:26:28,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:30,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:30,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:30,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:30,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 14:26:30,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 14:26:30,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:33,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:33,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:33,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:33,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:26:33,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:26:33,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:34,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:34,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:34,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:34,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:26:34,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:26:34,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:38,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:38,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:38,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:38,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 14:26:38,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 14:26:38,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:39,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:39,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:39,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:39,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:26:39,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:26:39,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:44,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:44,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:44,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:44,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 14:26:44,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 14:26:44,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:45,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:45,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:45,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:45,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:26:45,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:26:45,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:48,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:48,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:48,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:48,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:26:48,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:26:48,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:48,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:48,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:48,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:48,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 14:26:48,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 14:26:48,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:49,244 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:26:49,275 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:26:49,364 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.822 +2025-10-01 14:26:49,364 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 14:26:49,365 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 14:26:51,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:51,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:51,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:51,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:26:51,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:26:51,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:52,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:52,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:52,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:52,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:26:52,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:26:52,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:52,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:52,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:52,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:52,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:26:52,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:26:52,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:56,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:56,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:56,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:56,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:26:56,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:26:56,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:56,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:56,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:56,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:57,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 14:26:57,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 14:26:57,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:59,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:59,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:59,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:59,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:26:59,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:26:59,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:26:59,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:26:59,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:26:59,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:26:59,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:26:59,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:26:59,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:09,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:09,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:09,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:10,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:27:10,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:27:10,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:10,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:10,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:10,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:10,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:27:10,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:27:10,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:12,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:12,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:12,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:12,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:27:12,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:27:12,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:13,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:13,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:13,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:13,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:27:13,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:27:13,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:14,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:14,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:14,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:14,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:27:14,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:27:14,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:16,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:16,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:16,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:16,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:27:16,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:27:16,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:16,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:16,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:16,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:16,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 14:27:16,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 14:27:16,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:18,494 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:27:18,530 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:27:18,637 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.988 +2025-10-01 14:27:18,637 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s +2025-10-01 14:27:18,639 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.109s +2025-10-01 14:27:18,851 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:27:18,870 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(760, 760, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:27:18,970 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.775 +2025-10-01 14:27:18,970 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 14:27:18,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 14:27:19,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:19,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:19,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:19,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:27:19,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:27:19,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:22,198 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:27:22,222 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(760, 760, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:27:22,308 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.030 +2025-10-01 14:27:22,308 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 14:27:22,308 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 14:27:22,716 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:27:22,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:27:22,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:27:22,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 14:27:22,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 14:27:22,996 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:27:23,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:23,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:23,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:23,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 14:27:23,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 14:27:23,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:25,525 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:27:25,545 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(760, 760, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:27:25,647 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=171.173 +2025-10-01 14:27:25,647 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 14:27:25,648 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 14:27:28,957 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:27:28,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:27:29,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:27:29,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 14:27:29,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 14:27:29,255 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:27:29,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:29,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:29,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:30,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:27:30,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:27:30,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:31,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:31,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:31,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:31,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:27:31,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:27:31,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:33,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:33,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:33,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:34,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:27:34,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:27:34,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:34,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:34,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:34,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:34,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:27:34,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:27:34,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:35,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:35,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:35,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:35,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:27:35,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:27:35,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:38,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:38,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:38,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:39,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:27:39,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:27:39,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:40,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:40,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:40,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:40,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:27:40,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:27:40,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:41,877 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:27:41,903 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:27:41,991 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.599 +2025-10-01 14:27:41,991 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:27:41,991 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 14:27:46,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:46,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:46,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:46,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:27:46,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:27:46,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:47,509 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:27:47,548 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:27:47,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.670 +2025-10-01 14:27:47,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:27:47,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:27:48,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:48,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:48,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:48,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:27:48,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:27:48,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:52,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:52,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:52,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:52,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:27:52,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:27:52,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:27:53,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:27:53,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:27:53,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:27:53,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 14:27:53,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 14:27:53,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:01,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:01,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:01,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:01,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:28:01,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:28:01,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:02,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:02,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:02,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:02,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:28:02,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:28:02,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:06,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:06,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:06,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:07,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:28:07,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:28:07,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:14,464 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:28:14,505 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:28:14,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.895 +2025-10-01 14:28:14,604 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 14:28:14,606 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 14:28:16,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:16,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:16,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:16,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:28:16,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:28:16,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:19,106 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:28:19,136 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:28:19,225 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.532 +2025-10-01 14:28:19,225 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 14:28:19,225 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 14:28:23,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:23,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:23,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:23,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:28:23,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:28:23,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:23,416 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:28:23,438 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:28:23,524 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=171.140 +2025-10-01 14:28:23,524 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 14:28:23,525 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 14:28:25,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:25,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:25,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:26,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:28:26,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:28:26,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:27,284 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:28:27,316 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:28:27,393 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=170.902 +2025-10-01 14:28:27,393 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:28:27,393 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:28:30,256 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:28:30,290 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:28:30,377 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.072 +2025-10-01 14:28:30,378 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 14:28:30,379 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 14:28:31,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:31,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:31,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:31,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:28:31,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:28:31,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:32,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:32,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:32,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:32,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:28:32,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:28:32,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:40,485 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:28:40,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:28:40,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:28:40,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 14:28:40,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 14:28:40,798 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:28:40,904 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:28:40,921 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:28:41,011 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.960 +2025-10-01 14:28:41,011 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 14:28:41,011 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 14:28:43,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:43,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:43,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:43,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:28:43,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:28:43,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:44,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:44,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:44,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:44,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:28:44,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:28:44,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:48,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:48,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:48,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:48,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:28:48,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:28:48,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:49,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:49,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:49,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:49,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:28:49,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:28:49,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:49,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:49,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:49,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:50,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:28:50,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:28:50,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:52,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:52,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:52,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:52,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:28:52,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:28:52,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:57,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:57,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:57,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:57,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:28:57,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:28:57,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:28:58,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:28:58,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:28:58,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:28:58,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:28:58,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:28:58,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:03,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:03,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:04,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:04,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:29:04,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:29:04,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:04,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:04,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:05,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:05,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:29:05,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:29:05,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:12,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:12,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:12,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:12,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:29:12,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:29:12,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:12,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:12,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:12,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:13,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:29:13,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:29:13,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:17,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:17,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:17,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:17,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:29:17,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:29:17,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:17,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:17,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:17,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:18,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:29:18,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:29:18,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:18,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:18,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:18,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:18,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:29:18,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:29:18,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:21,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:21,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:21,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:21,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:29:21,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:29:21,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:25,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:25,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:25,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:26,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:29:26,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:29:26,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:32,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:32,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:32,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:32,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:29:32,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:29:32,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:33,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:33,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:33,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:33,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:29:33,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:29:33,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:34,596 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:29:34,622 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:29:34,714 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.103 +2025-10-01 14:29:34,715 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 14:29:34,715 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 14:29:35,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:35,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:35,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:35,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:29:35,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:29:35,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:36,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:36,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:36,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:36,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:29:36,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:29:36,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:38,270 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:29:38,295 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:29:38,372 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.278 +2025-10-01 14:29:38,373 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:29:38,373 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 14:29:39,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:39,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:39,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:39,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:29:39,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:29:39,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:41,583 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:29:41,606 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:29:41,681 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.491 +2025-10-01 14:29:41,682 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 14:29:41,682 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:29:42,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:42,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:42,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:42,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:29:42,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:29:42,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:42,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:42,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:42,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:43,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:29:43,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:29:43,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:45,272 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:29:45,302 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:29:45,393 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.330 +2025-10-01 14:29:45,393 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 14:29:45,395 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 14:29:49,717 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:29:49,743 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:29:49,852 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.371 +2025-10-01 14:29:49,852 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.108s +2025-10-01 14:29:49,853 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-01 14:29:49,933 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:29:49,957 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:29:50,056 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.423 +2025-10-01 14:29:50,056 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 14:29:50,057 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 14:29:50,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:50,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:50,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:50,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 14:29:50,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 14:29:50,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:51,592 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:29:51,633 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:29:51,749 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.865 +2025-10-01 14:29:51,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.115s +2025-10-01 14:29:51,750 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.117s +2025-10-01 14:29:52,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:52,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:52,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:52,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:29:52,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:29:52,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:53,045 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:29:53,076 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:29:53,170 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.277 +2025-10-01 14:29:53,170 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 14:29:53,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 14:29:54,855 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:29:54,877 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:29:54,961 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.634 +2025-10-01 14:29:54,961 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:29:54,963 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 14:29:56,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:56,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:56,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:56,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:29:56,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:29:56,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:57,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:29:57,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:29:57,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:29:57,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:29:57,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:29:57,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:29:58,192 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:29:58,219 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:29:58,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.010 +2025-10-01 14:29:58,319 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 14:29:58,319 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 14:30:01,194 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:30:01,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:30:01,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:30:01,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 14:30:01,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 14:30:01,471 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:30:02,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:02,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:02,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:02,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:30:02,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:30:02,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:04,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:04,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:04,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:04,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:30:04,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:30:04,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:04,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:04,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:04,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:04,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:30:04,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:30:04,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:04,713 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:30:04,735 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:30:04,810 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.036 +2025-10-01 14:30:04,811 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 14:30:04,811 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:30:08,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:08,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:08,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:08,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:30:08,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:30:08,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:08,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:08,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:08,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:08,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:30:08,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:30:08,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:09,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:09,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:09,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:09,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:30:09,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:30:09,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:12,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:12,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:12,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:12,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:30:12,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:30:12,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:13,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:13,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:13,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:13,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:30:13,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:30:13,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:16,946 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:30:16,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:30:17,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:30:17,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 14:30:17,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 14:30:17,256 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:30:17,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:17,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:17,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:18,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:30:18,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:30:18,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:21,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:21,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:21,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:21,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:30:21,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:30:21,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:23,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:23,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:23,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:23,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:30:23,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:30:23,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:24,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:24,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:24,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:24,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:30:24,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:30:24,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:25,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:25,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:25,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:25,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:30:25,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:30:25,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:27,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:27,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:27,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:28,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:30:28,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:30:28,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:29,669 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:30:29,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:30:29,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:30:29,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 14:30:29,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 14:30:29,943 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:30:30,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:30,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:30,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:30,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:30:30,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:30:30,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:32,864 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:30:32,891 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:30:32,975 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.270 +2025-10-01 14:30:32,976 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:30:32,976 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 14:30:33,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:33,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:33,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:34,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:30:34,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:30:34,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:34,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:34,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:34,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:34,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:30:34,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:30:34,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:36,708 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:30:36,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:30:36,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:30:37,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 14:30:37,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 14:30:37,007 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:30:37,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:37,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:37,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:37,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 14:30:37,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 14:30:37,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:38,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:38,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:38,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:38,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:30:38,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:30:38,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:40,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:40,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:40,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:40,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:30:40,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:30:40,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:42,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:42,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:42,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:42,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:30:42,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:30:42,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:42,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:42,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:42,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:42,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:30:42,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:30:42,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:44,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:44,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:44,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:44,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:30:44,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:30:44,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:45,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:45,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:45,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:45,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:30:45,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:30:45,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:45,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:45,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:45,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:46,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:30:46,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:30:46,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:48,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:48,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:48,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:48,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:30:48,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:30:48,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:48,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:48,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:48,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:49,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:30:49,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:30:49,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:52,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:52,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:52,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:52,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:30:52,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:30:52,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:52,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:52,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:52,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:52,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:30:52,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:30:52,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:54,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:54,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:54,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:54,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:30:54,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:30:54,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:55,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:55,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:55,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:55,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:30:55,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:30:55,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:55,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:55,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:55,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:56,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:30:56,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:30:56,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:56,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:56,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:56,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:56,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:30:56,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:30:56,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:58,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:58,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:58,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:58,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:30:58,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:30:58,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:30:58,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:30:58,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:30:58,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:30:58,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:30:58,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:30:58,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:01,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:01,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:01,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:01,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 14:31:01,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 14:31:01,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:01,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:01,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:02,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:02,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:31:02,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:31:02,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:02,167 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:31:02,189 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:31:02,264 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.490 +2025-10-01 14:31:02,264 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:31:02,265 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 14:31:07,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:07,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:07,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:07,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:31:07,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:31:07,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:09,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:09,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:09,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:09,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 14:31:09,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 14:31:09,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:14,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:14,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:14,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:14,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 14:31:14,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 14:31:14,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:15,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:15,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:15,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:15,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:31:15,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:31:15,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:18,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:18,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:18,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:18,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:31:18,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:31:18,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:19,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:19,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:19,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:19,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 14:31:19,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 14:31:19,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:20,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:20,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:20,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:20,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 14:31:20,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 14:31:20,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:22,221 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:31:22,255 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:31:22,334 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.605 +2025-10-01 14:31:22,335 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:31:22,335 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 14:31:22,923 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:31:22,952 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:31:23,028 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.839 +2025-10-01 14:31:23,029 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:31:23,029 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:31:23,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:23,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:23,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:23,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:31:23,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:31:23,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:25,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:25,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:25,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:25,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:31:25,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:31:25,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:25,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:25,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:25,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:25,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:31:25,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:31:25,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:26,102 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:31:26,136 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:31:26,214 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=184.710 +2025-10-01 14:31:26,214 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:31:26,214 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:31:26,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:26,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:26,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:26,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:31:26,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:31:26,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:28,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:28,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:28,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:28,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:31:28,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:31:28,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:31,600 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:31:31,624 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:31:31,698 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.914 +2025-10-01 14:31:31,698 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 14:31:31,698 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 14:31:32,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:32,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:32,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:32,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 14:31:32,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 14:31:32,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:32,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:32,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:32,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:33,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 14:31:33,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 14:31:33,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:33,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:33,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:33,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:33,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:31:33,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:31:33,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:37,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:31:37,389 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:31:37,474 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.420 +2025-10-01 14:31:37,474 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 14:31:37,475 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 14:31:37,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:37,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:37,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:38,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:31:38,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:31:38,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:39,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:39,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:39,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:39,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:31:39,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:31:39,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:40,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:40,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:40,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:41,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:31:41,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:31:41,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:44,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:44,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:44,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:44,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:31:44,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:31:44,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:47,680 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:31:47,712 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:31:47,819 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.528 +2025-10-01 14:31:47,819 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +2025-10-01 14:31:47,819 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-01 14:31:48,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:48,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:48,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:48,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:31:48,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:31:48,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:51,286 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:31:51,311 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:31:51,397 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.869 +2025-10-01 14:31:51,397 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 14:31:51,397 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 14:31:53,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:53,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:53,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:53,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:31:53,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:31:53,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:54,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:31:54,894 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:31:54,979 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.685 +2025-10-01 14:31:54,979 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 14:31:54,979 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 14:31:55,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:55,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:55,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:55,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 14:31:55,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 14:31:55,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:31:59,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:31:59,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:31:59,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:31:59,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:31:59,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:31:59,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:00,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:00,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:00,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:00,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:32:00,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:32:00,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:04,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:04,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:04,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:05,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:32:05,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:32:05,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:05,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:05,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:05,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:05,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:32:05,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:32:05,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:06,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:06,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:06,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:06,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:32:06,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:32:06,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:11,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:11,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:11,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:11,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:32:11,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:32:11,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:11,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:11,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:11,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:11,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:32:11,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:32:11,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:15,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:15,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:15,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:15,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:32:15,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:32:15,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:20,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:20,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:20,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:20,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:32:20,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:32:20,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:22,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:22,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:22,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:23,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:32:23,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:32:23,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:23,169 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:32:23,194 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:32:23,270 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.704 +2025-10-01 14:32:23,270 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:32:23,270 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 14:32:24,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:24,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:24,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:24,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:32:24,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:32:24,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:26,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:26,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:26,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:26,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:32:26,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:32:26,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:28,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:28,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:28,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:28,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:32:28,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:32:28,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:29,079 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:32:29,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:32:29,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:32:29,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 14:32:29,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 14:32:29,373 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:32:29,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:29,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:29,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:29,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:32:29,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:32:29,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:33,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:33,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:33,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:33,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:32:33,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:32:33,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:33,495 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:32:33,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:32:33,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:32:33,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-01 14:32:33,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +2025-10-01 14:32:33,812 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:32:34,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:34,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:34,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:34,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:32:34,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:32:34,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:36,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:36,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:36,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:36,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:32:36,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:32:36,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:38,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:38,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:38,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:38,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:32:38,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:32:38,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:38,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:38,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:38,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:39,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:32:39,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:32:39,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:42,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:42,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:42,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:42,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:32:42,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:32:42,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:42,443 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:32:42,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:32:42,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:32:42,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 14:32:42,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 14:32:42,753 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:32:43,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:43,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:43,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:43,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:32:43,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:32:43,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:43,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:43,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:43,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:43,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:32:44,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:32:44,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:46,642 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:32:46,688 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:32:46,787 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.826 +2025-10-01 14:32:46,787 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 14:32:46,788 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 14:32:47,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:47,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:47,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:47,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:32:47,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:32:47,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:47,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:47,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:47,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:47,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:32:47,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:32:47,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:48,733 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:32:48,759 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:32:48,860 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.484 +2025-10-01 14:32:48,860 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 14:32:48,861 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 14:32:51,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:51,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:51,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:51,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 14:32:51,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 14:32:51,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:52,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:52,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:52,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:52,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 14:32:52,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 14:32:52,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:52,509 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:32:52,535 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:32:52,626 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.936 +2025-10-01 14:32:52,626 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 14:32:52,628 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 14:32:52,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:52,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:52,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:53,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:32:53,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:32:53,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:55,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:55,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:55,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:55,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:32:55,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:32:55,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:56,222 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:32:56,251 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:32:56,349 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.947 +2025-10-01 14:32:56,349 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 14:32:56,350 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 14:32:57,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:57,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:57,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:57,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:32:57,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:32:57,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:58,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:58,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:58,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:58,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:32:58,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:32:58,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:32:58,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:32:58,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:32:58,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:32:58,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:32:58,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:32:58,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:00,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:00,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:00,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:00,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:33:00,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:33:00,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:02,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:02,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:02,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:02,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:33:02,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:33:02,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:02,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:02,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:02,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:02,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:33:02,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:33:02,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:02,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:02,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:03,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:03,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:33:03,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:33:03,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:03,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:03,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:03,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:03,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:33:03,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:33:03,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:07,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:07,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:07,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:07,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:33:07,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:33:07,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:08,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:08,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:08,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:08,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:33:08,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:33:08,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:08,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:08,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:08,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:08,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:33:08,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:33:08,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:11,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:11,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:11,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:11,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:33:11,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:33:11,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:12,260 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:33:12,286 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:33:12,386 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.278 +2025-10-01 14:33:12,386 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 14:33:12,388 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 14:33:14,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:14,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:14,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:15,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 14:33:15,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 14:33:15,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:16,010 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:33:16,035 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:33:16,139 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=156.741 +2025-10-01 14:33:16,140 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 14:33:16,141 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 14:33:16,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:16,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:16,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:16,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:33:16,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:33:16,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:19,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:19,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:19,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:19,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:33:19,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:33:19,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:19,943 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:33:19,966 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:33:20,067 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.641 +2025-10-01 14:33:20,068 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 14:33:20,069 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 14:33:21,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:21,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:21,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:21,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:33:21,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:33:21,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:21,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:21,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:21,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:21,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 14:33:21,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 14:33:21,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:22,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:22,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:22,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:23,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:33:23,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:33:23,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:24,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:24,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:24,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:24,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:33:24,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:33:24,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:25,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:25,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:25,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:25,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:33:25,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:33:25,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:26,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:26,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:26,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:26,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:33:26,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:33:26,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:27,547 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:33:27,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:33:27,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:33:27,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 14:33:27,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 14:33:27,848 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:33:30,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:30,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:30,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:30,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:33:30,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:33:30,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:33,302 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:33:33,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:33:33,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:33:33,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 14:33:33,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 14:33:33,608 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:33:34,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:34,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:34,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:35,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:33:35,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:33:35,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:36,276 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:33:36,321 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:33:36,428 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.122 +2025-10-01 14:33:36,428 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +2025-10-01 14:33:36,430 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-01 14:33:37,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:37,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:37,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:37,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:33:37,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:33:37,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:39,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:39,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:39,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:39,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:33:39,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:33:39,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:41,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:41,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:41,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:41,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:33:41,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:33:41,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:42,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:42,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:42,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:42,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:33:42,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:33:42,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:43,373 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:33:43,395 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:33:43,490 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.100 +2025-10-01 14:33:43,490 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 14:33:43,490 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 14:33:46,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:46,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:46,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:46,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 14:33:46,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 14:33:46,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:46,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:46,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:46,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:46,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:33:46,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:33:46,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:49,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:49,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:49,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:49,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:33:49,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:33:49,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:51,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:51,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:51,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:51,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:33:51,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:33:51,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:53,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:53,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:53,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:53,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:33:53,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:33:53,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:54,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:54,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:54,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:54,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 14:33:54,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 14:33:54,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:54,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:54,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:54,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:54,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:33:54,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:33:54,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:56,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:56,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:56,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:56,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:33:56,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:33:56,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:57,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:57,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:57,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:57,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:33:57,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:33:57,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:33:58,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:33:58,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:33:58,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:33:58,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:33:58,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:33:58,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:00,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:00,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:00,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:00,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:34:00,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:34:00,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:01,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:01,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:01,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:01,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:34:01,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:34:01,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:01,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:01,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:02,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:02,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:34:02,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:34:02,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:03,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:03,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:03,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:03,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:34:03,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:34:03,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:05,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:05,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:05,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:05,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:34:05,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:34:05,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:06,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:06,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:06,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:06,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:34:06,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:34:06,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:06,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:06,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:06,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:06,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:34:06,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:34:06,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:07,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:07,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:07,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:07,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:34:07,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:34:07,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:09,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:09,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:09,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:09,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 14:34:09,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 14:34:09,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:11,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:11,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:11,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:12,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:34:12,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:34:12,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:12,082 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:34:12,108 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:34:12,195 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.710 +2025-10-01 14:34:12,195 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 14:34:12,197 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 14:34:13,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:13,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:13,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:13,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:34:13,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:34:13,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:13,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:13,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:14,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:14,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:34:14,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:34:14,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:14,171 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:34:14,195 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:34:14,300 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.138 +2025-10-01 14:34:14,301 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 14:34:14,301 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 14:34:16,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:16,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:16,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:16,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:34:16,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:34:16,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:17,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:17,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:17,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:17,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:34:17,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:34:17,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:19,997 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:34:19,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:34:20,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:34:20,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-01 14:34:20,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +2025-10-01 14:34:20,319 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:34:20,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:20,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:20,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:20,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:34:20,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:34:20,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:22,489 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:34:22,536 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:34:22,633 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.391 +2025-10-01 14:34:22,634 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 14:34:22,635 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 14:34:24,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:24,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:24,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:24,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:34:24,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:34:24,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:26,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:26,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:26,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:26,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:34:26,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:34:26,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:27,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:27,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:27,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:27,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:34:27,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:34:27,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:34,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:34,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:34,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:34,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 14:34:34,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 14:34:34,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:34,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:34,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:34,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:34,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:34:34,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:34:34,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:37,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:37,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:37,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:37,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:34:37,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:34:37,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:38,468 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:34:38,488 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 751, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:34:38,575 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.086 +2025-10-01 14:34:38,575 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 14:34:38,575 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 14:34:38,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:38,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:38,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:38,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:34:38,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:34:38,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:39,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:39,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:39,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:39,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:34:39,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:34:39,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:40,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:40,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:40,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:41,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:34:41,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:34:41,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:41,566 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:34:41,586 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 715, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:34:41,662 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.735 +2025-10-01 14:34:41,662 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:34:41,662 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:34:43,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:43,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:43,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:43,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:34:43,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:34:43,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:44,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:44,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:44,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:44,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:34:44,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:34:44,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:44,581 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:34:44,598 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 673, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:34:44,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.509 +2025-10-01 14:34:44,675 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:34:44,675 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:34:48,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:48,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:48,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:49,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 14:34:49,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 14:34:49,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:49,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:49,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:49,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:49,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:34:49,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:34:49,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:49,663 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:34:49,681 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:34:49,748 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.033 +2025-10-01 14:34:49,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 14:34:49,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 14:34:50,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:50,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:50,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:50,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:34:51,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:34:51,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:53,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:53,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:53,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:53,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:34:53,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:34:53,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:54,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:54,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:54,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:54,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:34:54,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:34:54,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:57,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:57,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:57,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:58,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:34:58,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:34:58,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:59,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:59,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:59,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:59,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:34:59,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:34:59,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:34:59,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:34:59,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:34:59,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:34:59,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:34:59,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:34:59,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:02,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:02,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:02,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:03,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:35:03,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:35:03,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:07,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:07,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:07,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:07,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:35:07,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:35:07,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:07,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:07,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:08,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:08,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:35:08,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:35:08,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:10,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:10,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:10,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:10,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:35:10,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:35:10,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:10,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:10,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:11,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:11,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:35:11,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:35:11,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:16,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:16,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:16,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:16,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:35:16,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:35:16,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:20,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:20,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:20,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:20,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:35:20,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:35:20,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:22,618 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:35:22,640 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:35:22,724 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.275 +2025-10-01 14:35:22,724 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:35:22,724 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:35:23,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:23,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:23,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:23,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 14:35:23,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 14:35:23,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:25,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:25,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:25,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:26,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:35:26,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:35:26,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:28,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:28,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:28,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:28,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:35:28,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:35:28,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:30,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:30,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:30,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:30,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:35:30,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:35:30,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:34,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:34,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:34,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:34,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:35:34,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:35:34,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:34,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:34,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:34,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:35,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 14:35:35,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 14:35:35,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:35,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:35,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:35,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:35,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:35:35,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:35:35,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:35,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:35,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:35,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:35,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:35:35,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:35:35,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:40,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:40,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:40,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:40,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:35:40,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:35:40,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:47,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:47,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:47,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:47,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:35:47,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:35:47,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:47,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:47,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:47,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:47,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:35:47,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:35:47,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:48,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:48,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:48,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:48,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:35:48,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:35:48,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:51,355 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:35:51,402 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:35:51,482 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.272 +2025-10-01 14:35:51,483 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 14:35:51,483 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:35:52,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:52,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:52,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:52,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:35:52,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:35:52,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:53,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:53,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:53,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:53,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:35:53,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:35:53,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:54,289 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:35:54,345 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:35:54,441 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.851 +2025-10-01 14:35:54,441 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 14:35:54,442 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 14:35:55,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:55,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:55,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:55,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 14:35:55,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 14:35:55,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:35:57,503 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:35:57,529 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:35:57,612 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.201 +2025-10-01 14:35:57,613 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:35:57,613 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:35:57,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:35:57,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:35:57,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:35:57,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:35:57,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:35:57,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:00,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:00,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:00,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:00,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:36:00,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:36:00,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:00,807 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:36:00,838 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:36:00,914 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.806 +2025-10-01 14:36:00,914 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:36:00,914 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 14:36:01,181 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:36:01,205 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:36:01,279 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.855 +2025-10-01 14:36:01,279 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 14:36:01,279 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 14:36:03,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:03,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:03,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:03,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:36:03,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:36:03,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:03,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:03,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:03,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:03,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:36:03,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:36:03,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:07,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:07,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:07,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:07,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:36:07,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:36:07,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:12,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:12,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:12,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:12,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:36:12,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:36:12,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:13,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:13,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:13,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:13,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:36:13,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:36:13,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:19,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:19,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:19,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:19,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:36:19,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:36:19,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:21,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:21,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:21,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:22,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:36:22,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:36:22,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:23,535 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:36:23,563 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:36:23,643 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.925 +2025-10-01 14:36:23,643 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:36:23,643 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 14:36:27,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:27,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:27,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:28,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:36:28,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:36:28,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:29,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:29,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:29,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:29,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:36:29,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:36:29,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:30,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:30,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:30,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:31,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:36:31,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:36:31,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:36,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:36,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:36,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:36,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:36:36,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:36:36,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:36,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:36,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:36,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:36,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:36:36,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:36:36,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:38,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:38,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:38,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:38,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:36:38,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:36:38,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:42,197 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:36:42,224 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:36:42,302 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.604 +2025-10-01 14:36:42,302 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:36:42,302 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 14:36:42,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:42,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:42,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:42,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:36:42,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:36:42,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:43,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:43,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:43,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:43,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:36:43,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:36:43,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:45,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:45,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:45,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:45,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 14:36:45,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 14:36:45,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:49,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:49,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:49,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:49,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 14:36:49,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 14:36:49,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:51,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:51,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:51,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:51,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:36:51,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:36:51,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:52,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:52,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:52,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:52,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:36:52,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:36:52,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:53,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:53,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:53,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:53,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:36:53,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:36:53,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:55,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:55,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:55,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:55,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:36:55,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:36:55,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:56,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:56,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:56,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:56,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:36:56,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:36:56,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:36:57,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:36:57,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:36:58,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:36:58,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:36:58,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:36:58,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:01,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:01,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:01,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:02,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 14:37:02,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 14:37:02,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:02,162 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:37:02,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:37:02,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:37:02,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 14:37:02,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +2025-10-01 14:37:02,427 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:37:02,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:02,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:02,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:02,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:37:02,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:37:02,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:03,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:03,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:03,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:03,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:37:03,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:37:03,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:03,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:03,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:03,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:03,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:37:03,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:37:03,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:06,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:06,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:06,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:06,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:37:06,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:37:06,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:06,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:06,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:06,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:06,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:37:06,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:37:06,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:09,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:09,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:09,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:09,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:37:09,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:37:09,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:13,357 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:37:13,385 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:37:13,473 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.495 +2025-10-01 14:37:13,473 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:37:13,473 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 14:37:14,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:14,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:14,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:14,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 14:37:14,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 14:37:14,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:15,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:15,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:15,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:15,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:37:15,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:37:15,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:19,464 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:37:19,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:37:19,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.464 +2025-10-01 14:37:19,588 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:37:19,588 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:37:21,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:21,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:21,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:21,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:37:21,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:37:21,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:22,984 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:37:22,997 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:37:23,070 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.012 +2025-10-01 14:37:23,070 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 14:37:23,070 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 14:37:23,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:23,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:23,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:23,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:37:23,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:37:23,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:24,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:24,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:24,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:24,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:37:24,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:37:24,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:25,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:25,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:25,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:25,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:37:25,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:37:25,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:26,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:26,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:26,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:26,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:37:26,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:37:26,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:30,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:30,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:30,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:30,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:37:30,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:37:30,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:33,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:33,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:33,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:33,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:37:33,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:37:33,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:35,128 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:37:35,152 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:37:35,236 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.624 +2025-10-01 14:37:35,236 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:37:35,236 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 14:37:38,354 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:37:38,396 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:37:38,480 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.721 +2025-10-01 14:37:38,481 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:37:38,481 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:37:38,765 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:37:38,795 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:37:38,877 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.969 +2025-10-01 14:37:38,877 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:37:38,878 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:37:40,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:40,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:40,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:40,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:37:40,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:37:40,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:42,315 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:37:42,342 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:37:42,418 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.834 +2025-10-01 14:37:42,419 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:37:42,419 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:37:48,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:48,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:48,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:48,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:37:48,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:37:48,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:49,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:49,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:49,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:49,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:37:49,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:37:49,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:37:58,806 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:37:58,849 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:37:58,930 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.271 +2025-10-01 14:37:58,930 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 14:37:58,930 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:37:59,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:37:59,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:37:59,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:37:59,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:37:59,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:37:59,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:07,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:07,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:07,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:07,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:38:07,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:38:07,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:09,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:09,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:09,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:09,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:38:09,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:38:09,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:09,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:38:09,597 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:38:09,671 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.999 +2025-10-01 14:38:09,672 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 14:38:09,672 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:38:10,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:10,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:10,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:10,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:38:10,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:38:10,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:14,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:14,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:15,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:15,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:38:15,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:38:15,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:15,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:15,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:15,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:15,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:38:15,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:38:15,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:19,291 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:38:19,318 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:38:19,398 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.278 +2025-10-01 14:38:19,399 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:38:19,399 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:38:19,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:19,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:19,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:19,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:38:19,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:38:19,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:22,487 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:38:22,510 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:38:22,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.838 +2025-10-01 14:38:22,603 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 14:38:22,603 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 14:38:25,664 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:38:25,690 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:38:25,768 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.153 +2025-10-01 14:38:25,768 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:38:25,768 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:38:26,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:26,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:26,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:26,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:38:26,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:38:26,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:26,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:26,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:26,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:26,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:38:26,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:38:26,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:32,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:32,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:32,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:32,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:38:32,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:38:32,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:36,734 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:38:36,780 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:38:36,868 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.373 +2025-10-01 14:38:36,868 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:38:36,868 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 14:38:37,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:37,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:37,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:38,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:38:38,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:38:38,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:42,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:42,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:42,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:42,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:38:42,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:38:42,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:42,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:42,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:42,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:43,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:38:43,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:38:43,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:43,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:43,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:43,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:43,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:38:43,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:38:43,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:46,512 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:38:46,533 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:38:46,609 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.811 +2025-10-01 14:38:46,610 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:38:46,610 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:38:47,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:47,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:47,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:47,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:38:47,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:38:47,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:51,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:51,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:51,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:52,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:38:52,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:38:52,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:38:59,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:38:59,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:38:59,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:38:59,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:38:59,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:38:59,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:00,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:00,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:00,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:00,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:39:00,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:39:00,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:01,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:01,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:01,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:01,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 14:39:01,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 14:39:01,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:04,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:04,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:04,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:05,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:39:05,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:39:05,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:07,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:07,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:08,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:08,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 14:39:08,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 14:39:08,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:09,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:09,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:09,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:09,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:39:09,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:39:09,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:10,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:10,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:10,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:11,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 14:39:11,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 14:39:11,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:14,750 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:39:14,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:39:14,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:39:15,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 14:39:15,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 14:39:15,036 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:39:15,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:15,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:15,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:15,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:39:15,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:39:15,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:20,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:20,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:20,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:20,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:39:20,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:39:20,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:21,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:21,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:21,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:21,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:39:21,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:39:21,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:28,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:28,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:28,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:28,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 14:39:28,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 14:39:28,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:29,096 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:39:29,135 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:39:29,224 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.122 +2025-10-01 14:39:29,224 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 14:39:29,224 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 14:39:29,307 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:39:29,334 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:39:29,422 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.229 +2025-10-01 14:39:29,423 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:39:29,424 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 14:39:34,391 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:39:34,423 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:39:34,518 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.745 +2025-10-01 14:39:34,519 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 14:39:34,519 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 14:39:34,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:34,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:35,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:35,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:39:35,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:39:35,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:38,490 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:39:38,518 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:39:38,600 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.074 +2025-10-01 14:39:38,601 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:39:38,601 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:39:41,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:41,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:41,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:41,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:39:41,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:39:41,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:46,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:46,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:46,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:46,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:39:46,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:39:46,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:56,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:56,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:56,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:56,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 14:39:56,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 14:39:56,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:39:57,231 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:39:57,264 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:39:57,348 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.738 +2025-10-01 14:39:57,348 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:39:57,350 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 14:39:59,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:39:59,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:39:59,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:39:59,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:39:59,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:39:59,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:10,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:10,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:10,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:11,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 14:40:11,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 14:40:11,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:19,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:19,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:19,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:19,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 14:40:19,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 14:40:19,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:19,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:19,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:19,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:20,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:40:20,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:40:20,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:21,471 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:40:21,495 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:40:21,588 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.811 +2025-10-01 14:40:21,589 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 14:40:21,589 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 14:40:24,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:24,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:24,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:24,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 14:40:24,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 14:40:24,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:25,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:25,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:25,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:25,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 14:40:25,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 14:40:25,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:26,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:26,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:26,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:26,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:40:26,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:40:26,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:30,226 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:40:30,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:40:30,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:40:30,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.325s +2025-10-01 14:40:30,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.325s (avg: 0.163s/image) +2025-10-01 14:40:30,553 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:40:30,908 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:40:30,935 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:40:31,017 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.178 +2025-10-01 14:40:31,017 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 14:40:31,017 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 14:40:32,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:32,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:32,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:32,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:40:32,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:40:32,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:34,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:34,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:34,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:34,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 14:40:34,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 14:40:34,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:38,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:38,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:38,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:38,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:40:38,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:40:38,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:39,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:39,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:39,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:39,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 14:40:39,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 14:40:39,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:40,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:40,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:40,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:40,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:40:40,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:40:40,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:44,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:44,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:44,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:44,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 14:40:44,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 14:40:44,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:45,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:45,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:45,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:45,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:40:45,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:40:45,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:46,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:46,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:46,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:46,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:40:46,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:40:46,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:49,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:49,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:49,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:49,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 14:40:49,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 14:40:49,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:53,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:53,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:53,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:53,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:40:53,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:40:53,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:54,144 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:40:54,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:40:54,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:40:54,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-01 14:40:54,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-01 14:40:54,415 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:40:56,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:56,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:56,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:56,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:40:56,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:40:56,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:59,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:59,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:59,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:40:59,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 14:40:59,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 14:40:59,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:40:59,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:40:59,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:40:59,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:00,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:41:00,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:41:00,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:01,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:01,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:01,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:01,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:41:01,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:41:01,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:01,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:01,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:01,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:02,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:41:02,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:41:02,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:02,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:02,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:02,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:02,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:41:02,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:41:02,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:04,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:04,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:04,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:04,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 14:41:04,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 14:41:04,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:04,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:04,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:04,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:04,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 14:41:04,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 14:41:04,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:05,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:05,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:05,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:05,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:41:05,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:41:05,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:07,696 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:41:07,741 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:41:07,828 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.747 +2025-10-01 14:41:07,828 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:41:07,829 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 14:41:09,262 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:41:09,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:41:09,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:41:09,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 14:41:09,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 14:41:09,538 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:41:09,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:09,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:09,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:10,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s +2025-10-01 14:41:10,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image) +2025-10-01 14:41:10,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:10,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:10,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:10,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:10,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:41:10,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:41:10,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:13,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:13,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:13,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:13,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:41:13,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:41:13,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:14,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:14,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:14,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:14,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:41:14,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:41:14,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:14,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:14,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:14,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:14,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-01 14:41:14,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-01 14:41:14,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:17,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:17,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:17,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:17,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:41:17,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:41:17,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:18,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:18,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:18,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:18,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:41:18,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:41:18,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:28,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:28,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:28,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:28,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:41:28,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:41:28,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:30,829 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:41:30,867 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:41:30,958 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=211.157 +2025-10-01 14:41:30,959 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 14:41:30,961 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 14:41:31,052 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:41:31,074 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:41:31,173 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.761 +2025-10-01 14:41:31,174 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 14:41:31,175 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 14:41:31,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:31,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:31,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:31,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:41:31,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:41:31,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:32,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:32,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:32,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:32,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 14:41:32,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 14:41:32,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:32,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:32,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:32,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:32,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:41:32,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:41:32,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:37,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:37,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:37,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:37,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 14:41:37,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 14:41:37,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:40,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:40,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:40,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:40,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:41:40,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:41:40,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:40,838 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:41:40,860 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:41:40,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.401 +2025-10-01 14:41:40,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 14:41:40,947 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 14:41:43,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:43,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:43,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:43,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 14:41:43,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 14:41:43,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:43,640 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:41:43,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:41:43,745 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.293 +2025-10-01 14:41:43,746 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:41:43,746 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 14:41:44,408 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:41:44,435 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:41:44,512 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.032 +2025-10-01 14:41:44,512 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:41:44,512 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 14:41:47,025 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:41:47,049 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:41:47,130 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.479 +2025-10-01 14:41:47,130 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 14:41:47,130 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:41:47,806 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:41:47,832 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:41:47,909 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.547 +2025-10-01 14:41:47,909 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:41:47,910 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:41:48,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:48,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:48,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:49,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:41:49,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:41:49,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:49,918 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:41:49,939 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:41:50,030 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.057 +2025-10-01 14:41:50,030 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 14:41:50,030 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 14:41:51,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:51,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:51,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:51,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 14:41:51,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 14:41:51,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:54,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:54,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:54,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:54,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:41:54,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:41:54,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:57,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:57,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:57,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:57,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.204s +2025-10-01 14:41:57,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image) +2025-10-01 14:41:57,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:58,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:58,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:58,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:58,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:41:58,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:41:58,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:59,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:59,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:59,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:41:59,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:41:59,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:41:59,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:41:59,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:41:59,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:41:59,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:00,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:42:00,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:42:00,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:01,813 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:42:01,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:42:01,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.348 +2025-10-01 14:42:01,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 14:42:01,947 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 14:42:03,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:03,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:03,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:03,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:42:03,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:42:03,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:05,213 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:42:05,242 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:42:05,346 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.866 +2025-10-01 14:42:05,346 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 14:42:05,347 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 14:42:06,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:06,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:06,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:06,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:42:06,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:42:06,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:08,932 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:42:08,961 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:42:09,064 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.982 +2025-10-01 14:42:09,065 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 14:42:09,066 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 14:42:09,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:09,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:09,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:09,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:42:09,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:42:09,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:13,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:13,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:13,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:13,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:42:13,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:42:13,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:15,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:15,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:15,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:15,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:42:15,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:42:15,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:15,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:15,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:15,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:15,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:42:15,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:42:15,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:18,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:18,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:18,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:18,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:42:18,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:42:18,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:19,382 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:42:19,401 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:42:19,489 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.720 +2025-10-01 14:42:19,490 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 14:42:19,490 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 14:42:19,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:19,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:19,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:19,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:42:19,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:42:19,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:19,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:19,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:19,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:20,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:42:20,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:42:20,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:20,494 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:42:20,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:42:20,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:42:20,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 14:42:20,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 14:42:20,786 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:42:21,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:21,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:21,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:21,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:42:21,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:42:21,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:22,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:22,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:22,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:22,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:42:22,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:42:22,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:22,799 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:42:22,823 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(828, 828, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:42:22,897 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.090 +2025-10-01 14:42:22,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 14:42:22,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 14:42:24,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:24,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:24,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:25,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:42:25,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:42:25,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:25,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:25,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:25,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:25,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:42:25,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:42:25,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:26,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:26,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:26,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:26,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:42:26,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:42:26,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:27,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:27,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:27,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:27,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:42:27,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:42:27,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:29,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:29,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:29,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:29,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:42:29,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:42:29,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:30,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:30,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:30,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:30,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 14:42:30,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 14:42:30,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:33,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:33,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:33,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:33,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:42:33,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:42:33,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:34,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:34,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:34,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:34,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:42:34,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:42:34,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:35,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:35,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:35,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:35,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:42:35,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:42:35,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:36,624 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:42:36,653 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:42:36,732 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.106 +2025-10-01 14:42:36,732 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:42:36,732 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:42:37,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:37,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:37,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:37,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:42:37,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:42:37,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:38,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:38,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:38,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:38,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:42:38,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:42:38,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:40,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:40,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:40,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:40,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:42:40,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:42:40,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:42,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:42,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:42,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:43,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:42:43,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:42:43,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:44,313 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:42:44,339 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:42:44,432 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.797 +2025-10-01 14:42:44,432 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 14:42:44,433 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 14:42:44,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:44,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:44,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:44,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 14:42:44,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 14:42:44,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:46,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:46,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:46,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:46,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:42:46,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:42:46,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:47,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:47,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:47,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:48,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:42:48,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:42:48,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:49,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:49,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:49,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:49,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:42:49,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:42:49,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:52,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:52,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:52,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:52,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:42:52,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:42:52,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:53,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:53,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:53,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:53,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:42:53,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:42:53,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:54,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:54,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:54,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:54,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:42:54,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:42:54,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:57,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:57,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:57,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:57,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:42:57,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:42:57,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:42:57,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:42:57,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:42:57,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:42:58,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:42:58,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:42:58,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:01,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:01,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:01,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:01,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:43:01,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:43:01,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:02,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:02,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:02,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:02,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:43:02,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:43:02,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:05,674 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:43:05,706 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:43:05,794 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.133 +2025-10-01 14:43:05,794 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:43:05,794 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 14:43:06,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:06,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:06,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:06,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:43:06,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:43:06,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:07,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:07,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:07,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:07,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:43:07,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:43:07,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:08,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:08,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:08,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:08,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:43:08,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:43:08,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:08,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:08,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:08,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:08,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:43:08,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:43:08,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:11,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:11,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:11,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:11,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:43:11,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:43:11,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:12,043 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:43:12,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:43:12,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:43:12,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 14:43:12,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 14:43:12,327 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:43:13,907 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:43:13,925 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:43:14,010 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.934 +2025-10-01 14:43:14,010 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 14:43:14,010 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 14:43:14,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:14,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:14,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:14,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:43:14,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:43:14,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:15,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:15,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:15,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:15,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:43:15,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:43:15,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:17,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:17,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:17,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:17,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:43:17,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:43:17,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:19,321 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:43:19,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:43:19,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:43:19,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 14:43:19,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 14:43:19,602 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:43:25,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:25,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:25,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:25,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:43:25,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:43:25,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:29,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:29,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:29,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:29,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:43:29,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:43:29,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:30,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:30,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:30,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:30,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:43:30,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:43:30,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:31,678 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:43:31,715 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:43:31,812 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.373 +2025-10-01 14:43:31,813 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 14:43:31,814 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 14:43:32,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:32,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:32,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:32,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:43:32,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:43:32,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:33,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:33,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:33,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:33,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:43:33,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:43:33,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:38,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:38,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:39,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:39,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:43:39,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:43:39,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:39,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:39,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:39,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:39,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:43:39,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:43:39,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:40,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:40,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:40,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:40,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:43:40,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:43:40,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:45,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:45,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:45,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:45,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:43:45,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:43:45,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:46,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:46,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:46,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:46,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:43:46,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:43:46,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:47,907 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:43:47,941 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:43:48,033 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.836 +2025-10-01 14:43:48,034 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 14:43:48,035 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 14:43:49,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:49,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:49,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:49,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 14:43:49,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 14:43:49,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:52,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:52,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:52,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:52,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:43:52,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:43:52,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:57,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:57,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:57,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:57,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:43:57,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:43:57,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:43:58,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:43:58,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:43:58,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:43:58,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:43:58,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:43:58,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:01,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:01,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:01,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:01,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:44:01,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:44:01,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:02,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:02,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:02,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:02,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:44:02,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:44:02,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:03,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:03,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:03,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:03,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:44:03,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:44:03,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:07,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:07,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:07,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:07,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:44:07,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:44:07,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:08,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:08,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:08,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:08,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:44:08,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:44:08,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:09,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:09,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:09,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:09,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:44:09,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:44:09,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:11,509 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:11,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:11,619 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.688 +2025-10-01 14:44:11,619 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 14:44:11,620 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 14:44:12,264 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:12,289 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:12,369 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.164 +2025-10-01 14:44:12,369 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:44:12,371 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 14:44:12,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:12,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:12,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:12,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:44:12,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:44:12,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:14,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:14,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:14,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:14,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:44:14,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:44:14,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:15,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:15,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:15,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:15,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:44:15,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:44:15,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:16,289 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:16,328 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:16,428 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.001 +2025-10-01 14:44:16,429 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 14:44:16,430 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 14:44:19,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:19,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:19,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:19,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:44:19,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:44:19,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:20,514 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:20,537 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:20,636 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.457 +2025-10-01 14:44:20,637 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 14:44:20,637 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 14:44:23,175 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:23,200 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:23,297 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.988 +2025-10-01 14:44:23,298 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 14:44:23,299 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 14:44:24,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:25,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:25,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:25,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:44:25,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:44:25,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:27,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:27,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:27,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:27,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:44:27,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:44:27,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:28,026 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:28,044 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:28,133 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.650 +2025-10-01 14:44:28,134 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 14:44:28,135 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 14:44:29,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:29,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:29,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:29,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:44:29,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:44:29,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:30,278 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:30,310 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:30,399 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.330 +2025-10-01 14:44:30,399 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 14:44:30,400 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 14:44:33,641 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:33,665 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:33,767 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.979 +2025-10-01 14:44:33,768 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 14:44:33,769 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 14:44:35,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:35,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:35,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:35,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:44:35,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:44:35,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:37,064 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:37,087 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:37,183 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.563 +2025-10-01 14:44:37,183 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 14:44:37,183 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 14:44:37,385 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:37,412 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:37,502 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.878 +2025-10-01 14:44:37,503 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 14:44:37,504 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 14:44:39,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:39,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:39,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:39,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:44:39,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:44:39,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:40,530 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:40,551 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:40,640 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.320 +2025-10-01 14:44:40,640 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 14:44:40,641 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 14:44:42,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:42,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:42,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:42,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:44:42,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:44:42,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:43,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:43,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:43,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:43,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:44:43,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:44:43,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:43,905 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:43,930 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:44,005 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.492 +2025-10-01 14:44:44,006 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:44:44,006 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 14:44:47,262 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:44:47,283 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:44:47,360 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.346 +2025-10-01 14:44:47,361 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:44:47,361 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 14:44:49,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:49,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:49,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:49,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:44:49,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:44:49,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:53,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:53,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:53,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:53,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:44:53,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:44:53,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:54,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:54,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:54,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:54,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:44:54,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:44:54,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:56,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:56,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:56,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:56,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:44:56,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:44:56,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:44:59,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:44:59,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:44:59,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:44:59,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:44:59,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:44:59,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:01,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:01,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:01,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:01,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:45:01,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:45:01,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:01,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:01,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:01,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:01,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:45:01,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:45:01,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:03,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:03,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:03,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:03,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:45:03,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:45:03,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:04,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:04,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:04,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:04,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:45:04,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:45:04,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:09,767 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:45:09,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:45:09,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:45:10,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 14:45:10,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 14:45:10,041 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:45:10,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:10,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:10,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:10,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:45:10,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:45:10,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:12,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:12,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:12,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:12,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:45:12,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:45:12,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:15,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:15,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:16,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:16,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:45:16,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:45:16,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:16,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:16,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:16,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:16,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:45:16,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:45:16,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:18,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:18,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:18,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:18,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:45:18,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:45:18,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:19,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:19,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:19,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:19,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:45:19,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:45:19,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:20,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:20,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:20,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:20,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:45:20,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:45:20,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:20,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:20,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:20,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:20,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:45:20,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:45:20,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:22,520 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:45:22,542 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:45:22,621 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.927 +2025-10-01 14:45:22,621 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:45:22,622 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:45:23,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:23,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:23,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:23,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:45:23,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:45:23,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:24,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:24,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:24,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:24,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:45:24,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:45:24,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:26,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:26,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:26,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:27,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:45:27,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:45:27,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:27,207 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:45:27,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:45:27,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:45:27,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.254s +2025-10-01 14:45:27,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.254s (avg: 0.127s/image) +2025-10-01 14:45:27,462 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:45:29,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:29,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:29,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:29,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:45:29,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:45:29,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:30,452 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:45:30,476 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:45:30,552 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.785 +2025-10-01 14:45:30,553 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:45:30,553 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:45:31,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:31,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:31,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:31,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:45:31,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:45:31,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:32,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:32,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:32,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:32,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:45:32,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:45:32,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:33,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:33,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:33,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:34,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:45:34,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:45:34,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:34,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:34,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:35,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:35,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:45:35,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:45:35,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:36,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:36,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:36,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:36,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:45:36,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:45:36,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:36,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:36,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:36,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:36,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:45:36,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:45:36,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:40,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:40,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:40,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:40,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:45:40,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:45:40,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:40,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:40,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:40,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:40,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:45:40,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:45:40,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:41,287 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:45:41,309 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:45:41,384 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.079 +2025-10-01 14:45:41,385 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 14:45:41,385 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:45:41,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:41,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:41,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:41,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:45:41,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:45:41,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:41,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:41,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:41,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:41,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:45:42,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:45:42,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:47,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:47,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:47,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:47,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:45:47,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:45:47,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:48,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:48,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:48,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:48,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:45:48,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:45:48,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:48,398 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:45:48,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:45:48,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:45:48,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-01 14:45:48,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-01 14:45:48,666 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:45:50,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:50,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:51,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:51,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:45:51,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:45:51,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:52,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:52,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:52,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:52,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:45:52,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:45:52,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:54,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:54,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:54,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:54,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:45:54,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:45:54,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:56,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:56,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:56,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:56,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:45:56,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:45:56,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:57,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:57,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:57,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:57,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:45:57,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:45:57,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:45:59,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:45:59,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:45:59,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:45:59,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:45:59,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:45:59,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:02,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:02,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:02,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:02,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:46:02,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:46:02,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:02,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:02,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:02,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:02,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:46:02,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:46:02,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:03,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:03,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:04,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:04,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:46:04,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:46:04,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:06,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:06,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:06,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:06,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 14:46:06,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 14:46:06,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:06,818 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:46:06,854 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:46:06,936 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=186.461 +2025-10-01 14:46:06,937 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 14:46:06,938 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:46:08,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:08,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:09,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:09,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:46:09,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:46:09,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:09,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:09,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:09,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:10,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:46:10,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:46:10,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:15,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:15,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:15,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:15,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 14:46:15,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 14:46:15,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:15,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:15,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:15,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:16,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:46:16,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:46:16,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:23,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:23,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:23,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:23,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:46:23,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:46:23,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:30,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:30,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:30,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:31,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:46:31,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:46:31,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:32,119 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:46:32,140 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:46:32,229 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.003 +2025-10-01 14:46:32,229 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 14:46:32,229 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 14:46:33,338 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:46:33,364 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:46:33,442 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.254 +2025-10-01 14:46:33,443 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:46:33,443 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:46:35,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:35,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:35,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:36,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:46:36,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:46:36,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:36,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:36,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:36,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:36,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:46:36,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:46:36,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:37,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:37,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:37,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:37,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:46:37,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:46:37,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:37,550 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:46:37,575 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:46:37,651 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.684 +2025-10-01 14:46:37,651 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:46:37,651 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 14:46:38,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:38,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:38,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:38,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:46:38,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:46:38,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:41,232 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:46:41,258 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:46:41,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.666 +2025-10-01 14:46:41,337 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:46:41,337 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:46:47,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:47,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:47,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:48,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:46:48,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:46:48,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:51,507 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:46:51,539 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:46:51,616 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.957 +2025-10-01 14:46:51,616 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:46:51,616 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:46:52,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:52,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:52,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:52,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:46:52,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:46:52,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:54,914 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:46:54,942 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:46:55,026 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=214.514 +2025-10-01 14:46:55,026 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:46:55,026 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 14:46:57,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:46:57,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:46:57,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:46:57,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:46:57,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:46:57,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:46:59,053 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:46:59,079 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:46:59,162 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.766 +2025-10-01 14:46:59,163 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:46:59,163 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:47:00,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:00,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:00,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:00,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:47:00,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:47:00,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:04,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:04,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:04,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:04,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:47:04,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:47:04,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:05,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:05,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:05,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:05,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:47:05,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:47:05,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:06,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:06,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:06,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:06,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:47:06,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:47:06,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:09,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:09,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:09,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:09,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:47:09,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:47:09,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:09,928 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:47:09,952 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:47:10,032 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.180 +2025-10-01 14:47:10,033 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:47:10,033 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:47:10,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:10,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:10,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:10,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:47:10,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:47:10,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:11,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:11,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:11,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:11,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:47:11,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:47:11,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:12,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:12,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:12,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:12,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:47:12,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:47:12,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:13,077 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:47:13,104 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:47:13,196 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.295 +2025-10-01 14:47:13,197 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 14:47:13,198 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 14:47:13,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:13,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:13,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:13,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:47:13,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:47:13,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:14,227 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:47:14,258 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:47:14,348 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.563 +2025-10-01 14:47:14,348 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 14:47:14,349 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 14:47:14,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:14,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:15,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:15,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:47:15,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:47:15,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:16,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:16,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:16,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:16,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:47:16,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:47:16,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:16,636 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:47:16,662 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:47:16,760 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.010 +2025-10-01 14:47:16,761 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 14:47:16,762 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 14:47:17,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:17,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:18,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:18,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:47:18,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:47:18,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:19,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:19,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:19,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:19,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:47:19,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:47:19,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:19,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:19,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:19,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:20,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:47:20,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:47:20,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:22,450 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:47:22,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:47:22,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:47:22,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.322s +2025-10-01 14:47:22,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.322s (avg: 0.161s/image) +2025-10-01 14:47:22,773 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:47:23,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:23,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:23,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:24,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:47:24,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:47:24,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:26,859 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:47:26,899 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:47:26,990 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.584 +2025-10-01 14:47:26,990 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 14:47:26,991 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 14:47:27,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:27,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:27,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:27,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 14:47:27,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 14:47:27,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:28,029 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:47:28,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:47:28,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:47:28,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 14:47:28,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 14:47:28,325 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:47:32,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:32,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:32,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:32,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:47:32,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:47:32,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:33,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:33,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:33,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:33,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:47:33,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:47:33,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:36,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:36,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:36,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:36,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 14:47:36,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 14:47:36,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:37,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:37,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:37,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:38,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:47:38,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:47:38,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:38,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:38,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:39,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:39,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:47:39,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:47:39,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:42,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:42,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:42,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:42,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:47:42,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:47:42,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:42,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:42,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:42,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:43,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:47:43,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:47:43,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:43,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:43,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:43,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:44,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:47:44,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:47:44,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:44,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:44,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:44,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:44,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 14:47:44,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 14:47:44,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:44,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:44,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:44,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:44,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:47:44,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:47:44,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:47,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:47,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:47,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:47,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:47:47,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:47:47,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:47,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:47,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:47,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:47,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:47:47,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:47:47,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:48,517 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:47:48,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:47:48,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:47:48,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 14:47:48,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 14:47:48,801 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:47:51,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:51,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:51,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:51,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 14:47:51,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 14:47:51,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:53,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:53,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:53,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:53,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:47:53,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:47:53,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:54,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:54,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:54,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:54,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:47:54,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:47:54,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:55,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:55,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:55,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:55,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:47:55,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:47:55,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:56,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:56,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:56,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:56,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:47:56,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:47:56,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:57,085 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:47:57,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:47:57,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:47:57,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 14:47:57,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 14:47:57,379 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:47:58,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:47:58,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:47:58,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:47:58,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:47:58,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:47:58,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:47:59,420 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:47:59,442 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:47:59,525 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.074 +2025-10-01 14:47:59,526 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:47:59,526 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:48:00,188 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:48:00,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:48:00,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:48:00,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 14:48:00,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 14:48:00,487 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:48:02,606 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:48:02,630 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:48:02,712 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.612 +2025-10-01 14:48:02,712 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:48:02,713 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:48:02,913 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:48:02,933 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:48:03,007 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=4.803 +2025-10-01 14:48:03,007 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 14:48:03,007 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 14:48:03,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:03,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:03,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:03,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:48:03,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:48:03,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:04,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:04,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:04,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:05,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 14:48:05,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 14:48:05,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:05,888 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:48:05,911 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:48:05,984 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.080 +2025-10-01 14:48:05,985 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 14:48:05,985 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 14:48:07,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:07,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:07,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:07,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-01 14:48:07,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-01 14:48:07,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:08,737 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:48:08,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:48:08,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:48:09,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 14:48:09,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 14:48:09,029 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:48:12,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:12,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:12,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:12,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 14:48:12,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 14:48:12,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:13,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:13,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:13,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:13,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:48:13,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:48:13,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:14,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:14,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:14,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:14,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:48:14,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:48:14,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:16,261 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:48:16,286 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:48:16,371 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.900 +2025-10-01 14:48:16,372 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 14:48:16,372 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 14:48:17,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:17,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:17,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:17,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:48:17,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:48:17,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:18,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:18,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:18,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:18,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:48:18,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:48:18,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:21,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:21,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:21,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:21,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:48:21,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:48:21,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:22,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:22,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:22,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:22,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:48:22,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:48:22,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:25,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:25,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:25,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:25,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:48:25,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:48:25,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:26,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:26,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:26,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:26,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:48:26,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:48:26,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:27,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:27,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:27,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:27,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:48:27,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:48:27,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:30,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:30,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:30,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:31,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:48:31,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:48:31,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:34,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:34,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:34,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:34,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:48:34,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:48:34,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:35,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:35,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:35,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:35,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:48:35,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:48:35,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:38,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:38,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:38,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:38,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:48:38,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:48:38,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:41,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:41,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:41,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:41,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:48:41,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:48:41,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:42,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:42,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:42,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:42,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:48:42,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:48:42,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:44,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:44,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:44,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:44,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:48:44,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:48:44,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:44,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:44,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:44,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:44,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:48:44,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:48:44,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:48,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:48,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:48,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:48,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:48:48,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:48:48,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:48,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:48,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:48,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:48,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:48:48,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:48:48,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:48,944 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:48:48,973 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:48:49,051 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.537 +2025-10-01 14:48:49,051 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:48:49,053 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 14:48:49,263 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:48:49,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:48:49,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:48:49,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 14:48:49,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 14:48:49,556 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:48:50,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:50,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:51,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:51,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:48:51,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:48:51,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:51,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:51,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:51,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:51,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:48:51,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:48:51,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:54,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:54,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:54,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:54,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:48:54,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:48:54,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:54,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:54,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:54,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:54,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:48:54,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:48:54,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:56,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:56,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:56,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:56,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:48:56,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:48:56,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:56,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:56,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:56,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:56,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:48:56,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:48:56,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:48:59,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:48:59,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:48:59,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:48:59,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:48:59,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:48:59,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:01,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:01,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:01,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:01,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:49:01,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:49:01,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:04,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:04,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:04,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:04,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:49:04,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:49:04,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:04,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:04,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:04,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:04,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:49:04,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:49:04,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:06,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:06,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:06,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:06,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:49:06,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:49:06,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:06,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:06,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:06,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:06,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:49:06,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:49:06,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:08,005 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:49:08,032 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:49:08,129 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.175 +2025-10-01 14:49:08,129 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 14:49:08,131 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 14:49:08,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:08,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:08,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:08,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:49:08,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:49:08,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:10,010 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:49:10,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:49:10,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:49:10,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 14:49:10,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-01 14:49:10,313 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:49:13,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:13,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:13,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:13,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:49:13,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:49:13,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:14,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:14,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:14,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:14,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:49:14,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:49:14,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:15,020 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:49:15,046 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:49:15,143 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.832 +2025-10-01 14:49:15,143 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 14:49:15,145 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 14:49:15,293 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:49:15,309 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:49:15,395 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.001 +2025-10-01 14:49:15,395 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 14:49:15,395 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 14:49:19,029 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:49:19,060 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:49:19,140 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.579 +2025-10-01 14:49:19,141 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 14:49:19,141 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:49:19,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:19,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:19,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:19,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:49:19,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:49:19,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:22,834 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:49:22,868 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 666, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:49:22,947 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.281 +2025-10-01 14:49:22,947 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:49:22,947 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 14:49:24,615 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:49:24,641 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:49:24,723 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.635 +2025-10-01 14:49:24,724 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 14:49:24,725 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:49:25,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:25,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:25,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:25,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:49:25,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:49:25,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:26,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:26,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:26,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:26,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:49:26,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:49:26,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:35,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:35,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:35,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:35,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:49:35,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:49:35,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:36,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:36,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:36,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:36,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:49:36,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:49:36,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:39,909 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:49:39,941 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:49:40,049 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.290 +2025-10-01 14:49:40,050 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.107s +2025-10-01 14:49:40,051 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-01 14:49:41,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:41,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:41,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:42,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:49:42,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:49:42,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:42,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:42,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:42,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:42,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:49:42,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:49:42,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:45,930 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:49:45,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:49:46,082 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.587 +2025-10-01 14:49:46,083 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +2025-10-01 14:49:46,084 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-01 14:49:47,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:47,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:47,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:47,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:49:47,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:49:47,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:48,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:48,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:48,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:48,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s +2025-10-01 14:49:48,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image) +2025-10-01 14:49:48,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:49,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:49,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:49,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:49,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:49:49,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:49:49,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:51,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:51,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:51,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:51,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:49:51,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:49:51,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:51,677 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:49:51,702 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:49:51,785 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.638 +2025-10-01 14:49:51,785 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:49:51,785 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:49:52,115 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:49:52,136 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:49:52,211 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.658 +2025-10-01 14:49:52,211 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 14:49:52,211 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:49:52,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:52,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:52,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:52,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:49:52,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:49:52,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:54,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:54,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:54,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:54,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s +2025-10-01 14:49:54,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +2025-10-01 14:49:54,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:55,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:55,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:55,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:55,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:49:55,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:49:55,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:58,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:49:58,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:49:59,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:49:59,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:49:59,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:49:59,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:49:59,762 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:49:59,783 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:49:59,861 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.199 +2025-10-01 14:49:59,861 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:49:59,862 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:50:00,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:00,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:00,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:00,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:50:00,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:50:00,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:01,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:01,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:01,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:01,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:50:01,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:50:01,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:01,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:01,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:01,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:01,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:50:01,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:50:01,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:02,825 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:50:02,847 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:50:02,922 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.876 +2025-10-01 14:50:02,923 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 14:50:02,923 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:50:05,087 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:50:05,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:50:05,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:50:05,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 14:50:05,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 14:50:05,383 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:50:06,020 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:50:06,041 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:50:06,130 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.631 +2025-10-01 14:50:06,130 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 14:50:06,130 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 14:50:07,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:07,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:07,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:07,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:50:07,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:50:07,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:10,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:10,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:10,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:11,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 14:50:11,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 14:50:11,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:11,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:11,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:11,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:11,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:50:11,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:50:11,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:11,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:11,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:11,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:11,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:50:11,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:50:11,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:14,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:14,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:14,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:14,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:50:14,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:50:14,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:15,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:15,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:15,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:16,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:50:16,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:50:16,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:17,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:17,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:17,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:17,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:50:17,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:50:17,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:19,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:19,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:19,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:20,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:50:20,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:50:20,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:21,809 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:50:21,838 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:50:21,917 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.728 +2025-10-01 14:50:21,918 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:50:21,918 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:50:23,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:23,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:23,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:23,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 14:50:23,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 14:50:23,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:25,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:25,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:25,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:25,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:50:25,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:50:25,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:25,870 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:50:25,892 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:50:25,969 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.769 +2025-10-01 14:50:25,970 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:50:25,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 14:50:29,786 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:50:29,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:50:29,892 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.774 +2025-10-01 14:50:29,892 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:50:29,892 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:50:32,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:32,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:32,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:32,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:50:32,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:50:32,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:34,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:34,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:34,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:34,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 14:50:34,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 14:50:34,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:35,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:35,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:35,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:35,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:50:35,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:50:35,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:36,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:36,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:36,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:36,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:50:36,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:50:36,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:38,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:38,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:38,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:38,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:50:38,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:50:38,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:38,758 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:50:38,776 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:50:38,855 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=12.962 +2025-10-01 14:50:38,856 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:50:38,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:50:40,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:40,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:40,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:40,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:50:40,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:50:40,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:42,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:42,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:42,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:42,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:50:42,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:50:42,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:42,884 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:50:42,904 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:50:42,980 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=4.480 +2025-10-01 14:50:42,981 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:50:42,981 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:50:43,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:43,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:43,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:43,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 14:50:43,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 14:50:43,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:48,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:48,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:48,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:48,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 14:50:48,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 14:50:48,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:50,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:50,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:50,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:50,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:50:50,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:50:50,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:51,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:51,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:51,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:51,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:50:51,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:50:51,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:50:56,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:50:56,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:50:56,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:50:56,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:50:56,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:50:56,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:03,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:03,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:03,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:03,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:51:03,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:51:03,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:05,343 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:51:05,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:51:05,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:51:05,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-01 14:51:05,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +2025-10-01 14:51:05,659 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:51:08,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:08,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:08,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:08,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:51:08,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:51:08,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:10,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:10,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:10,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:11,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:51:11,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:51:11,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:13,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:13,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:13,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:13,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:51:13,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:51:13,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:16,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:16,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:16,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:16,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:51:16,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:51:16,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:17,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:17,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:17,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:17,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 14:51:17,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 14:51:17,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:21,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:21,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:21,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:21,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:51:21,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:51:21,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:21,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:21,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:21,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:21,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:51:21,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:51:21,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:26,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:26,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:26,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:27,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:51:27,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:51:27,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:27,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:27,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:27,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:27,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:51:27,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:51:27,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:28,091 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:51:28,115 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:51:28,203 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.724 +2025-10-01 14:51:28,203 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:51:28,204 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 14:51:30,651 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:51:30,690 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:51:30,774 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.774 +2025-10-01 14:51:30,775 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:51:30,777 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 14:51:31,617 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:51:31,642 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:51:31,739 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.230 +2025-10-01 14:51:31,739 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 14:51:31,739 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 14:51:32,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:32,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:32,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:32,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:51:32,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:51:32,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:33,554 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:51:33,581 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:51:33,674 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.963 +2025-10-01 14:51:33,674 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 14:51:33,674 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 14:51:34,836 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:51:34,861 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:51:34,941 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.038 +2025-10-01 14:51:34,942 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:51:34,942 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:51:35,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:35,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:35,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:35,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:51:35,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:51:35,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:37,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:37,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:37,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:37,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:51:37,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:51:37,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:42,126 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:51:42,154 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:51:42,235 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.496 +2025-10-01 14:51:42,236 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 14:51:42,236 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 14:51:42,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:42,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:42,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:42,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:51:42,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:51:42,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:44,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:44,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:44,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:44,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:51:44,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:51:44,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:45,455 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:51:45,479 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:51:45,554 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.896 +2025-10-01 14:51:45,555 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 14:51:45,555 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 14:51:46,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:46,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:46,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:47,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:51:47,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:51:47,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:48,664 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:51:48,684 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:51:48,759 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=177.405 +2025-10-01 14:51:48,759 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 14:51:48,759 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:51:49,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:49,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:49,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:49,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:51:49,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:51:49,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:49,620 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:51:49,653 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:51:49,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.998 +2025-10-01 14:51:49,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 14:51:49,734 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 14:51:50,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:50,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:50,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:51,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:51:51,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:51:51,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:56,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:56,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:56,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:56,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:51:56,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:51:56,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:51:57,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:51:57,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:51:57,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:51:57,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:51:57,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:51:57,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:01,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:01,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:02,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:02,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:52:02,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:52:02,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:02,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:02,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:02,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:02,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:52:02,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:52:02,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:03,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:03,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:03,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:03,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:52:03,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:52:03,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:05,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:05,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:05,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:05,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:52:05,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:52:05,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:05,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:05,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:05,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:06,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:52:06,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:52:06,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:09,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:09,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:10,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:10,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:52:10,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:52:10,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:12,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:12,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:12,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:12,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:52:12,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:52:12,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:13,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:13,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:13,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:13,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 14:52:13,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 14:52:13,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:16,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:16,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:16,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:16,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:52:16,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:52:16,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:17,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:17,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:17,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:17,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 14:52:17,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 14:52:17,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:17,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:17,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:17,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:17,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 14:52:17,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 14:52:17,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:21,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:21,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:22,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:22,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:52:22,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:52:22,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:23,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:23,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:23,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:23,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:52:23,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:52:23,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:24,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:24,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:24,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:24,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:52:24,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:52:24,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:24,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:24,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:24,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:24,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:52:24,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:52:24,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:25,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:25,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:25,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:25,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:52:25,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:52:25,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:28,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:28,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:28,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:28,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.216s +2025-10-01 14:52:28,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.216s (avg: 0.216s/image) +2025-10-01 14:52:28,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:31,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:31,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:31,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:31,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:52:31,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:52:31,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:33,906 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:52:33,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:52:33,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:52:34,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 14:52:34,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 14:52:34,207 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:52:34,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:34,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:34,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:35,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:52:35,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:52:35,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:35,329 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:52:35,349 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:52:35,416 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.463 +2025-10-01 14:52:35,416 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 14:52:35,417 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 14:52:37,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:37,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:37,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:37,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:52:37,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:52:37,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:38,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:38,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:38,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:38,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:52:38,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:52:38,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:38,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:38,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:38,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:38,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 14:52:38,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 14:52:38,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:39,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:39,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:39,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:39,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 14:52:39,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 14:52:39,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:39,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:39,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:39,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:39,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 14:52:39,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 14:52:39,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:40,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:40,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:40,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:40,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:52:40,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:52:40,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:43,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:43,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:43,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:43,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:52:43,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:52:43,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:43,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:43,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:43,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:44,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:52:44,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:52:44,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:44,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:44,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:44,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:44,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:52:44,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:52:44,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:46,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:46,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:46,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:47,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:52:47,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:52:47,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:47,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:47,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:47,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:48,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:52:48,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:52:48,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:49,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:49,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:49,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:49,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:52:49,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:52:49,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:49,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:52:49,724 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:52:49,811 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.540 +2025-10-01 14:52:49,811 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 14:52:49,812 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 14:52:51,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:51,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:51,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:51,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:52:51,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:52:51,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:52,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:52,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:52,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:52,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:52:52,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:52:52,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:52,970 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:52:53,004 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:52:53,104 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.789 +2025-10-01 14:52:53,104 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 14:52:53,105 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 14:52:55,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:55,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:55,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:55,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:52:55,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:52:55,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:56,492 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:52:56,515 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:52:56,614 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.849 +2025-10-01 14:52:56,615 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 14:52:56,616 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 14:52:56,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:56,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:56,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:56,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:52:56,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:52:56,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:52:57,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:52:57,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:52:57,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:52:57,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 14:52:57,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 14:52:57,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:01,400 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:53:01,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:53:01,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:53:01,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +2025-10-01 14:53:01,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.158s/image) +2025-10-01 14:53:01,719 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:53:02,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:02,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:02,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:02,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:53:02,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:53:02,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:02,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:02,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:02,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:02,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:53:02,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:53:02,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:02,531 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:53:02,549 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:53:02,629 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.956 +2025-10-01 14:53:02,629 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:53:02,630 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 14:53:05,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:05,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:05,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:05,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:53:05,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:53:05,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:09,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:09,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:09,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:09,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:53:09,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:53:09,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:10,172 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:53:10,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:53:10,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:53:10,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 14:53:10,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-01 14:53:10,446 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:53:13,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:13,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:13,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:13,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:53:13,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:53:13,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:14,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:14,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:14,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:14,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 14:53:14,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 14:53:14,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:15,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:15,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:15,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:15,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 14:53:15,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 14:53:15,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:18,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:18,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:18,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:18,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:53:18,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:53:18,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:18,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:18,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:18,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:18,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:53:18,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:53:18,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:23,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:23,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:23,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:23,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 14:53:23,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 14:53:23,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:23,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:23,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:23,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:23,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:53:23,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:53:23,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:24,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:24,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:24,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:24,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:53:24,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:53:24,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:25,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:25,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:25,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:25,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:53:25,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:53:25,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:25,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:25,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:25,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:25,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:53:25,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:53:25,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:27,014 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:53:27,045 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:53:27,131 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.742 +2025-10-01 14:53:27,131 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 14:53:27,131 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 14:53:28,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:28,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:28,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:28,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:53:28,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:53:28,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:29,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:29,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:29,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:29,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:53:29,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:53:29,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:29,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:29,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:29,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:30,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:53:30,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:53:30,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:34,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:34,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:34,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:34,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:53:34,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:53:34,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:35,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:35,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:35,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:35,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:53:35,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:53:35,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:35,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:35,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:35,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:35,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:53:35,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:53:35,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:41,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:41,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:41,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:41,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 14:53:41,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 14:53:41,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:41,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:41,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:42,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:42,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:53:42,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:53:42,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:44,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:44,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:44,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:44,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:53:44,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:53:44,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:47,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:47,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:47,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:47,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:53:47,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:53:47,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:54,100 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:53:54,120 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:53:54,197 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.397 +2025-10-01 14:53:54,197 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:53:54,197 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 14:53:54,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:54,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:54,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:55,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:53:55,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:53:55,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:53:56,846 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:53:56,868 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:53:56,963 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.630 +2025-10-01 14:53:56,963 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 14:53:56,963 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 14:53:59,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:53:59,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:53:59,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:53:59,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:53:59,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:53:59,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:01,182 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:54:01,205 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:54:01,287 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.893 +2025-10-01 14:54:01,287 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:54:01,287 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:54:05,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:05,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:05,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:05,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:54:05,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:54:05,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:05,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:05,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:05,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:05,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:54:05,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:54:05,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:08,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:08,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:08,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:08,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:54:08,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:54:08,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:09,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:09,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:09,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:09,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:54:09,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:54:09,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:10,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:10,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:10,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:10,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:54:10,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:54:10,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:15,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:15,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:15,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:15,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:54:15,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:54:15,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:19,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:19,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:19,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:19,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:54:19,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:54:19,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:20,336 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:54:20,357 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:54:20,441 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.249 +2025-10-01 14:54:20,441 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:54:20,441 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:54:23,845 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:54:23,870 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:54:23,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.540 +2025-10-01 14:54:23,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 14:54:23,946 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 14:54:26,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:26,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:26,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:26,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 14:54:26,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 14:54:26,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:27,347 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:54:27,368 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:54:27,447 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.351 +2025-10-01 14:54:27,447 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:54:27,448 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:54:27,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:27,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:27,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:28,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:54:28,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:54:28,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:30,611 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:54:30,634 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:54:30,730 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.492 +2025-10-01 14:54:30,730 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 14:54:30,730 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 14:54:35,907 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:54:35,938 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:54:36,022 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.099 +2025-10-01 14:54:36,022 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:54:36,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:54:37,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:37,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:37,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:37,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:54:37,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:54:37,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:38,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:38,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:38,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:39,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:54:39,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:54:39,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:40,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:40,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:40,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:40,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:54:40,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:54:40,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:40,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:40,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:40,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:40,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:54:40,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:54:40,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:41,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:41,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:41,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:41,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:54:41,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:54:41,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:43,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:43,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:43,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:43,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:54:43,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:54:43,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:45,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:45,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:45,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:46,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:54:46,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:54:46,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:49,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:49,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:49,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:49,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:54:49,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:54:49,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:50,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:50,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:50,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:50,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 14:54:50,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 14:54:50,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:53,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:53,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:53,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:53,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:54:53,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:54:53,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:55,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:55,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:55,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:55,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:54:55,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:54:55,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:55,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:55,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:55,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:55,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:54:55,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:54:55,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:56,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:56,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:56,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:56,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:54:56,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:54:56,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:59,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:59,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:59,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:59,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:54:59,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:54:59,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:54:59,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:54:59,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:54:59,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:54:59,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:54:59,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:54:59,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:02,219 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:55:02,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:55:02,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:55:02,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 14:55:02,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 14:55:02,506 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:55:02,886 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:55:02,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:55:02,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:55:03,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 14:55:03,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 14:55:03,162 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:55:04,942 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:55:04,965 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:55:05,053 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=164.261 +2025-10-01 14:55:05,054 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:55:05,054 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 14:55:06,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:06,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:06,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:06,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:55:06,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:55:06,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:08,505 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:55:08,537 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:55:08,618 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.294 +2025-10-01 14:55:08,618 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 14:55:08,618 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:55:09,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:09,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:09,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:09,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:55:09,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:55:09,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:10,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:10,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:10,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:10,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:55:10,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:55:10,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:10,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:10,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:10,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:10,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:55:10,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:55:10,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:12,085 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:55:12,108 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:55:12,204 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.142 +2025-10-01 14:55:12,205 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 14:55:12,206 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 14:55:13,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:13,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:13,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:13,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 14:55:13,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 14:55:13,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:14,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:14,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:14,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:14,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:55:14,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:55:14,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:15,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:15,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:15,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:15,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:55:15,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:55:15,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:17,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:17,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:17,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:17,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:55:17,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:55:17,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:20,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:20,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:20,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:20,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:55:20,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:55:20,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:21,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:21,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:21,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:21,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:55:21,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:55:21,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:21,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:21,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:21,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:21,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 14:55:21,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 14:55:21,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:22,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:22,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:22,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:22,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:55:22,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:55:22,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:23,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:23,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:23,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:23,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 14:55:23,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 14:55:23,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:26,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:26,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:26,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:26,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:55:26,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:55:26,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:26,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:26,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:27,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:27,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:55:27,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:55:27,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:27,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:27,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:27,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:27,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 14:55:27,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 14:55:27,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:28,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:28,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:28,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:28,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 14:55:28,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 14:55:28,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:29,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:29,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:29,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:29,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 14:55:29,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 14:55:29,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:29,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:29,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:29,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:29,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:55:29,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:55:29,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:33,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:33,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:33,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:33,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:55:33,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:55:33,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:34,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:34,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:34,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:34,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:55:34,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:55:34,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:34,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:34,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:34,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:35,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:55:35,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:55:35,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:35,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:35,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:35,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:35,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:55:35,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:55:35,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:38,025 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:55:38,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:55:38,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:55:38,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.258s +2025-10-01 14:55:38,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.258s (avg: 0.129s/image) +2025-10-01 14:55:38,285 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:55:38,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:38,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:38,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:38,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 14:55:38,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 14:55:38,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:39,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:39,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:39,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:39,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:55:39,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:55:39,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:40,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:40,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:40,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:40,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:55:40,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:55:40,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:40,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:40,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:40,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:40,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:55:40,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:55:40,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:41,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:41,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:41,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:41,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:55:41,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:55:41,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:44,357 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:55:44,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:55:44,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:55:44,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 14:55:44,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 14:55:44,653 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:55:45,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:45,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:45,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:45,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 14:55:45,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 14:55:45,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:46,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:46,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:46,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:46,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:55:46,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:55:46,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:51,093 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:55:51,122 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:55:51,215 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.619 +2025-10-01 14:55:51,215 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 14:55:51,217 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 14:55:51,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:51,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:51,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:51,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:55:51,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:55:51,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:52,479 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:55:52,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:55:52,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:55:52,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 14:55:52,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 14:55:52,766 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:55:53,467 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:55:53,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:55:53,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:55:53,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 14:55:53,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 14:55:53,767 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:55:54,580 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:55:54,615 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:55:54,698 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.069 +2025-10-01 14:55:54,699 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:55:54,699 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:55:57,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:57,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:57,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:57,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:55:57,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:55:57,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:55:58,839 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:55:58,864 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:55:58,959 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.906 +2025-10-01 14:55:58,959 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 14:55:58,961 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 14:55:59,040 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:55:59,054 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:55:59,132 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.319 +2025-10-01 14:55:59,132 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:55:59,132 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 14:55:59,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:55:59,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:55:59,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:55:59,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 14:55:59,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 14:55:59,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:02,378 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:56:02,398 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:56:02,487 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.724 +2025-10-01 14:56:02,488 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 14:56:02,488 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 14:56:04,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:04,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:04,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:04,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 14:56:04,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 14:56:04,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:06,001 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:56:06,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:56:06,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:56:06,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 14:56:06,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 14:56:06,279 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:56:06,721 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:56:06,742 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:56:06,819 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.059 +2025-10-01 14:56:06,819 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 14:56:06,820 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 14:56:09,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:09,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:09,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:09,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:56:09,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:56:09,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:12,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:12,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:13,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:13,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:56:13,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:56:13,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:13,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:13,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:13,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:13,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:56:13,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:56:13,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:17,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:17,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:18,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:18,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:56:18,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:56:18,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:19,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:19,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:19,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:19,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:56:19,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:56:19,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:21,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:21,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:21,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:21,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:56:21,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:56:21,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:21,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:21,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:21,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:21,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:56:21,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:56:21,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:24,032 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:56:24,062 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:56:24,161 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.087 +2025-10-01 14:56:24,161 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 14:56:24,163 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 14:56:25,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:25,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:25,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:25,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:56:25,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:56:25,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:27,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:27,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:27,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:27,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:56:27,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:56:27,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:27,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:27,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:27,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:28,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:56:28,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:56:28,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:31,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:31,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:31,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:31,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 14:56:31,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 14:56:31,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:34,902 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:56:34,926 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:56:35,016 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.681 +2025-10-01 14:56:35,016 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 14:56:35,016 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 14:56:35,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:35,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:35,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:35,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:56:35,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:56:35,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:35,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:35,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:35,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:36,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 14:56:36,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 14:56:36,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:38,538 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:56:38,562 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:56:38,649 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.212 +2025-10-01 14:56:38,649 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 14:56:38,649 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 14:56:39,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:39,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:39,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:39,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:56:39,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:56:39,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:40,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:40,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:40,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:40,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:56:40,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:56:40,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:41,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:41,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:42,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:42,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 14:56:42,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 14:56:42,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:42,393 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:56:42,418 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:56:42,498 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.490 +2025-10-01 14:56:42,499 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:56:42,499 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:56:45,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:45,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:45,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:45,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:56:45,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:56:45,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:50,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:50,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:50,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:50,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:56:50,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:56:50,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:53,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:53,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:53,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:53,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:56:53,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:56:53,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:54,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:54,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:54,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:54,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:56:54,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:56:54,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:58,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:58,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:58,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:58,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:56:58,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:56:58,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:56:59,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:56:59,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:56:59,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:56:59,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:56:59,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:56:59,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:00,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:00,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:00,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:00,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:57:00,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:57:00,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:03,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:03,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:03,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:03,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:57:03,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:57:03,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:04,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:04,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:04,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:04,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 14:57:04,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 14:57:04,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:06,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:06,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:06,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:06,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:57:06,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:57:06,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:08,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:08,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:08,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:08,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:57:08,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:57:08,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:08,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:08,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:08,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:09,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:57:09,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:57:09,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:09,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:09,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:09,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:09,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:57:09,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:57:09,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:09,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:09,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:09,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:10,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:57:10,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:57:10,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:10,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:10,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:10,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:10,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:57:10,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:57:10,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:13,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:13,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:13,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:13,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 14:57:13,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 14:57:13,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:14,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:14,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:14,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:14,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:57:14,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:57:14,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:14,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:14,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:14,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:14,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:57:14,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:57:14,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:16,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:16,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:16,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:16,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:57:16,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:57:16,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:17,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:17,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:17,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:17,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 14:57:17,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 14:57:17,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:18,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:18,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:18,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:18,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 14:57:18,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 14:57:18,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:18,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:18,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:18,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:19,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:57:19,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:57:19,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:19,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:19,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:19,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:19,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:57:19,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:57:19,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:21,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:21,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:21,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:21,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:57:21,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:57:21,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:23,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:23,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:23,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:23,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:57:23,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:57:23,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:24,288 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:57:24,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:57:24,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:57:24,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 14:57:24,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 14:57:24,557 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:57:24,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:24,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:24,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:24,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:57:24,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:57:24,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:27,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:27,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:27,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:27,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:57:27,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:57:27,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:29,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:29,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:29,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:30,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:57:30,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:57:30,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:34,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:34,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:34,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:34,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:57:34,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:57:34,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:34,641 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:57:34,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:57:34,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:57:34,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 14:57:34,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 14:57:34,933 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:57:35,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:35,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:35,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:36,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 14:57:36,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 14:57:36,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:37,726 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:57:37,750 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:57:37,833 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.934 +2025-10-01 14:57:37,833 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:57:37,833 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 14:57:39,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:39,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:39,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:39,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:57:39,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:57:39,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:39,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:39,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:39,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:39,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 14:57:39,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 14:57:39,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:42,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:42,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:42,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:43,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:57:43,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:57:43,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:43,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:43,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:43,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:43,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 14:57:43,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 14:57:43,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:43,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:43,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:43,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:43,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 14:57:43,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 14:57:43,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:46,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:46,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:46,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:46,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 14:57:46,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 14:57:46,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:47,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:47,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:47,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:47,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 14:57:47,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 14:57:47,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:48,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:48,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:48,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:48,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:57:48,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:57:48,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:48,997 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:57:49,029 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:57:49,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.919 +2025-10-01 14:57:49,110 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 14:57:49,110 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 14:57:51,366 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:57:51,408 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:57:51,491 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.367 +2025-10-01 14:57:51,491 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 14:57:51,491 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:57:54,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:54,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:54,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:54,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 14:57:54,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 14:57:54,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:57,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:57,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:57,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:57,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:57:57,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:57:57,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:57:59,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:57:59,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:57:59,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:57:59,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 14:57:59,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 14:57:59,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:03,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:03,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:03,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:03,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:58:03,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:58:03,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:03,909 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:58:03,948 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:58:04,026 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.847 +2025-10-01 14:58:04,026 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 14:58:04,027 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 14:58:04,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:04,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:04,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:04,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 14:58:04,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 14:58:04,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:06,054 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:58:06,087 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:58:06,167 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=177.454 +2025-10-01 14:58:06,167 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:58:06,167 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 14:58:09,724 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:58:09,754 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:58:09,832 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.365 +2025-10-01 14:58:09,833 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 14:58:09,833 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 14:58:10,025 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:58:10,056 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:58:10,138 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.014 +2025-10-01 14:58:10,138 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 14:58:10,138 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 14:58:10,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:10,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:11,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:11,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 14:58:11,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 14:58:11,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:13,251 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:58:13,274 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:58:13,349 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.356 +2025-10-01 14:58:13,349 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 14:58:13,349 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 14:58:18,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:18,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:18,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:18,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:58:18,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:58:18,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:20,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:20,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:20,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:20,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:58:20,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:58:20,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:22,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:22,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:22,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:22,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 14:58:22,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 14:58:22,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:24,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:24,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:24,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:24,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 14:58:24,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 14:58:24,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:26,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:26,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:26,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:26,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:58:26,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:58:26,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:27,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:27,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:27,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:27,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:58:27,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:58:27,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:31,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:31,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:31,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:31,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:58:31,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:58:31,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:32,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:32,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:32,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:33,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:58:33,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:58:33,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:35,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:35,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:35,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:35,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 14:58:35,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 14:58:35,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:37,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:37,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:37,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:37,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 14:58:37,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 14:58:37,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:39,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:39,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:39,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:39,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 14:58:39,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 14:58:39,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:39,379 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:58:39,421 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:58:39,506 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.105 +2025-10-01 14:58:39,506 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:58:39,506 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 14:58:43,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:43,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:43,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:43,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 14:58:43,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 14:58:43,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:47,614 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:58:47,652 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:58:47,740 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.538 +2025-10-01 14:58:47,741 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:58:47,741 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 14:58:48,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:48,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:48,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:48,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 14:58:48,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 14:58:48,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:50,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:50,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:50,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:50,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 14:58:50,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 14:58:50,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:51,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:51,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:51,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:51,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 14:58:51,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 14:58:51,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:53,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:53,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:53,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:53,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 14:58:53,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 14:58:53,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:58:56,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:58:56,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:58:56,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:58:57,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 14:58:57,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 14:58:57,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:01,850 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:59:01,893 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:59:01,980 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.007 +2025-10-01 14:59:01,981 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 14:59:01,982 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 14:59:03,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:03,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:03,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:03,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 14:59:03,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 14:59:03,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:04,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:04,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:04,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:04,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:59:04,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:59:04,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:05,639 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:59:05,680 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:59:05,780 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.123 +2025-10-01 14:59:05,780 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 14:59:05,781 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 14:59:06,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:06,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:06,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:06,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 14:59:06,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 14:59:06,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:06,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:06,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:06,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:06,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 14:59:06,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 14:59:06,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:10,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:10,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:10,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:10,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 14:59:10,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 14:59:10,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:11,320 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:59:11,362 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:59:11,461 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=168.149 +2025-10-01 14:59:11,462 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 14:59:11,463 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 14:59:11,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:11,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:11,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:11,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 14:59:11,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 14:59:11,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:18,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:18,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:18,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:18,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:59:18,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:59:18,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:18,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:18,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:18,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:18,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:59:18,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:59:18,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:19,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:19,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:19,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:19,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:59:19,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:59:19,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:25,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:25,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:25,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:25,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 14:59:25,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 14:59:25,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:25,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:25,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:25,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:26,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 14:59:26,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 14:59:26,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:26,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:26,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:26,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:26,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 14:59:26,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 14:59:26,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:28,796 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:59:28,824 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:59:28,914 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.283 +2025-10-01 14:59:28,914 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 14:59:28,915 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 14:59:32,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:32,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:32,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:32,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 14:59:32,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 14:59:32,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:34,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:34,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:34,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:34,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 14:59:34,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 14:59:34,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:38,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:38,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:38,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:39,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 14:59:39,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 14:59:39,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:39,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:39,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:39,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:39,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 14:59:39,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 14:59:39,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:40,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:40,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:40,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:40,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 14:59:40,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 14:59:40,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:43,111 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:59:43,147 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:59:43,242 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.706 +2025-10-01 14:59:43,242 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 14:59:43,242 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 14:59:43,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:43,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:43,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:43,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 14:59:43,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 14:59:43,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:44,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:44,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:44,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:44,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 14:59:44,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 14:59:44,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:44,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:44,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:44,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:44,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 14:59:44,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 14:59:44,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:46,313 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:59:46,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:59:46,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:59:46,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 14:59:46,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 14:59:46,607 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 14:59:46,905 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:59:46,934 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:59:47,018 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.041 +2025-10-01 14:59:47,018 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 14:59:47,018 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 14:59:48,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:48,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:48,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:48,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 14:59:48,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 14:59:48,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:50,418 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 14:59:50,437 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 14:59:50,510 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.142 +2025-10-01 14:59:50,511 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 14:59:50,511 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 14:59:50,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:50,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:50,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:50,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 14:59:50,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 14:59:50,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:51,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:51,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:52,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:52,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 14:59:52,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 14:59:52,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:56,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 14:59:56,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 14:59:56,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 14:59:56,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 14:59:56,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 14:59:56,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 14:59:56,895 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 14:59:56,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 14:59:56,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 14:59:57,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 14:59:57,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 14:59:57,188 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:00:00,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:00,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:00,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:01,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 15:00:01,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 15:00:01,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:03,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:03,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:03,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:03,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:00:03,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:00:03,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:04,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:04,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:05,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:05,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:00:05,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:00:05,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:07,596 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:00:07,624 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:00:07,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.904 +2025-10-01 15:00:07,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:00:07,707 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:00:08,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:08,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:08,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:09,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:00:09,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:00:09,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:10,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:10,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:10,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:10,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:00:10,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:00:10,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:10,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:10,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:10,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:11,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:00:11,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:00:11,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:11,365 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:00:11,392 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:00:11,472 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.904 +2025-10-01 15:00:11,472 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:00:11,472 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:00:11,970 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:00:12,001 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(794, 796, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:00:12,083 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.200 +2025-10-01 15:00:12,083 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:00:12,083 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:00:13,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:13,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:13,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:13,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s +2025-10-01 15:00:13,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +2025-10-01 15:00:13,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:14,606 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:00:14,646 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:00:14,721 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.841 +2025-10-01 15:00:14,722 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:00:14,722 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:00:14,922 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:00:14,945 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:00:15,022 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.325 +2025-10-01 15:00:15,022 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:00:15,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:00:16,202 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:00:16,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:00:16,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:00:16,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 15:00:16,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 15:00:16,504 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:00:16,583 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:00:16,602 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(795, 796, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:00:16,683 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.000 +2025-10-01 15:00:16,684 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:00:16,684 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:00:20,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:20,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:20,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:20,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 15:00:20,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 15:00:20,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:20,691 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:00:20,716 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(798, 796, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:00:20,792 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.185 +2025-10-01 15:00:20,792 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:00:20,792 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:00:22,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:22,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:22,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:22,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:00:22,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:00:22,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:23,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:23,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:23,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:24,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:00:24,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:00:24,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:27,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:27,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:27,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:27,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:00:27,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:00:27,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:27,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:27,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:27,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:28,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:00:28,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:00:28,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:28,117 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:00:28,136 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:00:28,230 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.210 +2025-10-01 15:00:28,230 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 15:00:28,230 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 15:00:30,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:30,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:30,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:30,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:00:30,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:00:30,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:33,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:33,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:33,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:33,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:00:33,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:00:33,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:33,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:33,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:33,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:33,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 15:00:33,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 15:00:33,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:34,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:34,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:35,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:35,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 15:00:35,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 15:00:35,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:35,529 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:00:35,541 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:00:35,624 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.509 +2025-10-01 15:00:35,624 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:00:35,625 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:00:35,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:35,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:35,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:35,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:00:35,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:00:35,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:37,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:37,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:37,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:37,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 15:00:37,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 15:00:37,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:42,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:42,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:42,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:42,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:00:42,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:00:42,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:43,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:43,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:43,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:43,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:00:43,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:00:43,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:43,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:43,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:43,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:43,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 15:00:43,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 15:00:43,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:45,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:45,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:45,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:45,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:00:45,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:00:45,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:48,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:48,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:48,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:48,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:00:48,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:00:48,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:50,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:50,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:50,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:50,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:00:50,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:00:50,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:51,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:00:51,455 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:00:51,553 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.514 +2025-10-01 15:00:51,554 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 15:00:51,554 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 15:00:52,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:52,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:52,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:52,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:00:52,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:00:52,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:56,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:56,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:56,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:56,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:00:56,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:00:56,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:56,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:56,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:56,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:57,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:00:57,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:00:57,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:00:58,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:00:58,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:00:58,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:00:58,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:00:58,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:00:58,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:00,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:00,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:00,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:00,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:01:00,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:01:00,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:01,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:01,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:01,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:01,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:01:01,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:01:01,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:02,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:02,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:02,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:02,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:01:02,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:01:02,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:02,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:02,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:02,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:03,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 15:01:03,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 15:01:03,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:06,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:06,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:06,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:06,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:01:06,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:01:06,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:08,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:08,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:08,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:09,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:01:09,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:01:09,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:09,512 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:01:09,536 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:01:09,609 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.906 +2025-10-01 15:01:09,609 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:01:09,609 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:01:10,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:10,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:10,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:10,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:01:10,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:01:10,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:19,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:19,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:19,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:19,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 15:01:19,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 15:01:19,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:19,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:19,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:19,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:19,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:01:19,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:01:19,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:20,585 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:01:20,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:01:20,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:01:20,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 15:01:20,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 15:01:20,862 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:01:21,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:21,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:21,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:21,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:01:21,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:01:21,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:24,443 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:01:24,475 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:01:24,564 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.457 +2025-10-01 15:01:24,564 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:01:24,566 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:01:25,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:25,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:25,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:25,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:01:25,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:01:25,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:26,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:26,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:26,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:26,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:01:26,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:01:26,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:27,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:27,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:27,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:28,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:01:28,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:01:28,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:28,091 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:01:28,118 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:01:28,206 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.778 +2025-10-01 15:01:28,207 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:01:28,208 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:01:31,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:31,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:31,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:31,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:01:31,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:01:31,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:32,415 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:01:32,463 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:01:32,558 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.991 +2025-10-01 15:01:32,559 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 15:01:32,559 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 15:01:34,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:34,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:34,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:34,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:01:34,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:01:34,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:35,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:35,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:35,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:35,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:01:35,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:01:35,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:35,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:35,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:35,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:35,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:01:35,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:01:35,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:38,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:38,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:38,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:38,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:01:38,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:01:38,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:38,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:38,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:38,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:38,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:01:38,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:01:38,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:43,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:43,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:43,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:44,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:01:44,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:01:44,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:46,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:46,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:46,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:46,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:01:46,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:01:46,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:51,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:51,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:51,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:51,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:01:51,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:01:51,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:54,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:54,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:54,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:55,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:01:55,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:01:55,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:55,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:55,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:55,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:55,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 15:01:55,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 15:01:55,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:55,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:55,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:55,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:55,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:01:55,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:01:55,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:56,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:01:56,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:01:56,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:01:56,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:01:56,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:01:56,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:01:58,370 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:01:58,395 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:01:58,496 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.695 +2025-10-01 15:01:58,497 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 15:01:58,498 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 15:02:01,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:01,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:01,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:01,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:02:01,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:02:01,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:03,786 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:02:03,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:02:03,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:02:04,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 15:02:04,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 15:02:04,082 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:02:05,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:05,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:05,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:05,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 15:02:05,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 15:02:05,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:05,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:05,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:05,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:05,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:02:05,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:02:05,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:05,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:05,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:05,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:06,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:02:06,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:02:06,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:07,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:07,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:07,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:07,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:02:07,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:02:07,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:08,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:08,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:08,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:08,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:02:08,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:02:08,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:11,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:11,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:11,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:11,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:02:11,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:02:11,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:11,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:11,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:11,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:11,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:02:11,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:02:11,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:12,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:12,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:12,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:12,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:02:12,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:02:12,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:12,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:12,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:12,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:13,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:02:13,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:02:13,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:16,317 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:02:16,341 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:02:16,431 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.125 +2025-10-01 15:02:16,432 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:02:16,432 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 15:02:16,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:16,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:16,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:17,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:02:17,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:02:17,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:17,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:17,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:17,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:17,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:02:17,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:02:17,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:18,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:18,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:18,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:18,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:02:18,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:02:18,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:19,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:19,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:19,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:19,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:02:19,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:02:19,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:23,576 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:02:23,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:02:23,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:02:23,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 15:02:23,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 15:02:23,852 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:02:24,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:24,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:24,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:24,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:02:24,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:02:24,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:25,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:25,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:25,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:25,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:02:25,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:02:25,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:28,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:28,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:28,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:28,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:02:28,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:02:28,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:33,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:33,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:33,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:33,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:02:33,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:02:33,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:37,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:37,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:37,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:37,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:02:37,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:02:37,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:37,298 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:02:37,320 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:02:37,398 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.357 +2025-10-01 15:02:37,398 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:02:37,399 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:02:38,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:38,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:38,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:38,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:02:38,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:02:38,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:42,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:42,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:42,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:42,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:02:42,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:02:42,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:47,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:47,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:47,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:47,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:02:47,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:02:47,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:49,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:49,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:49,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:50,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:02:50,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:02:50,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:50,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:50,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:50,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:50,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:02:50,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:02:50,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:02:55,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:02:55,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:02:55,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:02:55,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:02:55,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:02:55,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:02,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:02,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:02,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:02,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:03:02,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:03:02,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:03,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:03,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:03,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:03,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:03:03,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:03:03,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:03,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:03,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:03,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:04,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:03:04,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:03:04,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:10,931 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:03:10,969 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:03:11,059 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.252 +2025-10-01 15:03:11,059 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:03:11,062 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 15:03:11,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:11,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:12,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:12,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:03:12,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:03:12,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:18,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:18,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:18,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:18,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:03:18,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:03:18,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:20,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:20,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:20,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:20,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:03:20,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:03:20,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:21,214 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:03:21,242 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:03:21,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.016 +2025-10-01 15:03:21,336 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 15:03:21,338 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 15:03:24,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:24,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:24,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:24,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:03:24,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:03:24,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:25,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:25,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:25,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:25,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:03:25,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:03:25,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:25,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:25,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:25,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:25,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:03:25,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:03:25,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:29,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:29,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:29,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:29,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:03:29,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:03:29,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:47,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:47,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:47,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:47,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:03:47,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:03:47,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:52,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:52,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:52,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:52,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:03:52,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:03:52,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:54,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:54,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:54,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:54,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:03:54,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:03:54,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:03:56,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:03:56,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:03:56,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:03:57,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:03:57,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:03:57,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:00,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:00,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:00,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:00,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:04:00,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:04:00,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:00,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:00,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:00,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:01,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:04:01,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:04:01,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:03,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:03,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:03,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:03,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:04:03,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:04:03,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:05,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:05,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:05,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:05,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:04:05,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:04:05,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:10,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:10,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:10,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:10,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:04:10,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:04:10,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:12,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:12,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:12,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:12,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:04:12,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:04:12,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:15,763 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:04:15,787 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:04:15,877 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.833 +2025-10-01 15:04:15,877 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:04:15,877 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:04:16,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:16,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:16,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:16,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:04:16,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:04:16,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:16,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:16,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:16,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:16,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 15:04:16,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 15:04:16,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:17,175 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:04:17,194 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:04:17,271 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.072 +2025-10-01 15:04:17,271 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:04:17,271 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:04:20,553 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:04:20,574 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:04:20,651 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.754 +2025-10-01 15:04:20,651 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:04:20,651 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:04:22,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:22,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:22,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:22,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:04:22,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:04:22,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:23,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:23,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:23,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:23,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:04:23,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:04:23,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:23,446 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:04:23,466 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:04:23,556 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.295 +2025-10-01 15:04:23,557 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:04:23,558 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:04:24,494 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:04:24,512 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:04:24,598 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.792 +2025-10-01 15:04:24,599 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 15:04:24,599 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 15:04:25,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:25,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:25,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:26,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:04:26,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:04:26,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:27,233 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:04:27,264 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:04:27,351 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.711 +2025-10-01 15:04:27,352 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 15:04:27,353 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:04:28,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:28,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:28,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:28,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:04:28,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:04:28,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:29,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:29,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:29,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:29,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:04:29,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:04:29,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:30,641 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:04:30,664 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:04:30,769 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.047 +2025-10-01 15:04:30,769 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 15:04:30,770 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 15:04:31,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:31,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:31,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:31,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:04:31,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:04:31,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:33,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:33,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:33,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:33,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:04:33,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:04:33,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:34,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:34,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:34,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:34,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:04:34,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:04:34,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:35,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:35,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:35,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:35,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:04:35,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:04:35,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:36,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:36,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:36,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:36,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:04:36,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:04:36,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:37,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:37,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:37,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:37,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:04:37,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:04:37,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:38,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:38,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:38,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:39,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:04:39,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:04:39,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:40,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:40,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:40,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:40,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:04:40,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:04:40,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:42,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:42,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:42,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:42,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:04:42,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:04:42,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:43,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:04:43,841 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:04:43,940 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.381 +2025-10-01 15:04:43,940 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 15:04:43,940 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 15:04:45,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:45,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:45,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:45,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:04:45,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:04:45,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:45,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:45,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:45,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:45,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:04:45,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:04:45,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:46,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:46,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:46,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:46,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:04:46,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:04:46,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:48,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:48,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:48,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:48,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:04:48,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:04:48,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:48,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:48,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:48,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:48,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:04:48,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:04:48,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:51,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:51,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:51,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:51,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:04:51,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:04:51,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:51,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:51,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:51,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:51,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:04:51,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:04:51,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:54,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:54,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:54,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:54,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:04:54,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:04:54,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:57,318 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:04:57,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:04:57,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:04:57,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 15:04:57,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 15:04:57,602 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:04:57,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:57,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:57,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:57,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:04:57,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:04:57,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:58,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:58,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:58,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:58,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:04:58,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:04:58,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:04:59,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:04:59,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:04:59,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:04:59,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:04:59,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:04:59,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:02,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:02,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:02,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:03,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:05:03,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:05:03,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:03,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:03,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:03,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:03,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:05:03,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:05:03,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:04,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:04,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:04,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:04,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:05:04,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:05:04,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:05,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:05,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:05,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:05,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:05:05,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:05:05,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:07,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:07,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:07,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:07,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:05:07,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:05:07,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:07,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:07,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:07,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:07,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 15:05:07,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 15:05:07,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:09,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:09,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:10,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:10,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:05:10,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:05:10,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:10,422 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:05:10,458 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:05:10,542 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.702 +2025-10-01 15:05:10,542 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:05:10,542 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:05:11,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:11,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:11,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:11,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:05:11,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:05:11,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:12,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:12,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:12,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:12,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:05:12,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:05:12,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:16,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:16,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:16,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:16,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:05:16,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:05:16,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:16,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:16,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:16,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:16,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:05:16,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:05:16,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:16,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:16,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:16,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:16,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:05:16,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:05:16,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:20,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:20,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:20,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:20,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:05:20,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:05:20,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:20,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:20,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:20,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:20,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:05:20,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:05:20,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:22,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:22,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:22,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:22,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:05:22,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:05:22,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:23,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:23,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:23,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:23,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:05:23,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:05:23,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:24,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:24,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:24,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:24,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:05:24,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:05:24,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:25,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:25,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:25,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:25,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:05:25,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:05:25,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:29,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:29,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:29,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:29,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:05:29,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:05:29,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:29,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:29,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:29,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:29,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:05:29,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:05:29,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:32,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:32,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:32,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:32,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:05:32,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:05:32,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:35,421 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:05:35,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:05:35,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:05:35,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 15:05:35,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 15:05:35,706 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:05:36,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:36,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:36,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:36,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:05:36,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:05:36,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:37,143 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:05:37,164 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:05:37,244 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=218.223 +2025-10-01 15:05:37,244 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:05:37,244 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:05:41,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:41,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:41,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:41,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:05:41,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:05:41,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:41,344 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:05:41,365 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:05:41,441 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.126 +2025-10-01 15:05:41,441 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:05:41,441 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:05:41,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:41,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:41,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:42,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:05:42,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:05:42,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:45,030 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:05:45,066 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:05:45,151 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.242 +2025-10-01 15:05:45,151 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:05:45,151 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 15:05:47,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:47,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:47,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:47,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:05:47,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:05:47,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:48,112 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:05:48,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:05:48,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:05:48,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 15:05:48,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 15:05:48,407 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:05:48,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:05:48,724 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:05:48,801 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=205.268 +2025-10-01 15:05:48,801 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:05:48,801 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:05:53,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:53,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:53,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:54,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:05:54,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:05:54,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:57,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:57,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:57,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:57,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:05:57,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:05:57,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:58,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:58,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:58,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:58,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:05:58,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:05:58,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:05:59,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:05:59,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:05:59,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:05:59,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:05:59,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:05:59,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:03,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:03,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:03,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:03,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:06:03,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:06:03,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:05,793 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:06:05,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(885, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:06:05,897 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.191 +2025-10-01 15:06:05,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:06:05,898 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:06:06,057 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:06:06,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:06:06,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:06:06,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 15:06:06,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 15:06:06,345 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:06:06,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:06,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:07,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:07,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:06:07,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:06:07,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:08,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:08,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:08,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:08,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:06:08,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:06:08,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:11,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:11,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:11,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:11,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 15:06:11,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 15:06:11,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:11,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:11,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:11,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:11,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:06:11,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:06:11,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:17,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:17,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:17,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:17,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:06:17,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:06:17,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:22,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:22,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:22,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:22,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:06:22,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:06:22,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:22,894 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:06:22,918 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:06:23,006 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.271 +2025-10-01 15:06:23,007 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:06:23,007 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:06:23,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:23,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:23,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:23,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:06:23,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:06:23,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:24,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:24,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:24,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:24,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:06:24,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:06:24,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:28,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:28,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:28,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:28,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:06:28,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:06:28,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:28,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:28,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:28,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:28,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:06:28,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:06:28,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:31,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:31,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:31,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:31,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:06:31,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:06:31,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:36,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:36,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:36,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:36,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:06:36,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:06:36,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:36,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:36,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:36,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:36,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:06:36,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:06:36,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:39,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:39,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:39,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:39,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:06:39,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:06:39,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:44,611 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:06:44,633 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:06:44,708 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.149 +2025-10-01 15:06:44,709 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:06:44,709 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:06:45,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:45,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:45,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:45,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:06:45,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:06:45,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:45,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:45,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:45,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:45,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:06:45,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:06:45,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:50,486 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:06:50,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:06:50,581 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.281 +2025-10-01 15:06:50,581 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:06:50,581 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:06:51,368 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:06:51,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:06:51,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:06:51,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 15:06:51,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 15:06:51,660 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:06:52,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:52,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:52,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:52,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:06:52,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:06:52,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:58,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:58,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:58,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:06:58,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:06:58,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:06:58,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:06:59,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:06:59,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:06:59,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:00,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 15:07:00,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 15:07:00,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:01,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:01,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:01,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:01,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:07:01,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:07:01,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:02,341 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:07:02,372 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:07:02,447 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.319 +2025-10-01 15:07:02,448 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:07:02,448 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:07:02,731 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:07:02,771 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:07:02,853 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.915 +2025-10-01 15:07:02,853 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:07:02,854 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:07:06,507 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:07:06,538 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(806, 751, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:07:06,613 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.658 +2025-10-01 15:07:06,614 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:07:06,614 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:07:09,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:07:09,939 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:07:10,018 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.956 +2025-10-01 15:07:10,019 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:07:10,019 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:07:10,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:10,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:10,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:10,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:07:10,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:07:10,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:11,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:11,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:12,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:12,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:07:12,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:07:12,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:20,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:20,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:20,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:20,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:07:20,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:07:20,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:21,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:21,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:21,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:21,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:07:21,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:07:21,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:21,818 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:07:21,843 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:07:21,921 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.707 +2025-10-01 15:07:21,921 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:07:21,922 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:07:24,544 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:07:24,566 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:07:24,642 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.709 +2025-10-01 15:07:24,642 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:07:24,642 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:07:25,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:25,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:25,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:25,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:07:25,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:07:25,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:26,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:26,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:26,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:26,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:07:26,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:07:26,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:28,181 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:07:28,208 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:07:28,295 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.954 +2025-10-01 15:07:28,295 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 15:07:28,295 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 15:07:28,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:28,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:28,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:28,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:07:28,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:07:28,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:29,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:29,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:29,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:29,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:07:29,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:07:29,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:30,908 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:07:30,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:07:30,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:07:31,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 15:07:31,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 15:07:31,210 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:07:31,925 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:07:31,959 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:07:32,034 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.723 +2025-10-01 15:07:32,034 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:07:32,034 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:07:36,088 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:07:36,104 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:07:36,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.464 +2025-10-01 15:07:36,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:07:36,180 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:07:36,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:36,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:36,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:36,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:07:36,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:07:36,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:36,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:36,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:36,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:36,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:07:36,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:07:36,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:39,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:39,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:39,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:40,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:07:40,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:07:40,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:42,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:42,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:42,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:42,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:07:42,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:07:42,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:43,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:43,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:43,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:43,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:07:43,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:07:43,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:45,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:45,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:45,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:45,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:07:45,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:07:45,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:48,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:48,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:48,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:48,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:07:48,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:07:48,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:49,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:49,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:49,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:49,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:07:49,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:07:49,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:54,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:54,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:54,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:54,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:07:54,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:07:54,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:54,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:54,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:54,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:55,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:07:55,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:07:55,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:55,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:55,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:55,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:55,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:07:55,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:07:55,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:56,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:56,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:56,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:56,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 15:07:57,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 15:07:57,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:07:59,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:07:59,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:07:59,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:07:59,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:07:59,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:07:59,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:01,764 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:08:01,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:08:01,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:08:02,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-01 15:08:02,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.131s/image) +2025-10-01 15:08:02,027 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:08:03,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:03,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:03,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:04,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:08:04,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:08:04,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:04,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:04,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:04,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:04,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:08:04,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:08:04,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:06,469 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:08:06,491 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(748, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:08:06,576 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.924 +2025-10-01 15:08:06,576 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 15:08:06,576 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 15:08:07,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:07,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:07,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:07,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:08:07,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:08:07,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:08,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:08,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:08,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:08,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:08:08,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:08:08,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:13,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:13,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:13,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:13,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:08:13,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:08:13,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:14,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:14,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:14,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:14,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:08:14,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:08:14,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:14,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:14,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:14,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:14,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:08:14,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:08:14,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:14,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:14,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:14,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:14,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:08:14,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:08:14,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:15,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:15,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:15,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:16,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:08:16,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:08:16,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:17,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:17,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:17,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:17,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:08:17,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:08:17,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:21,103 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:08:21,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:08:21,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:08:21,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 15:08:21,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 15:08:21,388 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:08:24,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:24,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:24,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:24,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:08:24,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:08:24,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:25,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:25,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:25,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:25,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:08:25,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:08:25,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:25,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:25,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:25,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:25,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:08:25,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:08:25,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:26,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:26,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:26,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:26,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:08:26,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:08:26,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:29,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:29,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:29,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:29,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:08:29,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:08:29,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:33,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:33,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:33,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:33,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:08:33,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:08:33,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:33,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:33,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:33,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:33,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:08:33,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:08:33,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:34,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:34,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:34,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:34,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:08:34,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:08:34,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:34,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:34,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:34,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:34,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:08:34,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:08:34,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:35,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:35,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:35,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:35,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:08:35,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:08:35,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:41,021 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 15:08:41,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 15:08:41,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 15:08:41,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.412s +2025-10-01 15:08:41,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.412s (avg: 0.137s/image) +2025-10-01 15:08:41,434 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 15:08:42,325 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:08:42,354 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:08:42,444 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.348 +2025-10-01 15:08:42,444 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:08:42,446 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:08:42,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:42,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:42,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:42,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:08:42,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:08:42,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:42,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:42,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:42,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:43,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:08:43,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:08:43,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:44,915 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:08:44,954 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:08:45,081 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.180 +2025-10-01 15:08:45,081 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.127s +2025-10-01 15:08:45,081 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.128s +2025-10-01 15:08:45,865 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:08:45,886 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:08:45,995 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.819 +2025-10-01 15:08:45,995 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.108s +2025-10-01 15:08:45,996 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-01 15:08:47,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:47,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:47,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:47,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:08:47,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:08:47,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:49,322 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:08:49,348 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:08:49,427 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.986 +2025-10-01 15:08:49,427 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:08:49,427 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:08:51,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:51,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:51,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:51,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:08:51,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:08:51,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:51,338 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:08:51,360 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:08:51,430 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.938 +2025-10-01 15:08:51,430 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 15:08:51,430 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 15:08:51,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:51,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:51,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:51,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:08:51,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:08:51,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:52,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:52,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:52,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:52,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:08:52,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:08:52,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:55,853 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:08:55,879 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:08:55,961 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.955 +2025-10-01 15:08:55,961 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:08:55,961 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:08:56,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:08:56,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:08:56,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:08:56,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:08:56,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:08:56,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:08:56,872 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:08:56,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:08:56,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:08:57,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 15:08:57,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 15:08:57,155 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:09:00,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:00,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:00,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:00,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:09:00,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:09:00,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:01,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:01,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:01,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:01,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:09:01,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:09:01,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:04,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:04,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:04,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:04,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:09:04,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:09:04,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:05,272 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:09:05,289 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(760, 760, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:09:05,363 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=186.411 +2025-10-01 15:09:05,363 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:09:05,363 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:09:05,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:05,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:05,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:05,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:09:05,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:09:05,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:09,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:09,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:09,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:09,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:09:09,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:09:09,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:13,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:13,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:13,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:13,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:09:13,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:09:13,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:20,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:20,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:20,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:20,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:09:20,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:09:20,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:20,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:20,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:20,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:20,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:09:20,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:09:20,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:25,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:25,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:25,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:25,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:09:25,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:09:25,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:26,185 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:09:26,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:09:26,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:09:26,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 15:09:26,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 15:09:26,475 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:09:28,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:28,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:28,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:28,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:09:28,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:09:28,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:28,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:28,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:28,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:28,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:09:28,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:09:28,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:29,353 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:09:29,386 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:09:29,483 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.375 +2025-10-01 15:09:29,483 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 15:09:29,484 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 15:09:30,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:30,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:30,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:30,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:09:30,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:09:30,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:32,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:32,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:32,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:32,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:09:32,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:09:32,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:33,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:33,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:33,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:33,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:09:33,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:09:33,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:34,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:34,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:34,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:34,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:09:34,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:09:34,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:35,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:35,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:35,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:35,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:09:35,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:09:35,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:36,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:36,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:36,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:36,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:09:36,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:09:36,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:37,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:37,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:37,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:37,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:09:37,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:09:37,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:39,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:39,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:39,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:39,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:09:39,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:09:39,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:40,085 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:09:40,108 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:09:40,184 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.739 +2025-10-01 15:09:40,184 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:09:40,185 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:09:40,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:40,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:40,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:40,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:09:40,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:09:40,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:40,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:40,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:41,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:41,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 15:09:41,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 15:09:41,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:41,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:41,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:41,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:41,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:09:41,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:09:41,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:43,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:43,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:43,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:43,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:09:43,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:09:43,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:43,987 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:09:44,016 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:09:44,156 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.045 +2025-10-01 15:09:44,156 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.139s +2025-10-01 15:09:44,157 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.140s +2025-10-01 15:09:45,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:45,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:45,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:45,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:09:45,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:09:45,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:46,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:46,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:46,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:46,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:09:46,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:09:46,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:47,313 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:09:47,343 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:09:47,421 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.234 +2025-10-01 15:09:47,422 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:09:47,422 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:09:48,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:48,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:48,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:48,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:09:48,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:09:48,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:48,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:48,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:48,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:48,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 15:09:48,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 15:09:48,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:48,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:48,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:48,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:48,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:09:48,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:09:48,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:49,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:49,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:49,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:49,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:09:49,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:09:49,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:52,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:52,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:52,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:53,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:09:53,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:09:53,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:53,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:53,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:53,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:53,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:09:53,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:09:53,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:53,640 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:09:53,658 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(739, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:09:53,737 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.962 +2025-10-01 15:09:53,737 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:09:53,737 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:09:53,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:53,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:53,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:54,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:09:54,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:09:54,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:54,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:54,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:54,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:54,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:09:54,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:09:54,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:55,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:55,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:55,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:55,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:09:55,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:09:55,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:09:57,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:09:57,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:09:57,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:09:58,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:09:58,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:09:58,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:01,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:01,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:01,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:01,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:10:01,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:10:01,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:02,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:02,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:02,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:02,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:10:02,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:10:02,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:03,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:03,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:03,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:03,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:10:03,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:10:03,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:04,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:04,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:04,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:04,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:10:04,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:10:04,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:04,931 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:10:04,968 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:10:05,053 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.223 +2025-10-01 15:10:05,053 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 15:10:05,053 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 15:10:07,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:07,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:07,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:07,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:10:07,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:10:07,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:09,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:09,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:09,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:09,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:10:09,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:10:09,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:10,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:10,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:10,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:10,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:10:10,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:10:10,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:14,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:14,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:14,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:14,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:10:14,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:10:14,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:15,258 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:10:15,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:10:15,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:10:15,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 15:10:15,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 15:10:15,549 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:10:15,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:15,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:15,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:15,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:10:15,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:10:15,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:20,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:20,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:20,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:20,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:10:20,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:10:20,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:20,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:20,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:20,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:20,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:10:20,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:10:20,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:21,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:21,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:21,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:21,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 15:10:21,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 15:10:21,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:21,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:21,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:21,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:22,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 15:10:22,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 15:10:22,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:22,867 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:10:22,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:10:22,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:10:23,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s +2025-10-01 15:10:23,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.157s/image) +2025-10-01 15:10:23,182 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:10:23,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:23,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:23,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:23,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:10:23,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:10:23,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:23,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:10:23,886 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:10:23,964 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.734 +2025-10-01 15:10:23,964 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:10:23,964 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:10:24,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:24,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:24,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:24,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:10:24,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:10:24,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:24,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:24,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:24,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:25,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:10:25,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:10:25,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:25,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:25,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:25,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:25,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:10:25,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:10:25,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:27,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:27,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:27,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:27,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:10:27,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:10:27,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:29,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:29,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:29,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:29,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:10:29,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:10:29,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:32,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:32,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:32,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:32,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 15:10:32,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 15:10:32,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:32,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:32,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:32,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:32,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:10:32,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:10:32,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:33,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:33,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:33,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:33,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:10:33,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:10:33,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:34,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:34,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:34,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:34,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:10:34,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:10:34,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:37,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:37,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:37,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:37,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:10:37,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:10:37,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:38,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:38,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:38,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:38,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:10:38,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:10:38,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:46,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:46,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:46,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:46,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:10:46,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:10:46,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:47,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:47,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:47,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:47,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:10:47,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:10:47,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:48,418 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:10:48,445 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:10:48,539 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.720 +2025-10-01 15:10:48,539 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 15:10:48,540 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 15:10:48,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:48,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:48,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:48,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:10:48,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:10:48,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:51,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:51,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:51,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:51,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:10:51,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:10:51,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:52,877 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:10:52,920 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:10:53,032 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.851 +2025-10-01 15:10:53,032 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.111s +2025-10-01 15:10:53,033 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s +2025-10-01 15:10:53,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:53,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:53,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:53,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 15:10:53,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 15:10:53,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:55,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:55,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:55,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:55,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:10:55,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:10:55,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:56,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:56,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:56,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:56,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 15:10:56,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 15:10:56,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:56,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:56,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:56,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:56,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 15:10:56,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 15:10:56,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:56,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:56,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:56,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:56,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:10:56,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:10:56,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:56,906 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:10:56,929 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:10:57,026 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.251 +2025-10-01 15:10:57,027 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 15:10:57,028 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 15:10:57,053 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:10:57,071 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:10:57,164 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.326 +2025-10-01 15:10:57,165 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 15:10:57,165 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 15:10:57,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:57,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:57,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:57,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:10:57,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:10:57,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:58,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:58,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:10:58,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:10:58,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:10:58,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:10:58,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:10:59,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:10:59,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:00,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:00,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:11:00,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:11:00,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:00,436 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:11:00,450 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:11:00,523 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.670 +2025-10-01 15:11:00,523 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:11:00,523 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:11:03,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:03,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:03,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:03,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:11:03,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:11:03,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:03,480 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:11:03,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:11:03,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:11:03,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 15:11:03,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 15:11:03,773 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:11:04,164 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:11:04,184 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:11:04,275 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.084 +2025-10-01 15:11:04,275 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:11:04,275 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:11:04,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:04,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:04,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:04,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:11:04,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:11:04,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:05,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:05,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:05,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:05,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:11:05,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:11:05,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:06,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:06,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:06,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:06,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:11:06,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:11:06,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:06,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:06,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:07,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:07,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:11:07,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:11:07,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:07,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:07,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:07,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:07,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:11:07,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:11:07,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:08,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:08,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:08,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:08,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:11:08,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:11:08,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:10,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:10,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:10,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:10,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 15:11:10,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 15:11:10,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:10,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:10,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:10,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:10,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:11:10,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:11:10,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:10,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:10,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:10,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:11,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:11:11,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:11:11,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:12,107 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:11:12,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:11:12,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:11:12,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 15:11:12,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +2025-10-01 15:11:12,415 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:11:15,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:15,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:15,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:15,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:11:15,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:11:15,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:16,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:16,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:16,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:16,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:11:16,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:11:16,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:16,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:16,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:16,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:16,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:11:16,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:11:16,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:18,091 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:11:18,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:11:18,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:11:18,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 15:11:18,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 15:11:18,377 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:11:20,555 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:11:20,580 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:11:20,674 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.946 +2025-10-01 15:11:20,674 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 15:11:20,675 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 15:11:22,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:22,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:22,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:22,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:11:22,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:11:22,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:22,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:22,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:22,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:22,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 15:11:22,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 15:11:22,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:23,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:23,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:23,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:23,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:11:23,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:11:23,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:28,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:28,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:28,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:28,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:11:28,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:11:28,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:28,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:28,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:28,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:28,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:11:28,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:11:28,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:29,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:29,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:29,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:29,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:11:29,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:11:29,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:33,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:33,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:33,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:34,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:11:34,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:11:34,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:34,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:34,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:34,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:34,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:11:34,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:11:34,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:35,219 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:11:35,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:11:35,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:11:35,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 15:11:35,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 15:11:35,513 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:11:35,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:35,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:35,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:35,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:11:35,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:11:35,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:38,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:38,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:38,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:38,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:11:38,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:11:38,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:38,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:38,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:39,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:39,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:11:39,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:11:39,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:39,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:39,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:39,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:39,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:11:39,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:11:39,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:42,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:42,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:42,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:42,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:11:42,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:11:42,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:43,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:43,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:43,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:43,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:11:43,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:11:43,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:44,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:44,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:44,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:44,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:11:44,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:11:44,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:46,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:46,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:46,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:46,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:11:46,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:11:46,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:47,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:47,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:47,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:47,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:11:47,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:11:47,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:48,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:48,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:48,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:48,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:11:48,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:11:48,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:48,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:48,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:48,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:49,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:11:49,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:11:49,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:49,744 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:11:49,771 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:11:49,868 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.482 +2025-10-01 15:11:49,869 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 15:11:49,871 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 15:11:50,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:50,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:50,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:50,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:11:50,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:11:50,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:51,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:51,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:51,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:51,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:11:51,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:11:51,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:53,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:53,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:53,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:53,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:11:53,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:11:53,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:54,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:54,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:54,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:54,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:11:54,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:11:54,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:55,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:55,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:55,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:55,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:11:55,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:11:55,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:56,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:56,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:56,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:56,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:11:56,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:11:56,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:58,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:58,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:58,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:58,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:11:58,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:11:58,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:58,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:58,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:58,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:59,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:11:59,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:11:59,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:59,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:59,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:59,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:11:59,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:11:59,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:11:59,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:11:59,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:11:59,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:11:59,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:00,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:12:00,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:12:00,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:01,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:01,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:01,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:01,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 15:12:01,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 15:12:01,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:02,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:02,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:03,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:03,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:12:03,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:12:03,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:03,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:03,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:03,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:03,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:12:03,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:12:03,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:05,299 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:12:05,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:12:05,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:12:05,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 15:12:05,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-01 15:12:05,585 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:12:06,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:06,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:06,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:07,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 15:12:07,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 15:12:07,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:09,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:09,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:09,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:09,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:12:09,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:12:09,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:09,841 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:12:09,863 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:12:09,965 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.268 +2025-10-01 15:12:09,965 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 15:12:09,965 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 15:12:09,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:09,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:10,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:10,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 15:12:10,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 15:12:10,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:10,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:10,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:10,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:10,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:12:10,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:12:10,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:12,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:12,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:12,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:12,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:12:12,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:12:12,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:13,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:13,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:13,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:14,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:12:14,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:12:14,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:14,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:14,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:14,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:14,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:12:14,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:12:14,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:15,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:15,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:15,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:15,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:12:15,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:12:15,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:16,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:16,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:16,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:16,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:12:16,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:12:16,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:18,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:18,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:18,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:18,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:12:18,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:12:18,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:20,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:20,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:20,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:20,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:12:20,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:12:20,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:22,669 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 15:12:22,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 15:12:22,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 15:12:30,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 7.913s +2025-10-01 15:12:30,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 7.913s (avg: 2.638s/image) +2025-10-01 15:12:30,584 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 15:12:31,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:31,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:31,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:31,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:12:31,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:12:31,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:34,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:34,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:34,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:34,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:12:34,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:12:34,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:35,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:35,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:35,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:35,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:12:35,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:12:35,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:39,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:39,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:39,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:40,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:12:40,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:12:40,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:40,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:40,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:40,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:40,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:12:40,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:12:40,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:40,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:40,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:40,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:40,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:12:40,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:12:40,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:41,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:41,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:41,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:41,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:12:41,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:12:41,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:41,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:41,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:41,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:41,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:12:41,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:12:41,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:46,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:46,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:46,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:46,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 15:12:46,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 15:12:46,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:46,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:46,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:46,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:46,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:12:46,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:12:46,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:47,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:47,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:47,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:47,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:12:47,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:12:47,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:49,820 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:12:49,854 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:12:49,950 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.898 +2025-10-01 15:12:49,950 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 15:12:49,950 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 15:12:52,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:52,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:52,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:52,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:12:52,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:12:52,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:53,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:53,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:53,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:53,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:12:53,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:12:53,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:55,427 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:12:55,458 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:12:55,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.810 +2025-10-01 15:12:55,547 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:12:55,548 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:12:56,319 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:12:56,340 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:12:56,447 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.612 +2025-10-01 15:12:56,447 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +2025-10-01 15:12:56,447 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-01 15:12:58,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:58,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:58,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:59,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:12:59,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:12:59,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:12:59,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:12:59,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:12:59,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:12:59,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:12:59,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:12:59,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:02,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:02,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:02,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:02,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:13:02,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:13:02,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:04,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:04,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:04,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:04,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:13:04,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:13:04,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:06,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:06,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:06,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:06,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:13:06,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:13:06,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:07,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:07,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:07,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:07,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 15:13:07,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 15:13:07,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:10,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:10,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:10,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:10,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:13:10,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:13:10,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:11,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:11,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:11,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:11,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:13:11,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:13:11,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:12,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:12,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:12,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:12,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:13:12,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:13:12,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:14,628 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:13:14,657 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:13:14,751 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.002 +2025-10-01 15:13:14,751 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 15:13:14,752 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 15:13:15,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:15,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:15,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:16,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:13:16,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:13:16,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:16,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:16,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:16,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:16,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:13:16,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:13:16,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:17,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:17,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:17,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:17,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:13:17,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:13:17,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:21,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:21,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:22,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:22,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:13:22,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:13:22,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:24,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:24,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:24,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:24,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:13:24,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:13:24,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:25,225 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:13:25,242 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:13:25,333 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=234.109 +2025-10-01 15:13:25,333 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:13:25,333 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 15:13:27,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:27,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:27,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:27,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:13:27,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:13:27,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:28,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:28,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:28,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:28,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:13:28,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:13:28,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:29,778 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:13:29,811 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:13:29,890 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=198.721 +2025-10-01 15:13:29,891 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:13:29,891 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:13:31,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:31,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:31,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:31,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:13:31,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:13:31,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:33,438 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:13:33,464 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:13:33,548 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.310 +2025-10-01 15:13:33,549 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:13:33,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 15:13:35,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:35,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:35,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:35,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:13:35,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:13:35,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:40,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:40,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:40,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:40,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:13:40,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:13:40,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:45,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:45,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:45,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:45,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:13:45,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:13:45,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:49,399 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:13:49,429 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:13:49,511 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.415 +2025-10-01 15:13:49,511 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:13:49,511 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:13:50,718 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:13:50,739 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:13:50,818 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.127 +2025-10-01 15:13:50,819 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:13:50,819 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:13:53,161 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:13:53,186 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:13:53,268 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.270 +2025-10-01 15:13:53,268 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:13:53,268 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:13:53,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:13:53,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:13:53,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:13:54,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:13:54,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:13:54,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:13:56,844 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:13:56,863 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:13:56,943 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.852 +2025-10-01 15:13:56,943 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:13:56,943 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:14:01,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:01,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:01,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:01,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:14:01,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:14:01,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:01,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:01,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:01,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:01,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:14:01,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:14:01,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:02,347 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:14:02,378 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:14:02,469 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.263 +2025-10-01 15:14:02,470 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:14:02,471 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 15:14:06,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:06,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:06,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:06,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:14:06,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:14:06,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:06,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:06,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:06,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:06,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:14:06,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:14:06,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:08,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:08,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:08,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:08,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:14:08,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:14:08,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:11,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:11,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:11,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:11,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:14:11,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:14:11,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:11,873 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:14:11,896 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:14:12,007 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.938 +2025-10-01 15:14:12,008 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.111s +2025-10-01 15:14:12,008 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-01 15:14:14,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:14,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:14,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:14,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:14:14,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:14:14,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:15,097 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:14:15,121 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:14:15,205 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.077 +2025-10-01 15:14:15,206 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:14:15,206 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 15:14:15,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:15,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:15,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:16,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:14:16,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:14:16,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:16,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:16,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:16,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:16,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:14:16,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:14:16,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:17,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:17,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:17,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:17,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:14:17,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:14:17,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:18,356 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:14:18,381 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:14:18,468 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.063 +2025-10-01 15:14:18,468 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 15:14:18,468 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 15:14:23,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:23,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:23,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:23,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:14:23,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:14:23,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:24,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:24,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:24,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:24,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:14:24,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:14:24,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:27,383 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:14:27,412 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:14:27,503 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=189.398 +2025-10-01 15:14:27,504 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 15:14:27,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 15:14:27,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:27,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:27,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:28,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 15:14:28,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 15:14:28,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:29,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:29,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:29,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:29,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:14:29,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:14:29,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:31,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:31,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:31,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:31,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:14:31,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:14:31,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:31,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:31,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:31,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:31,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:14:31,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:14:31,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:31,960 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:14:31,982 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:14:32,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.457 +2025-10-01 15:14:32,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 15:14:32,088 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 15:14:32,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:32,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:32,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:32,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:14:32,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:14:32,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:33,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:33,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:33,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:33,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:14:33,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:14:33,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:34,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:34,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:34,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:34,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:14:34,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:14:34,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:36,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:36,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:36,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:36,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:14:36,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:14:36,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:37,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:37,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:37,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:37,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:14:37,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:14:37,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:39,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:39,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:39,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:39,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:14:39,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:14:39,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:40,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:40,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:40,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:40,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:14:40,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:14:40,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:41,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:41,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:41,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:41,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:14:41,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:14:41,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:44,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:44,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:44,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:44,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:14:44,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:14:44,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:50,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:50,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:50,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:50,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:14:50,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:14:50,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:52,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:52,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:52,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:52,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:14:52,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:14:52,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:52,891 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:14:52,923 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(640, 640, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:14:53,020 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.372 +2025-10-01 15:14:53,020 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 15:14:53,020 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:14:55,113 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:14:55,133 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:14:55,223 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.784 +2025-10-01 15:14:55,223 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:14:55,223 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:14:55,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:55,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:55,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:56,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:14:56,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:14:56,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:56,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:56,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:57,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:57,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:14:57,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:14:57,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:14:58,312 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:14:58,346 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:14:58,428 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.754 +2025-10-01 15:14:58,428 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:14:58,428 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:14:58,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:14:58,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:14:58,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:14:58,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:14:58,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:14:58,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:01,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:01,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:01,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:01,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:15:01,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:15:01,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:01,453 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:15:01,472 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:15:01,550 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.235 +2025-10-01 15:15:01,550 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:15:01,551 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:15:03,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:03,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:03,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:03,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:15:03,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:15:03,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:06,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:06,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:06,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:06,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:15:06,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:15:06,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:07,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:07,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:07,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:07,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:15:07,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:15:07,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:10,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:10,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:10,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:10,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:15:10,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:15:10,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:11,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:11,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:11,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:11,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:15:11,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:15:11,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:13,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:13,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:13,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:13,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 15:15:13,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 15:15:13,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:13,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:13,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:13,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:13,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:15:13,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:15:13,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:14,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:14,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:14,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:14,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:15:14,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:15:14,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:18,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:18,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:18,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:19,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:15:19,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:15:19,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:19,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:19,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:19,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:19,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 15:15:19,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 15:15:19,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:23,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:23,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:23,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:23,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:15:23,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:15:23,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:23,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:23,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:23,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:23,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:15:23,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:15:23,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:24,418 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:15:24,444 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:15:24,538 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.583 +2025-10-01 15:15:24,538 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 15:15:24,540 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 15:15:32,911 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:15:32,942 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:15:33,067 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.094 +2025-10-01 15:15:33,068 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.125s +2025-10-01 15:15:33,069 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.127s +2025-10-01 15:15:33,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:33,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:33,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:33,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:15:33,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:15:33,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:39,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:39,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:39,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:39,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:15:39,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:15:39,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:47,982 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:15:48,020 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:15:48,146 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.958 +2025-10-01 15:15:48,146 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.124s +2025-10-01 15:15:48,148 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.128s +2025-10-01 15:15:52,619 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:15:52,657 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:15:52,782 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.385 +2025-10-01 15:15:52,782 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.124s +2025-10-01 15:15:52,784 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.127s +2025-10-01 15:15:52,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:15:52,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:15:52,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:15:53,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:15:53,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:15:53,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:15:56,346 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:15:56,383 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:15:56,503 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.385 +2025-10-01 15:15:56,503 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.119s +2025-10-01 15:15:56,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.122s +2025-10-01 15:16:00,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:00,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:00,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:00,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:16:00,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:16:00,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:04,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:04,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:04,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:04,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:16:04,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:16:04,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:06,272 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:16:06,297 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:16:06,395 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=219.630 +2025-10-01 15:16:06,395 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 15:16:06,396 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 15:16:07,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:07,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:07,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:07,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:16:07,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:16:07,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:08,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:08,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:08,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:08,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:16:08,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:16:08,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:11,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:11,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:11,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:11,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:16:11,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:16:11,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:11,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:11,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:11,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:12,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:16:12,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:16:12,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:12,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:12,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:12,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:12,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:16:12,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:16:12,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:14,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:14,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:14,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:14,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:16:14,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:16:14,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:16,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:16,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:16,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:16,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:16:16,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:16:16,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:17,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:17,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:17,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:17,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:16:17,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:16:17,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:18,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:18,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:18,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:18,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:16:18,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:16:18,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:19,863 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:16:19,891 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:16:19,969 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.833 +2025-10-01 15:16:19,970 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:16:19,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:16:20,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:20,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:20,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:21,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:16:21,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:16:21,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:23,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:16:23,118 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:16:23,228 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.525 +2025-10-01 15:16:23,228 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.108s +2025-10-01 15:16:23,230 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.111s +2025-10-01 15:16:23,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:23,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:23,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:23,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:16:23,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:16:23,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:23,893 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:16:23,912 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:16:24,012 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.364 +2025-10-01 15:16:24,012 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:16:24,012 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 15:16:25,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:25,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:25,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:25,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:16:25,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:16:25,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:27,867 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:16:27,908 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:16:28,019 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.959 +2025-10-01 15:16:28,019 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-01 15:16:28,021 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s +2025-10-01 15:16:28,456 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:16:28,478 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:16:28,591 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.284 +2025-10-01 15:16:28,591 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.112s +2025-10-01 15:16:28,591 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s +2025-10-01 15:16:28,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:28,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:28,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:28,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:16:28,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:16:28,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:29,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:29,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:29,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:29,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:16:29,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:16:29,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:33,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:33,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:33,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:33,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:16:33,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:16:33,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:33,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:33,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:33,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:33,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:16:33,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:16:33,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:34,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:34,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:34,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:34,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:16:34,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:16:34,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:36,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:36,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:36,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:36,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:16:36,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:16:36,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:39,330 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:16:39,354 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:16:39,433 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=208.125 +2025-10-01 15:16:39,433 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:16:39,433 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:16:40,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:40,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:40,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:40,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:16:40,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:16:40,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:41,876 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:16:41,913 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:16:41,997 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.922 +2025-10-01 15:16:41,997 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:16:41,997 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:16:43,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:43,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:43,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:43,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:16:43,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:16:43,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:44,440 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:16:44,468 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:16:44,543 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=204.757 +2025-10-01 15:16:44,544 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:16:44,544 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:16:50,295 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:16:50,328 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:16:50,408 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.609 +2025-10-01 15:16:50,409 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:16:50,409 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 15:16:50,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:16:50,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:16:50,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:16:50,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:16:50,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:16:50,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:16:59,213 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:16:59,245 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:16:59,323 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.415 +2025-10-01 15:16:59,324 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:16:59,324 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:17:07,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:07,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:07,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:07,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:17:07,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:17:07,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:11,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:11,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:11,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:11,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:17:11,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:17:11,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:11,413 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:11,436 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:11,516 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.237 +2025-10-01 15:17:11,517 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:17:11,517 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 15:17:13,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:13,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:13,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:13,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:17:13,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:17:13,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:13,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:13,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:13,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:13,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:17:13,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:17:13,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:14,020 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:14,045 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(803, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:14,126 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.317 +2025-10-01 15:17:14,127 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:17:14,127 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:17:14,967 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:14,990 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:15,067 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.674 +2025-10-01 15:17:15,067 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:17:15,068 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:17:16,496 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:16,531 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:16,621 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.659 +2025-10-01 15:17:16,621 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:17:16,622 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:17:18,064 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:18,087 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:18,188 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.425 +2025-10-01 15:17:18,188 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 15:17:18,188 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 15:17:18,952 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:18,990 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:19,075 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.217 +2025-10-01 15:17:19,076 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 15:17:19,076 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 15:17:19,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:19,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:19,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:20,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:17:20,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:17:20,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:20,485 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:20,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:20,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.139 +2025-10-01 15:17:20,603 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:17:20,605 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 15:17:21,567 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:21,593 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(803, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:21,703 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.457 +2025-10-01 15:17:21,703 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.108s +2025-10-01 15:17:21,703 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-01 15:17:23,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:23,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:23,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:23,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:17:23,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:17:23,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:23,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:23,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:23,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:23,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:17:23,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:17:23,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:24,190 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:24,216 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:24,307 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.195 +2025-10-01 15:17:24,307 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:17:24,308 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:17:27,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:27,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:27,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:27,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +2025-10-01 15:17:27,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +2025-10-01 15:17:27,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:28,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:28,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:28,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:28,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:17:28,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:17:28,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:29,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:29,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:29,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:29,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:17:29,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:17:29,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:31,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:31,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:31,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:31,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:17:31,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:17:31,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:32,248 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:32,285 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:32,372 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.379 +2025-10-01 15:17:32,372 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 15:17:32,372 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 15:17:35,695 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:35,719 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:35,798 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.063 +2025-10-01 15:17:35,798 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:17:35,798 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:17:36,237 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:36,259 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:36,337 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.529 +2025-10-01 15:17:36,338 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:17:36,338 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:17:37,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:37,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:37,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:37,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:17:37,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:17:37,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:38,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:38,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:38,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:38,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:17:38,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:17:38,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:39,748 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:39,772 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:39,851 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.249 +2025-10-01 15:17:39,851 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:17:39,851 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:17:40,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:40,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:40,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:40,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:17:40,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:17:40,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:41,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:41,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:41,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:41,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:17:41,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:17:41,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:43,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:43,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:43,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:43,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:17:43,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:17:43,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:43,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:43,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:44,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:44,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:17:44,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:17:44,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:47,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:47,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:47,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:47,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:17:47,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:17:47,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:47,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:47,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:47,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:47,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:17:47,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:17:47,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:47,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:47,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:47,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:47,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:17:47,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:17:47,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:48,561 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:17:48,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:17:48,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:17:48,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-01 15:17:48,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.155s/image) +2025-10-01 15:17:48,871 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:17:52,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:52,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:52,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:52,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:17:52,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:17:52,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:53,177 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:17:53,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:17:53,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:17:53,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 15:17:53,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 15:17:53,476 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:17:54,526 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:17:54,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:17:54,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:17:54,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 15:17:54,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 15:17:54,805 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:17:55,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:55,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:55,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:55,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 15:17:55,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 15:17:55,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:56,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:56,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:56,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:56,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:17:56,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:17:56,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:57,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:57,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:57,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:57,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:17:57,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:17:57,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:58,563 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:17:58,587 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:17:58,677 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.320 +2025-10-01 15:17:58,678 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:17:58,678 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:17:58,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:58,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:58,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:58,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:17:58,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:17:58,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:17:59,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:17:59,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:17:59,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:17:59,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:17:59,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:17:59,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:03,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:03,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:03,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:03,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:18:03,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:18:03,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:04,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:04,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:04,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:04,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:18:04,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:18:04,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:04,372 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:18:04,395 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:18:04,475 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.692 +2025-10-01 15:18:04,475 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:18:04,477 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:18:04,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:04,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:04,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:04,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:18:04,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:18:04,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:06,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:06,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:06,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:06,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:18:06,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:18:06,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:09,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:09,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:09,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:09,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:18:09,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:18:09,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:11,166 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 15:18:11,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 15:18:11,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 15:18:11,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.435s +2025-10-01 15:18:11,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.435s (avg: 0.145s/image) +2025-10-01 15:18:11,602 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 15:18:11,686 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:18:11,705 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:18:11,779 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=14.171 +2025-10-01 15:18:11,779 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:18:11,779 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:18:13,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:13,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:13,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:13,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:18:13,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:18:13,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:15,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:15,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:15,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:15,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:18:15,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:18:15,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:17,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:17,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:17,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:17,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:18:17,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:18:17,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:18,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:18,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:18,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:18,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:18:18,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:18:18,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:18,493 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:18:18,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:18:18,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:18:18,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 15:18:18,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-01 15:18:18,765 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:18:21,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:21,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:21,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:21,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:18:21,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:18:21,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:24,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:24,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:24,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:25,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:18:25,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:18:25,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:25,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:25,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:25,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:25,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:18:25,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:18:25,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:25,656 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:18:25,679 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:18:25,780 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.339 +2025-10-01 15:18:25,780 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 15:18:25,782 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 15:18:26,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:26,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:26,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:26,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:18:26,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:18:26,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:27,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:27,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:27,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:27,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:18:27,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:18:27,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:29,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:29,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:29,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:30,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:18:30,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:18:30,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:30,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:30,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:30,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:30,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:18:30,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:18:30,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:31,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:31,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:31,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:31,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:18:31,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:18:31,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:32,464 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:18:32,490 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:18:32,593 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.655 +2025-10-01 15:18:32,593 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 15:18:32,595 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 15:18:32,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:32,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:32,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:33,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:18:33,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:18:33,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:33,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:33,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:33,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:33,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:18:33,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:18:33,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:35,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:35,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:35,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:35,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:18:35,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:18:35,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:38,970 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:18:38,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:18:39,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:18:39,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 15:18:39,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 15:18:39,254 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:18:39,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:39,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:39,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:39,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:18:39,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:18:39,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:39,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:39,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:39,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:39,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:18:39,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:18:39,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:40,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:40,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:40,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:40,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:18:40,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:18:40,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:40,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:40,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:40,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:40,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:18:40,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:18:40,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:46,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:46,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:46,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:46,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:18:46,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:18:46,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:46,611 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:18:46,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:18:46,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:18:46,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 15:18:46,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 15:18:46,912 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:18:47,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:47,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:47,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:47,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:18:47,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:18:47,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:49,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:49,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:49,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:49,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 15:18:49,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 15:18:49,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:51,735 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:18:51,773 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:18:51,877 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.366 +2025-10-01 15:18:51,878 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 15:18:51,878 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 15:18:52,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:52,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:52,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:52,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 15:18:52,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 15:18:52,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:53,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:53,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:53,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:53,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:18:53,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:18:53,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:53,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:53,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:53,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:54,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:18:54,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:18:54,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:54,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:54,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:54,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:54,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:18:54,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:18:54,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:54,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:54,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:54,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:54,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:18:54,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:18:54,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:54,981 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:18:55,014 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:18:55,114 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=175.960 +2025-10-01 15:18:55,114 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:18:55,114 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 15:18:56,085 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:18:56,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:18:56,202 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.595 +2025-10-01 15:18:56,202 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:18:56,202 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 15:18:57,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:57,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:58,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:58,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 15:18:58,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 15:18:58,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:58,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:58,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:58,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:59,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:18:59,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:18:59,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:59,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:18:59,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:18:59,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:18:59,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:18:59,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:18:59,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:18:59,651 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:18:59,668 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:18:59,742 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.628 +2025-10-01 15:18:59,742 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:18:59,742 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:19:00,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:00,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:00,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:00,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:19:00,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:19:00,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:00,634 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:00,669 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 675, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:00,742 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.693 +2025-10-01 15:19:00,743 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:19:00,743 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:19:00,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:00,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:00,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:01,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 15:19:01,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 15:19:01,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:03,513 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:03,550 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:03,640 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=177.589 +2025-10-01 15:19:03,640 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:19:03,640 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 15:19:03,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:03,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:04,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:04,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:19:04,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:19:04,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:04,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:04,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:05,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:05,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:19:05,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:19:05,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:06,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:06,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:06,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:06,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:19:06,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:19:06,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:07,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:07,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:07,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:07,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:19:07,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:19:07,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:07,598 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:07,622 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 675, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:07,724 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.057 +2025-10-01 15:19:07,725 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 15:19:07,725 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 15:19:07,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:07,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:07,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:08,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:19:08,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:19:08,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:08,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:08,590 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:08,674 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=171.903 +2025-10-01 15:19:08,674 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:19:08,674 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:19:08,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:08,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:09,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:09,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:19:09,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:19:09,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:09,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:09,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:09,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:09,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:19:09,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:19:09,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:11,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:11,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:11,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:11,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:19:11,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:19:11,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:11,931 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:19:11,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:19:11,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:19:12,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 15:19:12,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-01 15:19:12,205 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:19:12,397 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:12,410 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:12,509 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.869 +2025-10-01 15:19:12,509 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 15:19:12,509 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 15:19:12,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:12,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:12,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:12,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 15:19:12,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 15:19:12,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:14,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:14,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:14,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:14,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:19:14,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:19:14,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:17,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:17,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:17,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:17,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:19:17,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:19:17,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:18,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:18,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:19,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:19,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:19:19,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:19:19,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:19,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:19,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:19,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:20,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:19:20,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:19:20,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:22,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:22,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:22,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:22,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:19:22,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:19:22,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:23,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:23,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:23,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:23,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:19:23,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:19:23,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:24,143 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:24,172 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:24,264 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.148 +2025-10-01 15:19:24,264 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 15:19:24,265 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 15:19:26,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:26,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:26,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:26,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:19:26,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:19:26,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:26,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:26,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:26,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:27,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:19:27,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:19:27,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:29,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:29,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:29,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:29,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 15:19:29,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 15:19:29,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:30,183 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:30,226 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:30,337 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.831 +2025-10-01 15:19:30,338 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 15:19:30,339 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s +2025-10-01 15:19:30,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:30,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:30,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:31,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:19:31,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:19:31,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:31,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:31,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:31,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:31,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:19:31,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:19:31,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:35,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:35,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:35,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:35,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:19:35,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:19:35,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:36,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:36,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:36,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:36,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:19:36,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:19:36,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:37,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:37,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:37,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:37,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:19:37,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:19:37,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:41,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:41,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:41,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:41,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:19:41,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:19:41,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:41,616 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:41,641 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:41,743 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.453 +2025-10-01 15:19:41,743 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 15:19:41,743 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 15:19:43,304 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:43,347 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:43,432 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.295 +2025-10-01 15:19:43,432 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 15:19:43,432 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 15:19:44,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:44,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:44,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:44,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:19:44,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:19:44,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:45,320 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:45,349 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:45,436 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.087 +2025-10-01 15:19:45,437 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 15:19:45,438 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:19:46,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:46,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:46,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:46,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:19:46,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:19:46,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:47,077 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:47,113 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:47,227 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.231 +2025-10-01 15:19:47,227 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.113s +2025-10-01 15:19:47,227 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.115s +2025-10-01 15:19:49,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:49,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:49,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:49,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:19:49,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:19:49,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:49,250 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:49,276 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:49,361 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.336 +2025-10-01 15:19:49,362 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 15:19:49,363 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 15:19:50,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:50,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:50,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:50,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:19:50,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:19:50,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:50,905 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:50,926 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:51,031 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.709 +2025-10-01 15:19:51,032 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s +2025-10-01 15:19:51,032 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 15:19:53,331 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:19:53,353 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:19:53,434 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.058 +2025-10-01 15:19:53,434 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:19:53,436 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:19:54,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:54,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:54,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:54,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:19:54,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:19:54,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:54,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:54,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:54,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:54,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:19:54,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:19:54,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:55,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:55,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:55,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:19:55,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:19:55,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:19:55,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:19:59,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:19:59,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:19:59,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:00,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:20:00,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:20:00,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:08,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:08,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:08,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:08,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:20:08,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:20:08,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:13,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:13,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:13,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:14,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 15:20:14,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 15:20:14,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:15,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:15,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:16,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:16,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:20:16,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:20:16,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:16,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:16,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:16,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:16,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:20:16,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:20:16,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:17,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:17,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:17,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:17,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:20:17,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:20:17,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:17,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:17,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:17,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:17,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:20:17,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:20:17,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:20,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:20,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:21,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:21,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:20:21,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:20:21,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:21,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:21,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:21,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:21,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:20:21,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:20:21,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:23,039 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:20:23,063 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:20:23,158 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.213 +2025-10-01 15:20:23,158 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 15:20:23,159 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 15:20:23,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:23,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:23,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:23,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:20:23,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:20:23,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:24,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:24,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:24,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:24,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:20:24,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:20:24,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:25,459 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:20:25,493 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:20:25,584 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.870 +2025-10-01 15:20:25,585 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:20:25,587 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 15:20:25,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:25,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:25,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:26,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:20:26,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:20:26,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:26,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:26,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:26,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:26,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:20:26,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:20:26,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:26,552 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:20:26,572 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:20:26,677 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.171 +2025-10-01 15:20:26,677 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 15:20:26,678 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 15:20:30,073 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:20:30,094 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:20:30,176 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.602 +2025-10-01 15:20:30,176 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:20:30,176 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:20:30,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:30,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:30,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:30,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:20:30,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:20:30,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:30,828 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:20:30,852 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:20:30,930 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.203 +2025-10-01 15:20:30,931 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:20:30,931 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:20:32,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:32,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:32,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:32,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:20:32,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:20:32,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:32,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:32,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:32,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:32,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:20:32,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:20:32,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:32,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:32,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:32,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:33,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:20:33,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:20:33,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:34,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:34,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:34,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:34,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:20:34,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:20:34,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:37,038 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:20:37,080 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:20:37,163 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.025 +2025-10-01 15:20:37,163 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:20:37,163 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:20:38,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:38,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:38,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:38,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:20:38,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:20:38,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:38,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:38,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:38,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:38,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:20:38,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:20:38,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:40,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:40,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:40,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:40,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:20:40,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:20:40,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:41,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:41,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:41,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:41,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:20:41,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:20:41,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:43,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:43,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:43,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:44,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:20:44,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:20:44,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:45,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:45,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:45,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:45,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:20:45,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:20:45,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:45,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:45,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:45,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:45,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:20:45,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:20:45,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:48,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:48,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:48,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:48,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:20:48,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:20:48,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:51,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:51,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:51,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:51,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s +2025-10-01 15:20:51,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image) +2025-10-01 15:20:51,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:53,421 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:20:53,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:20:53,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:20:53,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-01 15:20:53,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-01 15:20:53,693 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:20:54,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:54,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:54,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:54,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:20:54,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:20:54,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:54,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:54,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:54,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:54,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:20:54,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:20:54,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:55,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:55,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:55,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:56,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:20:56,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:20:56,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:57,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:57,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:57,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:58,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:20:58,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:20:58,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:20:58,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:20:58,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:20:58,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:20:58,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:20:58,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:20:58,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:01,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:01,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:01,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:01,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:21:01,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:21:01,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:03,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:03,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:03,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:03,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:21:03,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:21:03,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:03,555 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:21:03,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:21:03,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:21:03,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 15:21:03,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 15:21:03,831 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:21:03,878 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:03,893 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:03,983 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.753 +2025-10-01 15:21:03,983 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:21:03,983 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:21:04,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:04,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:04,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:04,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:21:04,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:21:04,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:04,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:04,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:04,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:04,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 15:21:04,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 15:21:04,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:06,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:06,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:06,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:06,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:21:06,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:21:06,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:07,640 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:07,666 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:07,741 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.068 +2025-10-01 15:21:07,742 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:21:07,742 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:21:09,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:09,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:09,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:09,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:21:09,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:21:09,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:09,896 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:09,929 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:10,018 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.202 +2025-10-01 15:21:10,018 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:21:10,020 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 15:21:10,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:10,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:10,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:10,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 15:21:10,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 15:21:10,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:11,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:11,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:11,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:11,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:21:11,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:21:11,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:11,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:11,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:11,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:11,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:21:11,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:21:11,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:11,949 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:11,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:12,075 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.015 +2025-10-01 15:21:12,075 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:21:12,075 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 15:21:12,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:12,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:12,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:12,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:21:12,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:21:12,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:14,048 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:14,093 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:14,177 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.780 +2025-10-01 15:21:14,178 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 15:21:14,179 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 15:21:14,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:14,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:14,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:14,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s +2025-10-01 15:21:14,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image) +2025-10-01 15:21:14,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:17,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:17,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:17,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:18,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:21:18,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:21:18,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:19,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:19,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:19,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:19,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:21:19,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:21:19,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:19,573 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:19,615 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:19,715 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.446 +2025-10-01 15:21:19,716 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:21:19,718 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 15:21:21,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:21,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:21,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:21,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:21:21,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:21:21,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:21,742 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:21:21,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:21:21,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:21:22,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 15:21:22,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-01 15:21:22,014 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:21:22,072 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:22,096 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(749, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:22,197 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.204 +2025-10-01 15:21:22,198 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 15:21:22,199 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 15:21:22,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:22,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:22,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:22,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:21:22,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:21:22,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:23,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:23,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:23,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:23,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 15:21:23,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 15:21:23,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:27,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:27,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:27,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:27,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:21:27,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:21:27,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:28,322 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:28,361 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:28,457 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.263 +2025-10-01 15:21:28,458 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 15:21:28,458 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:21:28,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:28,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:28,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:28,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:21:28,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:21:28,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:28,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:28,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:29,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:29,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:21:29,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:21:29,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:31,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:31,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:31,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:32,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:21:32,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:21:32,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:32,113 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:32,135 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:32,212 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.388 +2025-10-01 15:21:32,213 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:21:32,214 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:21:32,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:32,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:32,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:32,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:21:32,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:21:32,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:33,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:33,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:33,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:33,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:21:33,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:21:33,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:33,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:33,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:33,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:34,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:21:34,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:21:34,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:34,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:34,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:34,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:34,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:21:34,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:21:34,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:38,322 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:38,348 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:38,449 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.442 +2025-10-01 15:21:38,449 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 15:21:38,449 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 15:21:38,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:38,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:38,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:38,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:21:38,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:21:38,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:39,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:39,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:39,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:39,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:21:39,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:21:39,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:39,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:39,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:39,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:40,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:21:40,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:21:40,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:40,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:40,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:40,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:40,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:21:40,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:21:40,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:44,162 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:44,189 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:44,291 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.304 +2025-10-01 15:21:44,291 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 15:21:44,291 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 15:21:44,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:44,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:44,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:44,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:21:44,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:21:44,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:45,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:45,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:45,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:45,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:21:45,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:21:45,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:50,169 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:50,213 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:50,308 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=170.180 +2025-10-01 15:21:50,308 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 15:21:50,309 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 15:21:52,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:52,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:52,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:52,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 15:21:52,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 15:21:52,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:53,719 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:53,763 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:53,871 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.912 +2025-10-01 15:21:53,872 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.107s +2025-10-01 15:21:53,872 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-01 15:21:55,037 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:55,068 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:55,157 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.981 +2025-10-01 15:21:55,157 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:21:55,157 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:21:55,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:55,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:55,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:55,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:21:55,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:21:55,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:56,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:56,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:56,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:56,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:21:56,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:21:56,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:58,052 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:58,076 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:21:58,156 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.260 +2025-10-01 15:21:58,156 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:21:58,156 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:21:58,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:21:58,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:21:58,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:21:59,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:21:59,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:21:59,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:21:59,893 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:21:59,931 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:22:00,013 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.474 +2025-10-01 15:22:00,013 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:22:00,014 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:22:01,470 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:22:01,488 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:22:01,594 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.930 +2025-10-01 15:22:01,594 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s +2025-10-01 15:22:01,594 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 15:22:01,938 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:22:01,965 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:22:02,060 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.558 +2025-10-01 15:22:02,060 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 15:22:02,062 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:22:02,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:02,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:02,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:02,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 15:22:02,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 15:22:02,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:02,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:02,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:02,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:03,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 15:22:03,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 15:22:03,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:04,526 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:22:04,562 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:22:04,658 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.578 +2025-10-01 15:22:04,659 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 15:22:04,659 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:22:05,590 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:22:05,617 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1066, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:22:05,701 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.783 +2025-10-01 15:22:05,702 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 15:22:05,702 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 15:22:06,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:06,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:06,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:06,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:22:06,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:22:06,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:11,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:11,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:11,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:11,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:22:11,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:22:11,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:13,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:13,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:13,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:13,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:22:13,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:22:13,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:13,672 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:22:13,717 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:22:13,831 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.194 +2025-10-01 15:22:13,831 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.113s +2025-10-01 15:22:13,833 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.116s +2025-10-01 15:22:14,148 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:22:14,189 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:22:14,300 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.977 +2025-10-01 15:22:14,301 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 15:22:14,302 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s +2025-10-01 15:22:14,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:14,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:14,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:14,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:22:14,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:22:14,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:17,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:17,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:17,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:17,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:22:17,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:22:17,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:19,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:19,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:19,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:19,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:22:19,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:22:19,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:19,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:19,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:20,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:20,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:22:20,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:22:20,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:20,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:20,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:20,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:20,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:22:20,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:22:20,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:22,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:22,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:22,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:22,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 15:22:22,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 15:22:22,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:23,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:23,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:23,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:23,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:22:23,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:22:23,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:28,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:28,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:28,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:28,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:22:28,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:22:28,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:28,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:28,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:28,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:28,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 15:22:28,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 15:22:28,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:29,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:29,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:29,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:29,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:22:29,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:22:29,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:32,446 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:22:32,479 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:22:32,586 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.645 +2025-10-01 15:22:32,587 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.107s +2025-10-01 15:22:32,587 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-01 15:22:32,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:32,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:32,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:32,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:22:32,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:22:32,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:33,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:33,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:33,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:33,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 15:22:33,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 15:22:33,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:34,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:34,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:34,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:34,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:22:34,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:22:34,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:34,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:34,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:34,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:34,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:22:34,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:22:34,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:37,795 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:22:37,838 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:22:37,940 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.077 +2025-10-01 15:22:37,941 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 15:22:37,941 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 15:22:38,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:38,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:38,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:38,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:22:38,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:22:38,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:40,859 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:22:40,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:22:40,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:22:41,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 15:22:41,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 15:22:41,167 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:22:41,587 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:22:41,606 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:22:41,706 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.861 +2025-10-01 15:22:41,706 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:22:41,706 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 15:22:42,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:42,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:42,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:42,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:22:42,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:22:42,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:44,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:44,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:44,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:44,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:22:44,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:22:44,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:47,275 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:22:47,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:22:47,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:22:47,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s +2025-10-01 15:22:47,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.323s (avg: 0.162s/image) +2025-10-01 15:22:47,600 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:22:47,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:47,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:47,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:47,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:22:47,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:22:47,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:48,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:48,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:48,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:48,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:22:48,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:22:48,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:50,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:50,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:50,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:50,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:22:50,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:22:50,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:53,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:53,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:53,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:53,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:22:53,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:22:53,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:53,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:53,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:53,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:53,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 15:22:53,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 15:22:53,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:58,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:58,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:58,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:58,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:22:58,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:22:58,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:22:58,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:22:58,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:22:58,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:22:59,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 15:22:59,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 15:22:59,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:01,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:01,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:01,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:01,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:23:01,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:23:01,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:03,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:03,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:03,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:03,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 15:23:03,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 15:23:03,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:03,877 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:23:03,895 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:23:03,986 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.761 +2025-10-01 15:23:03,986 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:23:03,986 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 15:23:04,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:04,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:04,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:04,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:23:04,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:23:04,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:04,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:04,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:04,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:04,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:23:04,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:23:04,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:05,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:05,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:05,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:05,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 15:23:05,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 15:23:05,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:06,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:06,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:06,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:06,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:23:06,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:23:06,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:07,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:07,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:07,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:07,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:23:07,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:23:07,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:08,663 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:23:08,704 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:23:08,779 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.921 +2025-10-01 15:23:08,779 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:23:08,779 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:23:10,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:10,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:10,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:10,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 15:23:10,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 15:23:10,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:10,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:10,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:10,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:11,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 15:23:11,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 15:23:11,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:13,856 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:23:13,899 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:23:13,981 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.510 +2025-10-01 15:23:13,982 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:23:13,982 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:23:14,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:14,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:14,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:15,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 15:23:15,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 15:23:15,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:16,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:16,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:16,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:16,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:23:16,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:23:16,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:16,517 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:23:16,534 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:23:16,606 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.043 +2025-10-01 15:23:16,607 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:23:16,607 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:23:16,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:16,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:16,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:17,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:23:17,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:23:17,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:18,934 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:23:18,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:23:18,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:23:19,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 15:23:19,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 15:23:19,232 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:23:19,282 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:23:19,304 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:23:19,381 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.328 +2025-10-01 15:23:19,381 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:23:19,381 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:23:20,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:20,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:20,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:21,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:23:21,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:23:21,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:21,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:21,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:21,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:21,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:23:21,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:23:21,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:24,703 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:23:24,739 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:23:24,823 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.014 +2025-10-01 15:23:24,823 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:23:24,823 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:23:25,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:25,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:25,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:25,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:23:25,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:23:25,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:27,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:27,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:27,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:27,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:23:27,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:23:27,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:28,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:28,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:28,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:28,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 15:23:28,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 15:23:28,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:29,234 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:23:29,262 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:23:29,339 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.532 +2025-10-01 15:23:29,339 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:23:29,339 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:23:29,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:29,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:29,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:29,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:23:29,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:23:29,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:32,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:32,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:33,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:33,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 15:23:33,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 15:23:33,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:33,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:33,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:34,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:34,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 15:23:34,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 15:23:34,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:34,735 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:23:34,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:23:34,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:23:35,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 15:23:35,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 15:23:35,025 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:23:36,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:36,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:36,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:36,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:23:36,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:23:36,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:36,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:36,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:36,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:36,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:23:36,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:23:36,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:37,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:37,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:37,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:37,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:23:37,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:23:37,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:37,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:37,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:37,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:38,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:23:38,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:23:38,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:38,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:38,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:38,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:38,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:23:38,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:23:38,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:41,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:41,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:41,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:41,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:23:41,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:23:41,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:42,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:42,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:42,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:42,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:23:42,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:23:42,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:42,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:42,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:42,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:42,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:23:42,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:23:42,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:42,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:42,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:43,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:43,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:23:43,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:23:43,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:43,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:43,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:43,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:43,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:23:43,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:23:43,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:43,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:43,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:43,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:43,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:23:43,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:23:43,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:43,717 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:23:43,741 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:23:43,841 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.240 +2025-10-01 15:23:43,841 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:23:43,842 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 15:23:44,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:44,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:44,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:44,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:23:44,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:23:44,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:44,203 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:23:44,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:23:44,317 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.616 +2025-10-01 15:23:44,317 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 15:23:44,317 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:23:46,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:46,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:46,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:46,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:23:46,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:23:46,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:48,976 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:23:49,023 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:23:49,115 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.043 +2025-10-01 15:23:49,115 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 15:23:49,116 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 15:23:50,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:50,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:50,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:50,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 15:23:50,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 15:23:50,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:51,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:51,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:51,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:51,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:23:51,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:23:51,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:52,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:52,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:52,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:52,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:23:52,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:23:52,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:53,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:53,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:53,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:53,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:23:53,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:23:53,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:53,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:53,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:53,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:53,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:23:53,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:23:53,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:53,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:53,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:54,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:54,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:23:54,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:23:54,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:55,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:55,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:55,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:55,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:23:55,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:23:55,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:57,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:57,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:57,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:57,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:23:57,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:23:57,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:23:58,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:23:58,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:23:58,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:23:58,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:23:58,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:23:58,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:02,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:02,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:02,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:02,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:24:02,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:24:02,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:03,145 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:03,182 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:03,285 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.996 +2025-10-01 15:24:03,285 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 15:24:03,285 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 15:24:03,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:03,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:03,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:03,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 15:24:03,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 15:24:03,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:05,422 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:05,462 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:05,541 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.342 +2025-10-01 15:24:05,541 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:24:05,542 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:24:06,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:06,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:06,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:06,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:24:06,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:24:06,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:06,768 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:06,795 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:06,883 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.278 +2025-10-01 15:24:06,883 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:24:06,884 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:24:07,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:07,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:07,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:07,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:24:07,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:24:07,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:07,794 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:07,835 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:07,938 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.389 +2025-10-01 15:24:07,939 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 15:24:07,939 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 15:24:08,339 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:08,369 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:08,446 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.534 +2025-10-01 15:24:08,446 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:24:08,446 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:24:08,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:08,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:08,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:08,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:24:08,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:24:08,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:09,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:09,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:09,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:09,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:24:09,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:24:09,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:10,099 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:10,137 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:10,210 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.182 +2025-10-01 15:24:10,210 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:24:10,211 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:24:12,817 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:12,847 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:12,928 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=185.638 +2025-10-01 15:24:12,928 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:24:12,928 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 15:24:14,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:14,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:14,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:14,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:24:14,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:24:14,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:14,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:14,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:14,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:14,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:24:14,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:24:14,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:14,692 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:24:14,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:24:14,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:24:14,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 15:24:14,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 15:24:14,981 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:24:15,052 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:15,070 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:15,143 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.533 +2025-10-01 15:24:15,143 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:24:15,143 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:24:20,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:20,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:20,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:20,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:24:20,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:24:20,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:20,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:20,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:20,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:20,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:24:20,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:24:20,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:23,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:23,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:23,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:23,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:24:23,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:24:23,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:25,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:25,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:25,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:25,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:24:25,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:24:25,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:26,620 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:24:26,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:24:26,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:24:26,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 15:24:26,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 15:24:26,898 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:24:30,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:30,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:30,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:30,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:24:30,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:24:30,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:31,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:31,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:31,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:31,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:24:31,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:24:31,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:31,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:31,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:32,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:32,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:24:32,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:24:32,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:33,996 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:24:33,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:24:34,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:24:34,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 15:24:34,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 15:24:34,287 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:24:34,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:34,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:34,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:34,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:24:34,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:24:34,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:37,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:37,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:37,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:38,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:24:38,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:24:38,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:38,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:38,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:38,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:38,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:24:38,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:24:38,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:39,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:39,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:39,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:39,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:24:39,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:24:39,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:40,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:40,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:40,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:40,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:24:40,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:24:40,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:40,908 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:40,923 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:40,998 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.679 +2025-10-01 15:24:40,998 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:24:40,998 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:24:41,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:41,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:41,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:41,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 15:24:41,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 15:24:41,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:41,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:41,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:41,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:42,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:24:42,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:24:42,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:42,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:42,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:42,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:42,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 15:24:42,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 15:24:42,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:43,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:43,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:43,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:43,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:24:43,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:24:43,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:43,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:43,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:43,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:44,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:24:44,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:24:44,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:44,243 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:44,257 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:44,330 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.814 +2025-10-01 15:24:44,330 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:24:44,330 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:24:44,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:44,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:45,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:45,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:24:45,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:24:45,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:45,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:45,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:45,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:45,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:24:45,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:24:45,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:46,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:46,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:46,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:46,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:24:46,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:24:46,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:47,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:47,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:47,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:47,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:24:47,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:24:47,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:48,012 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:48,027 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:48,104 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.454 +2025-10-01 15:24:48,104 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:24:48,104 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:24:48,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:48,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:48,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:48,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:24:48,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:24:48,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:51,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:51,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:51,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:51,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 15:24:51,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 15:24:51,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:51,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:51,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:51,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:52,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:24:52,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:24:52,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:52,582 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:52,609 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:52,689 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.249 +2025-10-01 15:24:52,690 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:24:52,691 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:24:52,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:52,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:52,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:53,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:24:53,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:24:53,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:53,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:53,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:53,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:53,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:24:53,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:24:53,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:55,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:55,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:55,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:55,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:24:55,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:24:55,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:56,193 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:56,230 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:56,340 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.446 +2025-10-01 15:24:56,341 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-01 15:24:56,342 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-01 15:24:56,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:56,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:56,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:57,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:24:57,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:24:57,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:57,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:24:57,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:24:57,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:24:57,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:24:57,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:24:57,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:24:59,215 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:24:59,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:24:59,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:24:59,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 15:24:59,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 15:24:59,511 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:24:59,572 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:24:59,594 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:24:59,694 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.589 +2025-10-01 15:24:59,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 15:24:59,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 15:25:00,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:00,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:00,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:01,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:25:01,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:25:01,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:03,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:03,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:03,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:03,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:25:03,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:25:03,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:04,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:04,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:04,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:04,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:25:04,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:25:04,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:05,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:05,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:05,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:05,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:25:05,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:25:05,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:05,711 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:25:05,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:25:05,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:25:06,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.318s +2025-10-01 15:25:06,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.318s (avg: 0.159s/image) +2025-10-01 15:25:06,030 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:25:06,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:06,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:06,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:06,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:25:06,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:25:06,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:08,314 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:25:08,338 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:25:08,436 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.632 +2025-10-01 15:25:08,436 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 15:25:08,436 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 15:25:08,755 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:25:08,778 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:25:08,853 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.525 +2025-10-01 15:25:08,853 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:25:08,854 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:25:09,891 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:25:09,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:25:09,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:25:10,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 15:25:10,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 15:25:10,191 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:25:10,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:10,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:10,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:10,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:25:10,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:25:10,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:10,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:10,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:10,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:10,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:25:10,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:25:10,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:11,161 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:25:11,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:25:11,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:25:11,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-01 15:25:11,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +2025-10-01 15:25:11,422 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:25:12,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:12,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:12,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:12,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:25:12,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:25:12,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:13,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:13,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:13,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:13,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:25:13,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:25:13,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:14,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:14,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:14,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:14,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:25:14,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:25:14,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:15,329 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:25:15,355 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:25:15,435 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.603 +2025-10-01 15:25:15,435 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:25:15,435 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:25:16,967 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:25:17,000 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:25:17,084 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.408 +2025-10-01 15:25:17,085 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:25:17,085 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:25:17,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:17,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:17,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:17,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:25:17,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:25:17,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:18,747 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:25:18,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:25:18,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:25:19,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 15:25:19,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 15:25:19,036 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:25:19,685 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:25:19,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:25:19,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:25:19,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 15:25:19,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 15:25:19,984 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:25:20,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:20,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:20,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:20,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:25:20,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:25:20,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:23,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:23,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:23,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:23,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:25:23,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:25:23,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:23,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:23,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:23,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:23,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:25:23,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:25:23,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:24,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:24,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:24,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:24,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:25:24,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:25:24,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:25,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:25,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:25,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:25,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:25:25,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:25:25,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:25,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:25,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:25,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:25,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:25:25,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:25:25,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:28,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:25:28,099 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:25:28,184 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.465 +2025-10-01 15:25:28,184 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:25:28,184 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 15:25:29,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:29,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:29,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:29,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:25:29,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:25:29,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:30,144 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:25:30,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:25:30,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:25:30,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 15:25:30,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-01 15:25:30,448 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:25:30,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:30,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:30,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:30,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:25:30,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:25:30,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:31,335 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:25:31,352 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:25:31,425 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.650 +2025-10-01 15:25:31,425 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 15:25:31,425 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:25:31,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:31,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:31,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:31,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:25:31,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:25:31,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:32,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:32,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:32,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:32,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:25:32,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:25:32,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:33,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:33,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:33,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:33,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:25:33,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:25:33,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:34,970 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:25:34,992 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:25:35,067 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.853 +2025-10-01 15:25:35,067 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:25:35,067 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:25:35,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:35,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:35,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:35,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:25:35,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:25:35,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:36,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:36,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:36,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:36,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:25:36,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:25:36,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:36,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:36,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:36,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:37,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:25:37,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:25:37,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:37,494 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:25:37,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:25:37,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:25:37,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 15:25:37,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 15:25:37,804 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:25:38,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:38,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:38,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:38,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:25:38,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:25:38,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:41,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:41,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:41,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:41,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:25:41,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:25:41,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:41,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:41,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:41,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:41,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:25:41,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:25:41,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:42,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:42,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:42,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:42,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:25:42,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:25:42,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:42,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:42,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:42,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:42,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:25:42,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:25:42,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:42,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:42,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:42,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:43,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:25:43,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:25:43,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:43,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:43,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:43,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:43,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:25:43,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:25:43,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:46,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:46,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:46,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:46,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:25:46,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:25:46,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:48,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:48,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:48,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:48,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:25:48,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:25:48,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:48,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:48,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:48,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:48,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:25:48,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:25:48,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:48,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:48,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:48,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:48,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:25:48,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:25:48,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:50,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:50,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:50,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:50,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:25:50,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:25:50,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:51,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:51,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:51,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:51,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:25:51,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:25:51,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:52,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:52,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:52,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:52,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:25:52,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:25:52,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:53,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:53,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:53,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:53,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:25:53,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:25:53,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:58,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:58,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:58,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:58,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:25:58,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:25:58,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:58,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:58,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:58,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:58,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:25:58,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:25:58,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:59,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:59,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:59,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:25:59,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 15:25:59,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 15:25:59,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:25:59,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:25:59,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:25:59,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:00,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:26:00,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:26:00,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:04,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:05,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:05,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:05,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s +2025-10-01 15:26:05,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image) +2025-10-01 15:26:05,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:05,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:05,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:05,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:05,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:26:05,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:26:05,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:05,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:05,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:05,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:05,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:26:05,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:26:05,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:06,686 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:26:06,730 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:26:06,819 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.804 +2025-10-01 15:26:06,820 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:26:06,820 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:26:08,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:08,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:08,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:08,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:26:08,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:26:08,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:09,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:09,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:09,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:09,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:26:09,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:26:09,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:12,447 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:26:12,488 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:26:12,569 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.240 +2025-10-01 15:26:12,570 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:26:12,570 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:26:12,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:12,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:12,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:12,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:26:12,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:26:12,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:12,992 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:26:13,032 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:26:13,123 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.980 +2025-10-01 15:26:13,124 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:26:13,126 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 15:26:15,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:15,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:15,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:15,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:26:15,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:26:15,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:15,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:15,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:15,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:15,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:26:15,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:26:15,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:17,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:17,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:17,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:17,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:26:17,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:26:17,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:18,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:18,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:18,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:18,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:26:18,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:26:18,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:19,311 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:26:19,351 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:26:19,465 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.298 +2025-10-01 15:26:19,465 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.113s +2025-10-01 15:26:19,466 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.116s +2025-10-01 15:26:23,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:23,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:23,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:24,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:26:24,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:26:24,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:24,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:24,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:25,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:25,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 15:26:25,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 15:26:25,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:25,285 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:26:25,306 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:26:25,406 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.312 +2025-10-01 15:26:25,406 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:26:25,407 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 15:26:25,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:25,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:25,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:26,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:26:26,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:26:26,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:28,775 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:26:28,801 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:26:28,926 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=17.452 +2025-10-01 15:26:28,926 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.123s +2025-10-01 15:26:28,927 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.125s +2025-10-01 15:26:30,015 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:26:30,047 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:26:30,150 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.844 +2025-10-01 15:26:30,150 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 15:26:30,150 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 15:26:30,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:30,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:30,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:30,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:26:30,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:26:30,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:31,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:31,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:31,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:31,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:26:31,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:26:31,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:31,961 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:26:31,987 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:26:32,078 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=17.473 +2025-10-01 15:26:32,078 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:26:32,079 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:26:33,572 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:26:33,603 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:26:33,713 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.793 +2025-10-01 15:26:33,713 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-01 15:26:33,713 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-01 15:26:34,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:34,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:34,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:34,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:26:34,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:26:34,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:35,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:35,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:35,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:35,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:26:35,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:26:35,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:35,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:35,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:35,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:36,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:26:36,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:26:36,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:37,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:37,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:37,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:37,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:26:37,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:26:37,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:37,633 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:26:37,657 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:26:37,735 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.863 +2025-10-01 15:26:37,735 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:26:37,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:26:39,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:39,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:39,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:39,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:26:39,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:26:39,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:44,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:44,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:44,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:44,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:26:44,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:26:44,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:45,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:45,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:45,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:45,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:26:45,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:26:45,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:49,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:49,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:49,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:49,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:26:49,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:26:49,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:51,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:51,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:51,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:51,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:26:51,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:26:51,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:52,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:52,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:52,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:52,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:26:52,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:26:52,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:53,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:53,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:53,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:53,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 15:26:53,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 15:26:53,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:55,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:55,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:55,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:55,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:26:55,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:26:55,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:55,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:55,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:55,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:55,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:26:55,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:26:55,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:55,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:55,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:55,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:56,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:26:56,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:26:56,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:56,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:56,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:56,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:56,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 15:26:56,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 15:26:56,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:57,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:57,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:57,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:57,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:26:57,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:26:57,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:58,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:58,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:58,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:58,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:26:58,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:26:58,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:26:59,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:26:59,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:26:59,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:26:59,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:26:59,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:26:59,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:01,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:01,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:01,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:01,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 15:27:01,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 15:27:01,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:01,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:01,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:01,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:02,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:27:02,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:27:02,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:02,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:02,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:02,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:02,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:27:02,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:27:02,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:04,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:04,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:04,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:05,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:27:05,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:27:05,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:05,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:05,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:05,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:05,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:27:05,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:27:05,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:07,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:07,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:07,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:07,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:27:07,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:27:07,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:08,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:08,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:08,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:08,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:27:08,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:27:08,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:09,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:09,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:09,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:09,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:27:09,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:27:09,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:11,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:11,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:11,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:11,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:27:11,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:27:11,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:11,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:11,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:11,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:12,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:27:12,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:27:12,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:13,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:13,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:13,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:13,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:27:13,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:27:13,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:15,850 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:27:15,883 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:27:15,966 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.547 +2025-10-01 15:27:15,966 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:27:15,967 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:27:16,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:16,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:16,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:16,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:27:16,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:27:16,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:17,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:17,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:17,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:17,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:27:17,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:27:17,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:17,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:17,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:17,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:18,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:27:18,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:27:18,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:19,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:19,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:19,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:19,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 15:27:19,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 15:27:19,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:19,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:19,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:19,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:19,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:27:19,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:27:19,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:20,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:20,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:20,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:20,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:27:20,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:27:20,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:23,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:23,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:23,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:23,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:27:23,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:27:23,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:23,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:23,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:23,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:23,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:27:23,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:27:23,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:24,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:24,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:24,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:24,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:27:24,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:27:24,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:25,974 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:27:25,996 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:27:26,084 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.083 +2025-10-01 15:27:26,084 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:27:26,084 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 15:27:26,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:26,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:26,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:26,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:27:26,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:27:26,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:28,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:28,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:28,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:28,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:27:28,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:27:28,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:28,753 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:27:28,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:27:28,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:27:29,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 15:27:29,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 15:27:29,045 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:27:29,416 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:27:29,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:27:29,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:27:29,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-01 15:27:29,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-01 15:27:29,682 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:27:29,726 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:27:29,735 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:27:29,808 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.998 +2025-10-01 15:27:29,808 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:27:29,808 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:27:30,228 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:27:30,259 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(805, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:27:30,327 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.113 +2025-10-01 15:27:30,328 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 15:27:30,328 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 15:27:32,526 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:27:32,548 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:27:32,623 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.606 +2025-10-01 15:27:32,623 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:27:32,623 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:27:32,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:32,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:32,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:33,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 15:27:33,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 15:27:33,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:33,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:33,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:33,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:33,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:27:33,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:27:33,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:33,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:33,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:33,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:33,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:27:33,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:27:33,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:35,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:35,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:35,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:35,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:27:35,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:27:35,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:35,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:35,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:35,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:35,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:27:35,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:27:35,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:35,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:35,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:35,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:36,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:27:36,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:27:36,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:37,342 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:27:37,364 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:27:37,437 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.707 +2025-10-01 15:27:37,437 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:27:37,437 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:27:37,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:37,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:37,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:37,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:27:37,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:27:37,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:38,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:38,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:38,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:38,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:27:38,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:27:38,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:40,769 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:27:40,794 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:27:40,868 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.714 +2025-10-01 15:27:40,868 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:27:40,869 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:27:41,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:41,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:41,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:41,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:27:41,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:27:41,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:41,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:41,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:41,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:41,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:27:41,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:27:41,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:42,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:42,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:42,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:42,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:27:42,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:27:42,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:43,409 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:27:43,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:27:43,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:27:43,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 15:27:43,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 15:27:43,701 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:27:45,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:45,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:45,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:45,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:27:45,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:27:45,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:48,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:48,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:48,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:48,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:27:48,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:27:48,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:49,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:49,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:49,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:49,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:27:49,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:27:49,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:49,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:49,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:49,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:50,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:27:50,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:27:50,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:50,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:50,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:51,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:51,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:27:51,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:27:51,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:51,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:51,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:51,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:51,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:27:51,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:27:51,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:52,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:52,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:52,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:52,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:27:52,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:27:52,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:55,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:55,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:55,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:55,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:27:55,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:27:55,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:55,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:55,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:55,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:56,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:27:56,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:27:56,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:57,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:57,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:57,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:57,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:27:57,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:27:57,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:57,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:57,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:58,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:58,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:27:58,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:27:58,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:27:58,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:27:58,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:27:58,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:27:58,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 15:27:58,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 15:27:58,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:01,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:01,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:01,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:01,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:28:01,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:28:01,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:02,690 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:28:02,715 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:28:02,791 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.424 +2025-10-01 15:28:02,792 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:28:02,792 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:28:03,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:03,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:03,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:03,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:28:03,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:28:03,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:04,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:04,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:04,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:04,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:28:04,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:28:04,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:05,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:05,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:05,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:05,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:28:05,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:28:05,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:09,022 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:28:09,069 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:28:09,153 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.375 +2025-10-01 15:28:09,153 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:28:09,153 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:28:15,480 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:28:15,527 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:28:15,612 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.344 +2025-10-01 15:28:15,612 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 15:28:15,612 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 15:28:17,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:17,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:17,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:17,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:28:17,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:28:17,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:18,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:18,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:18,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:18,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 15:28:18,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 15:28:18,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:21,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:21,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:21,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:21,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:28:21,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:28:21,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:24,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:24,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:24,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:24,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:28:24,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:28:24,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:24,589 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:28:24,607 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:28:24,688 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.839 +2025-10-01 15:28:24,689 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:28:24,689 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:28:24,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:24,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:25,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:25,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:28:25,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:28:25,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:28,335 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:28:28,357 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:28:28,455 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.639 +2025-10-01 15:28:28,455 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 15:28:28,455 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 15:28:28,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:28,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:28,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:28,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 15:28:28,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 15:28:28,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:29,081 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:28:29,099 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(882, 944, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:28:29,179 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.284 +2025-10-01 15:28:29,179 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:28:29,180 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 15:28:31,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:31,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:31,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:31,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:28:31,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:28:31,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:32,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:32,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:32,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:32,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:28:32,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:28:32,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:33,025 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:28:33,047 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:28:33,146 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.608 +2025-10-01 15:28:33,147 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 15:28:33,147 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 15:28:33,250 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:28:33,267 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:28:33,347 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.661 +2025-10-01 15:28:33,347 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:28:33,347 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:28:35,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:35,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:35,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:35,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:28:35,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:28:35,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:35,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:35,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:35,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:35,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:28:35,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:28:35,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:39,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:39,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:39,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:39,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:28:39,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:28:39,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:40,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:40,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:41,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:41,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:28:41,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:28:41,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:42,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:42,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:42,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:42,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:28:42,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:28:42,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:44,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:44,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:44,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:44,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:28:44,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:28:44,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:46,273 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:28:46,294 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:28:46,373 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.561 +2025-10-01 15:28:46,373 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:28:46,373 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:28:46,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:46,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:46,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:46,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:28:46,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:28:46,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:49,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:49,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:49,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:50,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:28:50,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:28:50,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:50,422 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:28:50,445 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:28:50,529 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.624 +2025-10-01 15:28:50,530 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:28:50,530 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 15:28:51,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:51,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:51,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:51,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:28:51,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:28:51,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:52,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:52,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:52,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:52,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:28:52,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:28:52,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:54,941 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:28:54,973 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:28:55,059 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.383 +2025-10-01 15:28:55,059 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 15:28:55,059 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 15:28:56,121 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:28:56,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:28:56,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:28:56,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 15:28:56,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 15:28:56,405 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:28:56,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:28:56,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:28:56,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:28:56,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:28:56,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:28:56,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:28:57,978 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:28:57,999 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:28:58,075 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.247 +2025-10-01 15:28:58,075 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:28:58,075 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:29:00,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:00,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:00,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:00,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:29:00,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:29:00,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:01,290 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:29:01,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:29:01,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:29:01,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 15:29:01,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.131s/image) +2025-10-01 15:29:01,554 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:29:02,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:02,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:02,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:02,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 15:29:02,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 15:29:02,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:03,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:03,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:03,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:03,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:29:03,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:29:03,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:04,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:04,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:04,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:04,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:29:04,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:29:04,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:07,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:07,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:07,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:07,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:29:07,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:29:07,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:07,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:07,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:07,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:08,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 15:29:08,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 15:29:08,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:11,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:11,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:11,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:11,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:29:11,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:29:11,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:11,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:11,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:11,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:11,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:29:11,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:29:11,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:12,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:12,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:12,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:12,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:29:12,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:29:12,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:13,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:13,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:13,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:13,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:29:13,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:29:13,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:15,479 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:29:15,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:29:15,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:29:15,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 15:29:15,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 15:29:15,753 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:29:17,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:17,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:17,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:17,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:29:17,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:29:17,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:17,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:17,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:17,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:17,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:29:17,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:29:17,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:17,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:17,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:17,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:18,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:29:18,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:29:18,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:18,676 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:18,717 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:18,804 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.143 +2025-10-01 15:29:18,804 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 15:29:18,804 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 15:29:19,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:19,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:19,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:19,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:29:19,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:29:19,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:20,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:20,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:20,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:20,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:29:20,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:29:20,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:22,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:22,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:22,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:22,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:29:22,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:29:22,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:23,016 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:23,036 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:23,115 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.142 +2025-10-01 15:29:23,115 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:29:23,116 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:29:23,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:23,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:23,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:23,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:29:23,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:29:23,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:23,801 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:23,819 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:23,893 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.389 +2025-10-01 15:29:23,893 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:29:23,894 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:29:23,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:23,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:23,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:24,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:29:24,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:29:24,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:24,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:24,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:24,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:24,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:29:24,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:29:24,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:24,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:24,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:24,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:24,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:29:24,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:29:24,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:24,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:24,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:24,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:25,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:29:25,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:29:25,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:28,226 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:29:28,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:29:28,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:29:28,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 15:29:28,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 15:29:28,519 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:29:29,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:29,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:29,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:29,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:29:29,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:29:29,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:29,622 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:29,652 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:29,727 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.761 +2025-10-01 15:29:29,727 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:29:29,727 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:29:29,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:29,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:30,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:30,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:29:30,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:29:30,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:32,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:32,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:32,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:32,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:29:32,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:29:32,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:33,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:33,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:33,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:33,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:29:33,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:29:33,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:33,937 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:33,958 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:34,032 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=178.986 +2025-10-01 15:29:34,032 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:29:34,033 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:29:34,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:34,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:34,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:34,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:29:34,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:29:34,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:34,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:34,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:34,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:35,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:29:35,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:29:35,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:35,487 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:35,516 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:35,593 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.626 +2025-10-01 15:29:35,593 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:29:35,593 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:29:37,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:37,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:37,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:37,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:29:37,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:29:37,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:38,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:38,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:38,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:38,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:29:38,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:29:38,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:38,328 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:38,367 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:38,472 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.557 +2025-10-01 15:29:38,472 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 15:29:38,474 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 15:29:38,510 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:38,523 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:38,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.912 +2025-10-01 15:29:38,603 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:29:38,603 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:29:38,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:38,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:38,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:39,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:29:39,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:29:39,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:41,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:41,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:41,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:41,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:29:41,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:29:41,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:42,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:42,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:42,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:42,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:29:42,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:29:42,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:43,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:43,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:43,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:43,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:29:43,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:29:43,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:44,076 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:29:44,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:29:44,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:29:44,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 15:29:44,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 15:29:44,376 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:29:45,029 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:45,050 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:45,135 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.053 +2025-10-01 15:29:45,136 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 15:29:45,136 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 15:29:45,350 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:45,369 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:45,444 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.792 +2025-10-01 15:29:45,445 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:29:45,445 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:29:45,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:45,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:45,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:45,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:29:45,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:29:45,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:46,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:46,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:46,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:46,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:29:46,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:29:46,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:48,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:48,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:48,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:48,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:29:48,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:29:48,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:48,515 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:48,529 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:48,604 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.411 +2025-10-01 15:29:48,604 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:29:48,604 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:29:48,784 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:48,810 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:48,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.483 +2025-10-01 15:29:48,887 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:29:48,887 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:29:49,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:49,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:49,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:49,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:29:49,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:29:49,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:51,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:51,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:51,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:51,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:29:51,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:29:51,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:51,925 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:51,951 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:52,030 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.828 +2025-10-01 15:29:52,031 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:29:52,031 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:29:52,247 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:29:52,270 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:29:52,345 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.654 +2025-10-01 15:29:52,345 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:29:52,345 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:29:52,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:52,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:52,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:52,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 15:29:52,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 15:29:52,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:52,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:52,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:52,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:53,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 15:29:53,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 15:29:53,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:54,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:54,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:54,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:54,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:29:54,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:29:54,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:54,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:54,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:55,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:55,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:29:55,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:29:55,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:55,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:55,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:55,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:55,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:29:55,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:29:55,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:55,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:55,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:55,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:55,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:29:55,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:29:55,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:57,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:57,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:57,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:57,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:29:57,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:29:57,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:57,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:57,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:57,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:58,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:29:58,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:29:58,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:29:59,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:29:59,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:29:59,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:29:59,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:29:59,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:29:59,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:00,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:00,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:01,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:01,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:30:01,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:30:01,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:01,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:01,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:01,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:01,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:30:01,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:30:01,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:02,002 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:30:02,030 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:30:02,110 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.133 +2025-10-01 15:30:02,110 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:30:02,110 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 15:30:03,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:03,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:03,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:03,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:30:03,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:30:03,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:05,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:05,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:05,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:05,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:30:05,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:30:05,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:06,031 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:30:06,050 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:30:06,126 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.364 +2025-10-01 15:30:06,126 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:30:06,126 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:30:06,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:06,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:06,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:07,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:30:07,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:30:07,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:08,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:08,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:08,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:08,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:30:08,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:30:08,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:09,924 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:30:09,946 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:30:10,020 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=196.870 +2025-10-01 15:30:10,020 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:30:10,020 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:30:10,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:10,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:10,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:10,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:30:10,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:30:10,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:12,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:12,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:12,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:13,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:30:13,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:30:13,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:13,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:13,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:13,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:13,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:30:13,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:30:13,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:14,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:14,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:14,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:14,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:30:14,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:30:14,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:14,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:14,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:14,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:14,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:30:14,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:30:14,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:17,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:17,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:17,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:17,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:30:17,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:30:17,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:17,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:17,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:17,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:17,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 15:30:17,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 15:30:17,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:18,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:18,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:18,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:18,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:30:18,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:30:18,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:19,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:19,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:19,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:19,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:30:19,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:30:19,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:19,736 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:30:19,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:30:19,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:30:20,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 15:30:20,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 15:30:20,036 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:30:20,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:20,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:20,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:20,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:30:20,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:30:20,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:21,316 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:30:21,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:30:21,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:30:21,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 15:30:21,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 15:30:21,599 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:30:22,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:22,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:22,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:22,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:30:22,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:30:22,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:23,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:23,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:23,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:23,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:30:23,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:30:23,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:24,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:24,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:24,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:24,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:30:24,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:30:24,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:25,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:25,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:25,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:25,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:30:25,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:30:25,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:25,847 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:30:25,875 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:30:25,958 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.701 +2025-10-01 15:30:25,959 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:30:25,960 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 15:30:25,994 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:30:25,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:30:26,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:30:26,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 15:30:26,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 15:30:26,283 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:30:26,804 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:30:26,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:30:26,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:30:27,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 15:30:27,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 15:30:27,101 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:30:28,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:28,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:28,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:28,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:30:28,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:30:28,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:28,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:28,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:29,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:29,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:30:29,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:30:29,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:30,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:30,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:30,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:30,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:30:30,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:30:30,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:30,719 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:30:30,747 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:30:30,829 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=167.928 +2025-10-01 15:30:30,829 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:30:30,832 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 15:30:31,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:31,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:31,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:31,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:30:31,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:30:31,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:31,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:31,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:31,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:32,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:30:32,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:30:32,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:32,185 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:30:32,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:30:32,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:30:32,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 15:30:32,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-01 15:30:32,487 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:30:32,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:32,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:32,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:33,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:30:33,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:30:33,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:33,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:33,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:33,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:33,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:30:33,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:30:33,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:34,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:34,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:34,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:35,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:30:35,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:30:35,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:35,635 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:30:35,663 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:30:35,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.134 +2025-10-01 15:30:35,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:30:35,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 15:30:36,227 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:30:36,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:30:36,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:30:36,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-01 15:30:36,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +2025-10-01 15:30:36,549 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:30:36,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:36,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:36,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:36,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:30:36,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:30:36,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:37,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:37,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:37,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:37,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 15:30:37,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 15:30:37,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:37,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:37,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:37,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:37,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 15:30:37,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 15:30:37,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:38,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:38,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:38,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:38,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:30:38,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:30:38,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:39,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:39,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:39,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:39,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:30:39,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:30:39,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:40,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:40,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:40,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:40,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:30:40,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:30:40,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:40,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:40,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:40,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:40,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:30:40,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:30:40,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:41,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:41,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:41,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:41,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:30:41,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:30:41,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:42,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:42,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:42,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:42,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:30:42,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:30:42,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:42,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:42,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:42,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:42,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:30:42,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:30:42,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:45,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:45,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:45,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:45,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:30:45,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:30:45,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:46,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:46,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:46,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:46,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:30:46,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:30:46,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:47,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:47,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:47,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:47,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 15:30:47,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 15:30:47,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:47,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:47,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:47,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:47,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:30:47,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:30:47,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:48,343 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:30:48,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:30:48,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:30:48,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 15:30:48,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-01 15:30:48,615 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:30:49,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:49,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:49,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:49,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:30:49,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:30:49,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:49,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:49,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:49,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:49,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:30:49,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:30:49,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:51,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:51,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:51,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:51,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:30:51,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:30:51,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:52,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:52,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:52,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:52,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:30:52,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:30:52,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:52,531 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:30:52,549 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(799, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:30:52,623 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.782 +2025-10-01 15:30:52,623 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:30:52,624 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:30:53,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:53,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:53,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:53,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:30:53,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:30:53,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:53,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:53,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:53,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:53,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 15:30:53,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 15:30:53,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:53,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:53,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:53,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:53,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 15:30:53,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 15:30:53,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:56,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:56,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:56,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:56,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:30:56,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:30:56,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:56,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:56,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:56,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:57,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:30:57,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:30:57,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:30:57,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:30:57,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:30:57,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:30:57,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:30:57,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:30:57,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:00,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:00,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:00,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:00,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:31:00,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:31:00,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:00,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:00,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:00,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:00,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:31:00,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:31:00,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:03,202 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:31:03,227 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:31:03,324 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.592 +2025-10-01 15:31:03,325 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 15:31:03,325 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 15:31:03,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:03,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:03,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:03,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:31:03,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:31:03,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:05,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:05,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:05,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:05,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:31:05,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:31:05,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:05,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:05,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:05,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:05,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:31:05,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:31:05,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:07,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:07,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:07,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:08,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 15:31:08,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 15:31:08,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:08,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:08,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:08,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:08,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:31:08,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:31:08,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:11,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:11,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:11,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:11,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:31:11,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:31:11,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:14,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:14,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:14,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:15,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:31:15,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:31:15,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:15,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:15,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:15,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:15,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 15:31:15,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 15:31:15,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:17,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:17,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:17,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:18,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:31:18,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:31:18,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:18,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:18,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:18,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:18,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:31:18,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:31:18,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:21,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:21,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:21,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:21,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:31:21,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:31:21,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:22,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:22,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:22,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:22,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:31:22,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:31:22,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:22,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:22,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:22,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:22,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:31:22,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:31:22,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:24,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:24,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:24,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:24,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 15:31:24,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 15:31:24,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:28,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:28,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:28,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:28,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:31:28,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:31:28,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:28,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:28,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:28,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:29,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:31:29,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:31:29,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:29,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:29,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:29,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:29,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:31:29,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:31:29,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:30,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:30,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:30,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:30,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:31:30,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:31:30,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:33,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:33,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:33,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:33,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:31:33,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:31:33,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:34,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:34,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:34,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:34,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:31:34,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:31:34,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:38,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:38,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:38,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:38,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:31:38,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:31:38,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:39,320 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:31:39,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:31:39,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:31:39,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 15:31:39,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 15:31:39,604 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:31:39,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:39,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:39,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:39,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:31:39,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:31:39,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:40,833 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:31:40,858 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:31:40,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.480 +2025-10-01 15:31:40,947 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:31:40,947 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:31:41,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:41,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:41,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:41,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:31:41,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:31:41,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:42,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:42,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:42,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:42,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:31:42,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:31:42,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:43,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:43,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:43,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:44,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:31:44,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:31:44,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:44,486 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:31:44,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:31:44,597 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.092 +2025-10-01 15:31:44,597 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:31:44,597 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:31:47,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:47,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:47,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:47,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:31:47,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:31:47,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:47,717 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:31:47,739 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:31:47,817 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.370 +2025-10-01 15:31:47,817 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:31:47,817 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:31:48,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:48,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:48,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:48,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:31:48,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:31:48,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:49,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:49,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:49,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:49,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:31:49,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:31:49,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:52,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:52,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:52,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:52,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 15:31:52,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 15:31:52,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:53,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:53,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:53,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:53,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:31:53,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:31:53,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:54,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:54,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:54,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:54,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:31:54,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:31:54,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:54,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:54,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:54,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:54,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:31:54,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:31:54,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:55,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:55,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:55,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:55,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 15:31:55,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 15:31:55,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:57,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:57,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:57,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:57,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:31:57,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:31:57,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:31:59,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:31:59,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:31:59,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:31:59,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:31:59,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:31:59,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:00,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:00,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:00,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:00,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:32:00,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:32:00,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:02,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:02,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:02,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:02,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:32:02,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:32:02,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:03,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:03,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:03,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:03,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 15:32:03,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 15:32:03,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:03,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:03,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:03,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:03,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:32:03,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:32:03,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:04,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:04,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:04,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:04,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:32:04,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:32:04,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:07,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:07,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:07,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:07,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:32:07,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:32:07,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:07,629 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:07,649 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:07,718 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.953 +2025-10-01 15:32:07,718 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 15:32:07,718 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 15:32:07,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:07,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:08,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:08,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:32:08,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:32:08,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:08,396 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:08,428 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:08,507 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.842 +2025-10-01 15:32:08,507 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:32:08,508 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:32:10,689 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:10,709 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:10,782 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.121 +2025-10-01 15:32:10,782 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:32:10,783 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:32:11,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:11,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:11,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:11,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 15:32:11,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 15:32:11,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:12,038 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:12,061 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:12,140 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.916 +2025-10-01 15:32:12,140 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:32:12,140 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:32:13,962 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:13,982 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:14,055 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.170 +2025-10-01 15:32:14,055 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:32:14,056 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:32:14,149 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:14,175 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:14,256 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.821 +2025-10-01 15:32:14,256 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:32:14,258 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:32:14,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:14,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:14,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:15,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 15:32:15,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 15:32:15,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:15,506 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:15,530 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:15,639 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.255 +2025-10-01 15:32:15,639 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.108s +2025-10-01 15:32:15,639 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.109s +2025-10-01 15:32:16,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:16,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:16,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:16,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:32:16,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:32:16,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:17,883 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:17,911 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:17,993 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=14.798 +2025-10-01 15:32:17,993 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:32:17,995 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:32:21,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:21,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:21,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:21,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:32:21,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:32:21,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:21,389 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:21,402 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:21,509 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=12.648 +2025-10-01 15:32:21,509 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s +2025-10-01 15:32:21,510 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-01 15:32:21,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:21,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:21,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:21,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:32:21,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:32:21,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:23,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:23,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:23,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:23,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:32:23,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:32:23,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:25,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:25,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:25,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:25,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:32:25,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:32:25,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:25,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:25,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:25,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:25,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:32:25,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:32:25,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:27,958 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:28,002 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:28,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.022 +2025-10-01 15:32:28,122 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.119s +2025-10-01 15:32:28,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.121s +2025-10-01 15:32:29,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:29,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:29,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:29,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:32:29,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:32:29,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:29,976 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:32:29,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:32:30,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:32:30,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 15:32:30,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 15:32:30,273 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:32:30,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:30,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:30,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:30,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:32:30,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:32:30,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:30,839 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:30,876 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:30,987 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.639 +2025-10-01 15:32:30,987 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.110s +2025-10-01 15:32:30,989 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-01 15:32:31,260 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:31,286 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:31,390 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=170.329 +2025-10-01 15:32:31,391 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 15:32:31,392 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 15:32:33,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:33,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:33,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:33,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:32:33,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:32:33,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:34,671 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:34,693 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:34,795 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.397 +2025-10-01 15:32:34,795 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 15:32:34,797 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 15:32:39,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:39,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:39,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:39,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:32:39,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:32:39,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:39,492 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:32:39,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:32:39,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:32:39,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 15:32:39,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 15:32:39,788 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:32:39,865 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:39,876 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(799, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:39,951 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.905 +2025-10-01 15:32:39,951 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:32:39,951 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:32:39,966 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:39,986 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:40,076 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.101 +2025-10-01 15:32:40,076 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:32:40,077 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 15:32:40,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:40,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:40,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:40,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 15:32:40,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 15:32:40,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:43,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:43,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:43,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:43,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:32:43,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:32:43,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:44,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:44,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:44,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:44,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:32:44,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:32:44,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:45,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:45,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:45,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:45,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:32:45,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:32:45,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:46,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:46,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:46,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:46,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:32:46,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:32:46,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:47,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:47,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:47,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:48,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:32:48,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:32:48,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:48,500 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:32:48,539 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:32:48,637 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.358 +2025-10-01 15:32:48,638 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 15:32:48,638 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 15:32:53,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:53,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:53,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:53,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:32:53,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:32:53,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:58,490 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:32:58,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:32:58,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:32:58,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 15:32:58,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 15:32:58,778 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:32:59,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:59,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:59,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:59,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:32:59,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:32:59,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:32:59,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:32:59,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:32:59,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:32:59,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:32:59,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:32:59,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:02,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:02,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:02,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:02,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:33:02,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:33:02,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:03,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:03,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:03,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:04,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:33:04,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:33:04,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:04,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:04,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:04,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:04,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 15:33:04,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 15:33:04,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:06,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:06,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:06,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:06,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:33:06,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:33:06,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:09,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:09,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:09,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:09,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:33:09,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:33:09,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:09,684 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:33:09,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:33:09,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:33:09,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 15:33:09,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-01 15:33:09,964 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:33:10,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:11,006 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:11,097 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.192 +2025-10-01 15:33:11,097 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:33:11,097 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:33:13,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:13,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:13,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:13,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:33:13,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:33:13,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:14,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:14,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:14,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:14,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:33:14,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:33:14,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:15,392 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:15,424 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:15,527 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.262 +2025-10-01 15:33:15,527 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 15:33:15,529 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 15:33:17,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:17,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:17,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:17,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:33:17,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:33:17,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:18,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:18,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:18,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:18,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:33:18,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:33:18,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:19,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:19,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:19,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:19,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:33:19,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:33:19,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:19,617 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:19,636 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:19,754 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.236 +2025-10-01 15:33:19,754 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.117s +2025-10-01 15:33:19,756 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.120s +2025-10-01 15:33:21,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:21,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:21,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:21,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:33:21,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:33:21,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:22,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:22,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:22,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:22,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:33:22,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:33:22,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:25,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:25,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:25,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:26,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:33:26,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:33:26,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:26,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:26,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:26,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:26,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:33:26,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:33:26,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:26,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:26,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:26,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:27,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:33:27,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:33:27,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:28,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:28,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:28,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:29,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 15:33:29,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 15:33:29,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:29,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:29,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:29,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:29,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:33:29,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:33:29,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:31,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:31,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:31,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:31,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:33:31,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:33:31,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:31,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:31,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:31,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:31,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:33:31,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:33:31,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:33,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:33,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:33,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:33,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:33:33,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:33:33,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:33,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:33,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:33,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:33,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:33:33,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:33:33,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:33,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:33,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:33,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:34,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:33:34,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:33:34,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:34,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:34,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:34,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:34,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:33:34,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:33:34,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:36,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:36,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:36,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:36,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:33:36,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:33:36,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:36,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:36,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:36,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:37,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:33:37,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:33:37,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:37,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:37,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:37,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:37,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:33:37,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:33:37,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:37,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:37,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:37,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:38,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:33:38,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:33:38,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:38,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:38,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:38,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:39,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:33:39,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:33:39,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:40,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:40,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:40,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:40,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:33:40,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:33:40,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:41,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:41,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:41,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:41,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:33:41,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:33:41,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:44,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:44,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:44,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:44,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:33:44,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:33:44,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:44,757 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:33:44,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:33:44,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:33:45,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 15:33:45,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 15:33:45,053 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:33:45,109 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:45,133 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:45,231 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=171.732 +2025-10-01 15:33:45,231 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 15:33:45,231 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 15:33:46,260 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:46,292 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:46,369 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.200 +2025-10-01 15:33:46,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:33:46,370 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:33:47,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:47,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:47,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:47,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:33:47,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:33:47,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:47,642 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:47,684 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:47,785 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.603 +2025-10-01 15:33:47,785 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:33:47,787 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 15:33:48,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:48,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:48,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:48,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:33:48,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:33:48,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:48,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:48,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:48,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:48,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:33:48,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:33:48,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:49,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:49,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:49,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:49,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:33:49,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:33:49,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:50,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:50,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:50,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:50,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:33:50,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:33:50,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:50,620 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:50,638 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:50,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.517 +2025-10-01 15:33:50,735 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 15:33:50,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:33:50,802 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:50,825 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:50,903 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.359 +2025-10-01 15:33:50,903 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:33:50,903 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:33:51,381 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:51,434 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:51,533 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.680 +2025-10-01 15:33:51,533 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 15:33:51,535 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 15:33:51,994 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:33:51,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:33:52,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:33:52,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 15:33:52,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 15:33:52,271 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:33:53,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:53,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:53,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:53,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:33:53,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:33:53,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:54,471 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:54,504 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:54,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.797 +2025-10-01 15:33:54,604 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 15:33:54,604 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 15:33:54,878 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:54,915 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:55,017 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.186 +2025-10-01 15:33:55,018 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 15:33:55,019 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 15:33:55,064 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:55,084 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:55,177 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.235 +2025-10-01 15:33:55,177 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 15:33:55,177 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 15:33:55,701 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:55,743 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:55,845 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.091 +2025-10-01 15:33:55,845 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 15:33:55,846 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 15:33:56,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:56,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:56,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:56,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:33:56,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:33:56,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:56,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:56,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:56,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:56,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:33:56,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:33:56,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:56,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:56,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:56,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:33:57,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:33:57,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:33:57,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:33:58,605 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:58,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:58,726 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.000 +2025-10-01 15:33:58,726 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 15:33:58,727 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 15:33:58,751 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:33:58,780 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:33:58,884 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=198.059 +2025-10-01 15:33:58,884 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 15:33:58,885 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 15:33:59,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:33:59,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:33:59,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:00,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:34:00,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:34:00,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:01,466 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:34:01,494 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:34:01,594 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.898 +2025-10-01 15:34:01,594 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:34:01,595 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 15:34:03,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:03,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:03,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:03,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:34:03,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:34:03,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:04,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:04,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:04,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:04,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:34:04,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:34:04,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:06,665 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:34:06,708 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:34:06,794 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.021 +2025-10-01 15:34:06,794 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 15:34:06,796 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 15:34:11,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:11,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:11,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:11,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:34:11,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:34:11,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:12,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:12,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:12,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:12,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:34:12,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:34:12,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:15,815 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:34:15,853 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:34:15,968 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.500 +2025-10-01 15:34:15,968 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.114s +2025-10-01 15:34:15,969 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.116s +2025-10-01 15:34:16,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:16,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:16,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:16,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:34:16,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:34:16,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:20,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:20,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:20,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:21,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:34:21,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:34:21,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:21,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:21,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:21,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:21,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 15:34:21,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 15:34:21,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:22,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:22,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:22,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:22,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:34:22,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:34:22,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:22,705 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:34:22,722 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:34:22,795 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.634 +2025-10-01 15:34:22,795 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:34:22,795 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:34:22,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:22,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:22,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:22,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:34:22,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:34:22,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:22,996 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:34:23,014 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:34:23,088 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.472 +2025-10-01 15:34:23,088 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:34:23,089 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:34:25,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:25,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:26,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:26,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:34:26,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:34:26,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:26,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:26,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:27,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:27,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 15:34:27,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 15:34:27,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:27,228 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:34:27,248 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:34:27,323 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=168.334 +2025-10-01 15:34:27,323 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:34:27,324 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:34:27,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:27,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:27,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:28,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:34:28,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:34:28,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:28,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:28,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:28,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:28,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 15:34:28,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 15:34:28,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:28,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:28,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:28,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:28,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 15:34:28,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 15:34:28,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:29,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:29,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:29,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:30,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:34:30,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:34:30,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:30,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:30,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:30,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:30,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:34:30,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:34:30,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:30,778 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:34:30,805 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:34:30,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.824 +2025-10-01 15:34:30,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:34:30,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:34:32,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:32,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:32,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:32,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:34:32,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:34:32,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:33,040 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 15:34:33,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 15:34:33,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 15:34:33,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.411s +2025-10-01 15:34:33,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.411s (avg: 0.137s/image) +2025-10-01 15:34:33,452 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 15:34:34,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:34,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:34,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:34,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:34:34,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:34:34,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:39,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:39,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:39,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:39,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:34:39,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:34:39,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:42,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:42,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:42,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:42,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:34:42,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:34:42,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:43,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:43,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:43,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:43,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:34:43,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:34:43,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:44,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:44,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:44,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:44,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:34:44,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:34:44,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:46,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:46,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:46,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:46,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:34:46,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:34:46,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:46,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:46,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:46,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:47,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:34:47,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:34:47,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:48,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:48,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:48,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:48,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:34:48,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:34:48,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:49,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:49,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:49,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:49,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:34:49,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:34:49,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:51,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:51,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:51,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:51,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:34:51,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:34:51,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:52,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:52,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:52,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:52,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:34:52,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:34:52,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:53,990 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:34:53,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:34:54,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:34:54,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 15:34:54,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 15:34:54,271 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:34:54,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:54,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:54,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:55,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:34:55,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:34:55,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:58,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:58,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:58,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:58,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:34:58,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:34:58,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:59,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:59,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:59,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:59,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:34:59,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:34:59,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:34:59,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:34:59,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:34:59,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:34:59,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:34:59,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:34:59,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:03,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:03,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:03,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:03,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 15:35:03,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 15:35:03,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:04,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:04,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:04,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:04,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:35:04,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:35:04,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:09,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:09,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:09,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:09,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:35:09,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:35:09,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:10,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:10,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:10,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:10,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:35:10,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:35:10,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:13,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:13,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:13,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:13,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:35:13,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:35:13,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:14,200 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:35:14,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:35:14,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:35:14,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.351s +2025-10-01 15:35:14,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.351s (avg: 0.176s/image) +2025-10-01 15:35:14,553 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:35:14,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:14,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:14,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:14,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:35:14,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:35:14,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:15,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:15,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:15,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:15,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:35:15,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:35:15,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:18,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:18,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:18,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:18,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:35:18,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:35:18,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:19,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:19,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:19,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:19,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:35:19,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:35:19,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:20,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:20,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:20,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:20,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:35:20,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:35:20,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:21,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:21,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:21,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:21,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:35:21,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:35:21,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:23,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:23,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:23,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:23,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:35:23,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:35:23,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:23,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:23,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:23,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:24,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.209s +2025-10-01 15:35:24,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.209s (avg: 0.209s/image) +2025-10-01 15:35:24,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:24,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:24,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:24,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:24,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:35:24,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:35:24,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:24,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:24,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:24,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:24,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:35:24,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:35:24,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:25,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:25,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:25,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:26,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:35:26,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:35:26,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:26,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:26,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:26,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:26,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:35:26,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:35:26,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:27,842 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:35:27,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:35:27,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:35:28,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 15:35:28,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 15:35:28,139 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:35:28,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:28,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:28,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:28,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:35:28,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:35:28,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:29,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:29,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:29,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:29,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:35:29,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:35:29,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:29,433 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:35:29,453 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:35:29,553 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.804 +2025-10-01 15:35:29,554 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:35:29,557 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 15:35:29,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:29,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:29,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:29,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:35:29,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:35:29,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:34,351 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:35:34,392 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:35:34,488 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.734 +2025-10-01 15:35:34,488 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 15:35:34,489 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:35:34,509 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:35:34,528 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 940, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:35:34,620 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.356 +2025-10-01 15:35:34,621 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:35:34,622 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 15:35:35,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:35:35,083 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:35:35,182 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.368 +2025-10-01 15:35:35,183 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 15:35:35,184 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 15:35:35,331 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:35:35,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:35:35,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:35:35,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 15:35:35,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 15:35:35,613 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:35:36,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:36,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:36,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:36,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:35:36,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:35:36,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:36,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:36,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:37,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:37,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:35:37,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:35:37,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:39,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:39,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:39,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:39,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:35:39,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:35:39,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:39,665 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:35:39,695 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:35:39,783 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.258 +2025-10-01 15:35:39,783 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:35:39,783 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 15:35:40,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:40,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:40,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:40,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 15:35:40,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 15:35:40,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:42,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:42,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:42,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:42,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:35:42,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:35:42,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:42,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:42,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:42,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:42,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:35:42,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:35:42,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:44,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:44,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:44,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:44,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:35:44,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:35:44,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:45,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:45,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:45,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:45,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:35:45,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:35:45,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:45,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:45,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:45,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:45,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:35:45,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:35:45,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:46,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:46,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:46,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:46,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:35:46,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:35:46,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:46,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:46,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:46,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:46,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:35:46,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:35:46,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:47,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:47,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:47,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:47,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:35:47,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:35:47,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:48,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:48,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:48,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:48,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:35:48,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:35:48,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:49,396 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:35:49,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(804, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:35:49,507 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.789 +2025-10-01 15:35:49,507 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:35:49,507 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:35:50,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:50,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:50,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:50,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:35:50,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:35:50,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:51,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:51,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:51,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:51,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:35:51,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:35:51,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:52,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:52,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:52,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:52,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:35:52,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:35:52,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:53,005 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:35:53,029 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:35:53,115 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.227 +2025-10-01 15:35:53,116 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 15:35:53,116 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 15:35:54,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:54,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:54,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:54,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:35:54,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:35:54,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:54,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:54,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:54,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:54,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:35:54,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:35:54,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:55,351 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:35:55,387 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:35:55,464 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.733 +2025-10-01 15:35:55,465 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:35:55,465 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:35:55,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:55,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:55,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:56,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:35:56,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:35:56,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:56,547 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:35:56,571 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:35:56,661 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.868 +2025-10-01 15:35:56,662 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:35:56,662 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:35:57,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:57,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:57,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:57,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:35:57,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:35:57,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:35:59,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:35:59,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:35:59,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:35:59,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:35:59,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:35:59,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:00,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:00,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:00,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:00,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:36:00,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:36:00,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:03,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:03,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:03,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:04,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:36:04,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:36:04,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:04,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:04,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:04,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:04,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:36:04,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:36:04,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:04,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:04,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:04,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:04,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:36:04,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:36:04,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:05,562 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:36:05,590 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:36:05,663 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.515 +2025-10-01 15:36:05,664 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:36:05,664 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:36:10,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:10,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:10,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:10,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:36:10,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:36:10,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:12,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:12,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:12,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:13,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:36:13,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:36:13,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:13,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:13,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:13,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:13,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:36:13,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:36:13,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:16,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:16,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:16,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:16,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:36:16,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:36:16,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:17,519 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:36:17,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:36:17,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:36:17,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 15:36:17,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 15:36:17,807 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:36:20,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:20,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:20,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:20,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:36:20,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:36:20,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:22,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:22,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:22,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:22,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:36:22,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:36:22,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:23,105 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:36:23,119 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(640, 640, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:36:23,189 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.968 +2025-10-01 15:36:23,190 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 15:36:23,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 15:36:24,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:24,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:24,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:24,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:36:24,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:36:24,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:24,937 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:36:24,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:36:24,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:36:25,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 15:36:25,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 15:36:25,228 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:36:25,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:25,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:25,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:25,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:36:25,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:36:25,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:26,273 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:36:26,297 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:36:26,375 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=224.170 +2025-10-01 15:36:26,375 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:36:26,375 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:36:27,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:27,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:27,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:28,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:36:28,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:36:28,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:31,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:31,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:31,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:31,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:36:31,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:36:31,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:32,476 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:36:32,508 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:36:32,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.814 +2025-10-01 15:36:32,588 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:36:32,588 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:36:32,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:32,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:32,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:32,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:36:32,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:36:32,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:34,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:34,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:34,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:34,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:36:34,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:36:34,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:36,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:36,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:36,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:36,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:36:36,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:36:36,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:37,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:37,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:37,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:37,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:36:37,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:36:37,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:38,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:38,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:38,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:38,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:36:38,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:36:38,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:40,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:40,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:40,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:40,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 15:36:40,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 15:36:40,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:40,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:40,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:40,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:41,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:36:41,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:36:41,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:42,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:42,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:42,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:42,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:36:42,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:36:42,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:45,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:45,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:45,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:45,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:36:45,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:36:45,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:48,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:48,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:48,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:48,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:36:48,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:36:48,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:49,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:49,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:49,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:49,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:36:49,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:36:49,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:51,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:51,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:51,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:52,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:36:52,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:36:52,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:55,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:55,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:55,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:55,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:36:55,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:36:55,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:56,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:56,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:56,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:56,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:36:56,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:36:56,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:56,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:56,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:56,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:56,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:36:56,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:36:56,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:36:59,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:36:59,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:36:59,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:36:59,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:36:59,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:36:59,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:00,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:00,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:01,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:01,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:37:01,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:37:01,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:01,495 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:01,530 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:01,610 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.238 +2025-10-01 15:37:01,610 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:37:01,610 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:37:02,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:02,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:02,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:03,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:37:03,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:37:03,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:04,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:04,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:04,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:04,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:37:04,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:37:04,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:05,210 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:05,240 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:05,317 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=171.688 +2025-10-01 15:37:05,317 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:37:05,317 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:37:05,734 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:05,757 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(751, 751, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:05,831 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.705 +2025-10-01 15:37:05,831 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:37:05,832 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:37:08,926 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:08,945 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:09,020 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.385 +2025-10-01 15:37:09,020 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:37:09,021 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:37:09,200 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:09,219 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:09,296 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=178.604 +2025-10-01 15:37:09,296 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:37:09,296 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:37:10,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:10,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:10,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:10,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:37:10,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:37:10,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:12,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:12,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:12,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:12,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:37:12,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:37:12,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:12,561 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:12,581 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:12,655 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.198 +2025-10-01 15:37:12,655 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:37:12,655 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:37:14,608 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:14,635 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:14,723 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.695 +2025-10-01 15:37:14,724 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:37:14,724 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:37:15,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:15,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:15,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:15,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:37:15,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:37:15,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:16,324 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:16,339 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:16,409 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.387 +2025-10-01 15:37:16,409 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 15:37:16,409 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 15:37:16,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:16,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:16,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:16,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-01 15:37:16,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-01 15:37:16,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:17,848 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:17,872 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:17,952 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.605 +2025-10-01 15:37:17,953 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:37:17,953 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 15:37:21,077 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:21,101 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:21,184 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.531 +2025-10-01 15:37:21,184 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:37:21,184 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:37:24,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:24,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:24,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:24,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:37:24,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:37:24,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:25,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:25,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:25,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:25,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:37:25,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:37:25,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:26,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:26,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:26,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:26,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:37:26,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:37:26,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:29,494 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:29,543 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:29,644 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.966 +2025-10-01 15:37:29,645 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 15:37:29,646 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 15:37:30,290 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:30,312 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:30,412 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.706 +2025-10-01 15:37:30,412 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:37:30,413 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 15:37:30,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:30,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:31,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:31,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:37:31,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:37:31,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:34,454 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:34,478 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:34,578 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.007 +2025-10-01 15:37:34,578 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:37:34,580 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 15:37:38,152 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:38,188 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:38,287 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=172.602 +2025-10-01 15:37:38,287 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 15:37:38,288 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 15:37:40,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:40,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:40,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:41,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:37:41,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:37:41,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:41,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:41,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:41,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:42,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:37:42,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:37:42,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:43,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:43,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:43,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:43,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:37:43,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:37:43,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:44,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:44,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:44,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:44,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:37:44,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:37:44,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:44,951 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:37:44,982 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:37:45,075 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.157 +2025-10-01 15:37:45,076 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 15:37:45,076 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 15:37:45,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:45,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:45,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:45,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:37:45,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:37:45,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:48,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:48,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:48,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:48,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:37:48,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:37:48,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:51,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:51,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:51,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:51,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:37:51,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:37:51,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:52,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:52,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:52,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:52,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:37:52,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:37:52,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:53,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:53,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:53,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:53,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:37:53,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:37:53,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:37:57,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:37:57,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:37:57,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:37:57,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:37:57,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:37:57,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:00,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:00,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:00,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:01,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:38:01,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:38:01,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:02,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:02,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:02,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:02,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:38:02,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:38:02,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:02,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:02,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:02,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:02,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:38:02,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:38:02,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:03,781 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:38:03,808 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:38:03,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.478 +2025-10-01 15:38:03,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:38:03,887 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:38:04,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:04,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:04,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:04,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:38:04,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:38:04,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:08,283 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:38:08,312 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:38:08,410 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.033 +2025-10-01 15:38:08,410 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 15:38:08,411 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 15:38:08,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:08,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:08,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:08,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:38:08,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:38:08,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:09,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:09,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:09,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:09,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:38:09,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:38:09,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:10,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:10,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:10,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:10,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:38:10,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:38:10,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:11,994 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:38:12,017 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:38:12,103 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.505 +2025-10-01 15:38:12,103 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 15:38:12,105 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 15:38:12,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:12,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:12,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:12,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:38:12,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:38:12,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:13,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:13,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:13,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:13,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:38:13,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:38:13,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:16,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:16,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:16,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:16,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:38:16,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:38:16,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:19,153 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:38:19,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:38:19,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:38:19,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.312s +2025-10-01 15:38:19,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.312s (avg: 0.156s/image) +2025-10-01 15:38:19,467 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:38:21,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:21,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:21,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:21,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:38:21,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:38:21,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:21,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:21,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:21,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:21,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:38:21,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:38:21,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:23,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:23,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:23,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:24,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:38:24,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:38:24,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:26,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:26,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:26,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:26,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:38:26,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:38:26,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:27,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:27,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:27,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:27,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:38:27,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:38:27,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:28,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:28,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:28,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:28,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:38:28,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:38:28,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:31,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:31,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:31,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:31,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:38:31,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:38:31,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:32,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:32,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:32,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:32,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:38:32,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:38:32,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:36,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:36,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:36,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:37,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:38:37,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:38:37,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:37,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:37,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:37,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:37,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:38:37,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:38:37,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:41,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:41,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:41,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:41,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:38:41,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:38:41,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:44,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:44,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:44,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:44,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:38:44,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:38:44,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:45,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:45,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:45,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:45,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:38:45,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:38:45,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:45,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:45,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:45,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:46,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:38:46,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:38:46,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:47,123 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:38:47,150 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:38:47,240 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.991 +2025-10-01 15:38:47,240 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:38:47,242 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:38:48,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:48,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:48,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:49,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:38:49,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:38:49,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:49,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:49,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:49,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:49,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:38:49,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:38:49,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:50,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:50,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:50,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:51,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:38:51,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:38:51,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:51,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:51,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:51,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:51,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:38:51,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:38:51,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:52,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:52,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:52,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:52,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:38:52,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:38:52,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:53,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:53,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:53,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:53,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:38:53,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:38:53,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:38:53,770 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:38:53,790 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:38:53,881 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.291 +2025-10-01 15:38:53,882 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:38:53,882 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:38:56,018 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:38:56,053 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:38:56,150 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.902 +2025-10-01 15:38:56,150 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 15:38:56,152 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 15:38:57,064 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:38:57,086 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:38:57,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.327 +2025-10-01 15:38:57,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 15:38:57,180 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 15:38:57,620 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:38:57,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:38:57,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:38:57,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 15:38:57,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 15:38:57,919 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:38:58,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:38:58,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:38:58,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:38:58,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:38:58,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:38:58,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:00,213 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:39:00,235 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:39:00,309 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.057 +2025-10-01 15:39:00,310 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:39:00,310 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:39:00,635 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:39:00,657 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:39:00,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.986 +2025-10-01 15:39:00,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:39:00,734 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:39:02,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:02,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:02,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:02,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:39:02,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:39:02,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:04,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:04,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:04,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:04,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:39:04,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:39:04,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:04,834 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:39:04,870 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:39:04,965 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.361 +2025-10-01 15:39:04,966 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 15:39:04,967 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:39:08,600 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:39:08,626 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:39:08,723 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.544 +2025-10-01 15:39:08,723 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 15:39:08,723 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:39:09,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:09,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:09,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:09,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 15:39:09,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 15:39:09,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:09,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:09,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:09,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:10,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:39:10,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:39:10,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:11,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:11,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:11,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:11,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:39:11,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:39:11,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:12,150 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:39:12,182 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:39:12,259 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.801 +2025-10-01 15:39:12,260 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:39:12,260 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:39:15,699 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:39:15,721 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:39:15,797 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.090 +2025-10-01 15:39:15,798 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:39:15,798 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:39:16,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:16,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:16,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:16,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:39:16,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:39:16,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:17,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:17,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:17,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:17,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:39:17,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:39:17,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:20,189 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:39:20,210 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:39:20,287 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.786 +2025-10-01 15:39:20,287 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:39:20,288 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:39:20,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:20,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:20,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:21,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:39:21,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:39:21,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:21,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:21,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:21,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:21,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:39:21,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:39:21,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:23,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:23,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:23,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:23,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:39:23,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:39:23,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:24,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:24,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:24,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:24,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:39:24,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:39:24,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:25,645 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:39:25,665 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:39:25,749 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.650 +2025-10-01 15:39:25,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:39:25,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:39:25,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:25,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:25,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:26,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:39:26,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:39:26,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:27,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:27,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:27,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:27,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:39:27,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:39:27,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:28,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:28,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:28,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:28,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:39:28,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:39:28,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:30,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:30,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:30,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:30,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:39:30,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:39:30,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:32,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:32,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:32,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:32,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:39:32,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:39:32,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:33,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:33,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:33,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:33,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:39:33,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:39:33,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:34,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:34,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:34,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:34,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:39:34,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:39:34,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:37,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:37,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:37,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:37,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:39:37,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:39:37,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:40,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:40,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:40,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:40,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:39:40,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:39:40,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:40,291 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:39:40,313 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:39:40,413 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.098 +2025-10-01 15:39:40,414 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:39:40,415 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 15:39:40,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:40,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:40,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:41,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:39:41,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:39:41,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:42,314 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:39:42,333 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:39:42,413 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.617 +2025-10-01 15:39:42,413 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:39:42,413 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:39:42,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:42,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:42,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:42,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:39:42,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:39:42,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:44,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:44,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:44,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:44,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:39:44,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:39:44,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:45,544 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:39:45,562 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:39:45,632 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.662 +2025-10-01 15:39:45,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 15:39:45,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 15:39:45,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:45,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:45,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:46,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:39:46,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:39:46,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:48,823 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:39:48,840 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(680, 680, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:39:48,909 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.819 +2025-10-01 15:39:48,910 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 15:39:48,910 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 15:39:49,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:49,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:49,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:49,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:39:49,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:39:49,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:51,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:51,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:51,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:51,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:39:51,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:39:51,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:52,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:52,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:52,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:52,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:39:52,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:39:52,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:55,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:55,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:56,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:56,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:39:56,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:39:56,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:39:58,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:39:58,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:39:58,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:39:59,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:39:59,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:39:59,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:01,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:01,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:01,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:01,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:40:01,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:40:01,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:05,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:05,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:05,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:06,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:40:06,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:40:06,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:09,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:09,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:09,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:09,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:40:09,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:40:09,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:10,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:10,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:10,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:11,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:40:11,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:40:11,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:11,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:11,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:11,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:11,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:40:11,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:40:11,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:17,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:17,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:17,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:17,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:40:17,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:40:17,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:17,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:17,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:17,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:17,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:40:17,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:40:17,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:18,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:18,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:18,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:18,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:40:18,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:40:18,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:19,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:19,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:19,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:19,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:40:19,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:40:19,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:22,553 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:40:22,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:40:22,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:40:22,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 15:40:22,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 15:40:22,849 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:40:28,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:28,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:28,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:28,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:40:28,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:40:28,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:32,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:32,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:32,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:33,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:40:33,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:40:33,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:33,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:33,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:33,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:33,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:40:33,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:40:33,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:35,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:35,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:35,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:35,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:40:35,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:40:35,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:35,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:35,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:35,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:35,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:40:35,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:40:35,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:39,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:39,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:39,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:39,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:40:39,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:40:39,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:40,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:40,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:40,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:40,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:40:40,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:40:40,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:42,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:42,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:42,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:42,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:40:42,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:40:42,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:44,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:44,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:44,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:44,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:40:44,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:40:44,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:45,292 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:40:45,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:40:45,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:40:45,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 15:40:45,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 15:40:45,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:40:46,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:46,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:46,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:46,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:40:46,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:40:46,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:47,857 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:40:47,891 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:40:47,989 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.337 +2025-10-01 15:40:47,989 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 15:40:47,990 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 15:40:49,532 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:40:49,558 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:40:49,652 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.450 +2025-10-01 15:40:49,653 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 15:40:49,653 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 15:40:50,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:50,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:50,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:50,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:40:50,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:40:50,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:51,077 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:40:51,095 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:40:51,172 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.518 +2025-10-01 15:40:51,172 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:40:51,173 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:40:51,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:51,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:51,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:51,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:40:51,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:40:51,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:51,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:51,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:51,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:51,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:40:51,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:40:51,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:52,061 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:40:52,088 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:40:52,166 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.951 +2025-10-01 15:40:52,166 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:40:52,166 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:40:55,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:55,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:55,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:55,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:40:55,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:40:55,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:55,268 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:40:55,295 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:40:55,374 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.350 +2025-10-01 15:40:55,374 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:40:55,374 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:40:55,575 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:40:55,596 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:40:55,671 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.171 +2025-10-01 15:40:55,671 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:40:55,671 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:40:56,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:56,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:56,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:56,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:40:56,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:40:56,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:58,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:58,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:58,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:58,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:40:58,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:40:58,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:40:59,088 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:40:59,123 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:40:59,204 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.975 +2025-10-01 15:40:59,204 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:40:59,204 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 15:40:59,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:40:59,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:40:59,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:40:59,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 15:40:59,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 15:40:59,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:03,202 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:41:03,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:41:03,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:41:03,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 15:41:03,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 15:41:03,490 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:41:05,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:05,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:05,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:05,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:41:05,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:41:05,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:06,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:06,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:06,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:06,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:41:06,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:41:06,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:06,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:06,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:07,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:07,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:41:07,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:41:07,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:07,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:07,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:07,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:07,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:41:07,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:41:07,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:08,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:08,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:08,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:09,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:41:09,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:41:09,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:10,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:10,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:10,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:10,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:41:10,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:41:10,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:11,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:11,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:11,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:11,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:41:11,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:41:11,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:12,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:12,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:12,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:12,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:41:12,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:41:12,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:12,980 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:41:12,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:41:13,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:41:13,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s +2025-10-01 15:41:13,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.323s (avg: 0.161s/image) +2025-10-01 15:41:13,305 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:41:13,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:13,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:13,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:14,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:41:14,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:41:14,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:16,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:16,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:16,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:16,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:41:16,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:41:16,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:16,781 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:41:16,829 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:41:16,918 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.185 +2025-10-01 15:41:16,919 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:41:16,920 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 15:41:17,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:17,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:17,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:17,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:41:17,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:41:17,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:19,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:19,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:20,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:20,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:41:20,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:41:20,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:21,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:21,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:21,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:21,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:41:21,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:41:21,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:22,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:22,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:22,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:22,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:41:22,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:41:22,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:25,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:25,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:25,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:25,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:41:25,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:41:25,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:25,562 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:41:25,587 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:41:25,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=156.547 +2025-10-01 15:41:25,676 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:41:25,676 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 15:41:26,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:26,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:26,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:27,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:41:27,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:41:27,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:29,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:29,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:29,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:29,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:41:29,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:41:29,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:30,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:30,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:30,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:30,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:41:30,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:41:30,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:31,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:31,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:32,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:32,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 15:41:32,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 15:41:32,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:32,533 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:41:32,559 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:41:32,630 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.259 +2025-10-01 15:41:32,630 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 15:41:32,630 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 15:41:33,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:33,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:33,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:33,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:41:33,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:41:33,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:35,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:35,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:35,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:35,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:41:35,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:41:35,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:37,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:37,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:37,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:37,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:41:37,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:41:37,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:39,647 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:41:39,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:41:39,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:41:39,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 15:41:39,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 15:41:39,925 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:41:40,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:40,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:40,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:40,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 15:41:40,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 15:41:40,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:40,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:40,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:40,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:41,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:41:41,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:41:41,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:41,411 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:41:41,435 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:41:41,517 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.842 +2025-10-01 15:41:41,517 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:41:41,517 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:41:41,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:41,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:41,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:41,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:41:41,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:41:41,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:41,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:41,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:41,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:42,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:41:42,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:41:42,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:45,355 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:41:45,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:41:45,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:41:45,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 15:41:45,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 15:41:45,663 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:41:45,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:45,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:46,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:46,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:41:46,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:41:46,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:46,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:46,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:46,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:46,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 15:41:46,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 15:41:46,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:46,431 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:41:46,447 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:41:46,522 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.992 +2025-10-01 15:41:46,522 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:41:46,522 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:41:46,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:46,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:46,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:46,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.124s +2025-10-01 15:41:46,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.124s (avg: 0.124s/image) +2025-10-01 15:41:46,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:49,130 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:41:49,153 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:41:49,230 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.933 +2025-10-01 15:41:49,231 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:41:49,231 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:41:49,739 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:41:49,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:41:49,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:41:50,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 15:41:50,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-01 15:41:50,048 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:41:50,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:41:50,811 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:41:50,887 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.356 +2025-10-01 15:41:50,887 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:41:50,887 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:41:51,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:51,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:51,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:51,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:41:51,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:41:51,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:51,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:51,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:51,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:52,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:41:52,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:41:52,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:53,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:53,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:53,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:53,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:41:53,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:41:53,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:54,058 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:41:54,077 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:41:54,153 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.429 +2025-10-01 15:41:54,154 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:41:54,154 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:41:54,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:54,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:54,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:55,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:41:55,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:41:55,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:58,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:58,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:58,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:58,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:41:58,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:41:58,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:41:59,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:41:59,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:41:59,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:41:59,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:41:59,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:41:59,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:00,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:00,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:00,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:00,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:42:00,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:42:00,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:00,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:00,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:00,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:00,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:42:00,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:42:00,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:03,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:03,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:03,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:03,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:42:03,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:42:03,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:03,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:03,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:03,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:03,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:42:03,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:42:03,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:06,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:06,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:06,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:06,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:42:06,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:42:06,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:08,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:08,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:08,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:08,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:42:08,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:42:08,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:10,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:10,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:10,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:10,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:42:10,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:42:10,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:11,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:11,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:11,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:11,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:42:11,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:42:11,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:11,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:11,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:11,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:11,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:42:11,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:42:11,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:12,265 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:42:12,291 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:42:12,369 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.827 +2025-10-01 15:42:12,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:42:12,371 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:42:14,910 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:42:14,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:42:14,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:42:15,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 15:42:15,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-01 15:42:15,217 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:42:15,284 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:42:15,304 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:42:15,391 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.085 +2025-10-01 15:42:15,391 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 15:42:15,392 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:42:17,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:17,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:17,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:17,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:42:17,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:42:17,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:18,774 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:42:18,798 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:42:18,888 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.896 +2025-10-01 15:42:18,889 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:42:18,890 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 15:42:19,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:19,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:19,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:19,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:42:19,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:42:19,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:20,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:20,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:20,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:20,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:42:20,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:42:20,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:21,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:21,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:21,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:21,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:42:21,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:42:21,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:22,069 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:42:22,099 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:42:22,205 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.051 +2025-10-01 15:42:22,206 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +2025-10-01 15:42:22,207 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-01 15:42:23,159 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:42:23,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:42:23,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:42:23,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 15:42:23,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 15:42:23,427 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:42:23,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:23,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:24,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:24,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:42:24,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:42:24,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:24,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:24,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:25,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:25,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:42:25,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:42:25,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:27,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:27,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:27,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:27,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:42:27,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:42:27,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:27,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:27,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:27,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:27,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:42:27,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:42:27,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:28,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:28,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:28,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:28,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:42:28,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:42:28,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:30,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:30,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:30,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:30,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:42:30,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:42:30,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:31,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:31,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:31,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:31,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:42:31,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:42:31,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:32,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:32,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:32,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:32,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:42:32,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:42:32,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:32,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:32,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:32,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:32,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:42:32,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:42:32,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:33,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:33,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:33,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:33,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:42:33,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:42:33,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:34,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:34,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:34,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:34,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:42:34,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:42:34,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:35,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:35,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:35,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:36,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:42:36,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:42:36,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:37,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:37,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:37,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:38,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:42:38,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:42:38,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:39,195 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:42:39,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:42:39,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:42:39,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 15:42:39,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 15:42:39,481 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:42:39,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:39,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:39,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:40,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:42:40,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:42:40,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:41,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:41,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:41,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:41,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:42:41,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:42:41,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:42,521 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:42:42,544 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:42:42,624 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=13.276 +2025-10-01 15:42:42,625 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:42:42,625 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 15:42:43,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:43,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:43,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:44,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:42:44,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:42:44,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:44,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:44,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:44,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:44,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:42:44,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:42:44,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:45,668 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:42:45,681 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:42:45,754 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.336 +2025-10-01 15:42:45,755 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:42:45,755 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:42:46,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:46,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:46,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:46,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:42:46,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:42:46,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:47,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:47,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:47,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:48,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +2025-10-01 15:42:48,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +2025-10-01 15:42:48,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:49,017 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:42:49,037 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:42:49,119 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.768 +2025-10-01 15:42:49,119 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:42:49,120 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:42:50,125 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:42:50,152 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:42:50,247 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.725 +2025-10-01 15:42:50,247 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 15:42:50,249 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:42:52,888 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:42:52,916 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:42:53,015 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.497 +2025-10-01 15:42:53,015 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 15:42:53,017 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 15:42:53,272 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:42:53,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:42:53,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:42:53,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 15:42:53,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 15:42:53,567 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:42:53,986 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:42:54,014 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:42:54,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.398 +2025-10-01 15:42:54,110 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 15:42:54,111 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:42:56,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:56,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:56,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:56,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:42:56,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:42:56,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:57,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:57,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:57,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:57,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:42:57,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:42:57,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:57,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:42:57,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:42:57,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:42:57,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:42:57,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:42:57,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:42:57,831 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:42:57,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:42:57,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:42:58,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 15:42:58,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 15:42:58,107 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:42:58,607 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:42:58,658 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:42:58,764 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.969 +2025-10-01 15:42:58,764 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s +2025-10-01 15:42:58,765 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-01 15:43:01,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:01,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:01,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:01,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:43:01,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:43:01,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:01,971 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:43:01,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:43:02,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:43:02,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 15:43:02,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 15:43:02,253 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:43:02,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:02,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:02,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:02,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:43:02,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:43:02,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:05,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:05,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:05,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:05,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:43:05,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:43:05,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:05,314 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:05,335 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:05,425 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.519 +2025-10-01 15:43:05,425 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:43:05,426 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 15:43:05,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:05,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:05,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:05,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:43:05,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:43:05,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:06,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:06,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:06,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:06,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:43:06,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:43:06,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:07,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:07,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:07,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:07,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:43:07,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:43:07,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:09,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:09,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:09,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:09,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:43:09,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:43:09,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:09,848 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:09,868 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:09,944 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.804 +2025-10-01 15:43:09,944 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:43:09,944 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:43:10,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:10,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:10,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:10,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:43:10,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:43:10,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:10,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:10,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:10,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:10,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:43:10,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:43:10,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:11,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:11,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:11,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:11,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:43:11,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:43:11,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:11,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:11,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:11,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:11,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:43:11,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:43:11,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:13,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:13,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:13,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:13,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:43:13,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:43:13,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:13,583 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:13,605 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:13,685 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.347 +2025-10-01 15:43:13,685 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:43:13,685 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:43:14,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:14,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:14,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:14,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:43:14,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:43:14,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:14,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:14,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:14,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:15,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:43:15,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:43:15,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:15,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:15,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:15,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:15,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:43:15,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:43:15,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:17,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:17,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:17,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:17,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:43:17,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:43:17,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:17,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:17,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:17,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:17,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:43:17,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:43:17,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:18,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:18,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:18,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:19,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:43:19,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:43:19,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:20,837 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:20,861 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:20,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.606 +2025-10-01 15:43:20,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 15:43:20,946 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 15:43:21,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:21,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:21,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:21,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:43:21,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:43:21,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:22,533 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:43:22,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:43:22,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:43:22,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-01 15:43:22,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-01 15:43:22,800 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:43:24,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:24,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:24,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:24,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:43:24,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:43:24,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:24,911 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:24,935 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:25,012 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.221 +2025-10-01 15:43:25,013 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:43:25,013 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:43:27,832 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:43:27,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:43:27,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:43:28,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 15:43:28,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 15:43:28,123 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:43:28,456 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:28,481 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:28,562 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.289 +2025-10-01 15:43:28,562 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:43:28,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 15:43:28,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:28,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:28,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:29,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:43:29,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:43:29,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:29,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:29,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:29,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:29,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:43:29,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:43:29,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:30,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:30,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:31,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:31,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:43:31,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:43:31,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:31,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:31,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:31,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:31,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:43:31,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:43:31,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:32,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:32,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:32,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:32,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:43:32,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:43:32,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:32,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:32,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:32,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:32,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:43:32,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:43:32,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:34,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:34,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:34,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:34,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 15:43:34,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 15:43:34,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:35,071 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:35,095 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:35,183 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.085 +2025-10-01 15:43:35,184 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:43:35,184 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:43:35,806 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:35,841 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:35,933 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.406 +2025-10-01 15:43:35,933 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:43:35,935 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 15:43:36,203 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:43:36,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:43:36,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:43:36,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-01 15:43:36,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-01 15:43:36,474 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:43:37,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:37,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:37,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:37,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:43:37,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:43:37,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:37,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:37,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:37,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:37,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:43:37,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:43:37,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:37,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:37,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:37,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:37,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:43:37,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:43:37,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:38,904 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:38,928 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:39,012 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.812 +2025-10-01 15:43:39,012 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:43:39,012 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:43:40,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:40,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:40,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:40,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:43:40,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:43:40,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:40,630 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:40,652 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:40,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.795 +2025-10-01 15:43:40,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:43:40,736 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:43:42,416 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:42,442 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:42,529 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.316 +2025-10-01 15:43:42,530 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:43:42,530 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 15:43:43,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:43,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:43,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:44,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:43:44,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:43:44,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:44,261 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:44,282 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(998, 748, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:44,360 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.721 +2025-10-01 15:43:44,360 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:43:44,360 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:43:46,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:46,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:46,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:46,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:43:46,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:43:46,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:48,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:48,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:48,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:48,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:43:48,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:43:48,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:48,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:48,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:48,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:48,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:43:48,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:43:48,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:48,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:48,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:48,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:48,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:43:48,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:43:48,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:51,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:51,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:51,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:51,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:43:51,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:43:51,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:52,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:52,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:52,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:52,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:43:52,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:43:52,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:53,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:53,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:53,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:53,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 15:43:53,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 15:43:53,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:53,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:53,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:53,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:53,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:43:53,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:43:53,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:54,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:54,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:54,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:55,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:43:55,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:43:55,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:56,790 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:43:56,813 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:43:56,899 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.406 +2025-10-01 15:43:56,899 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 15:43:56,900 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 15:43:57,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:57,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:57,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:57,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:43:57,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:43:57,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:43:58,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:43:58,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:43:58,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:43:58,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:43:58,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:43:58,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:00,239 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:44:00,262 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:44:00,345 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.664 +2025-10-01 15:44:00,346 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:44:00,346 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:44:03,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:03,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:03,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:04,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:44:04,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:44:04,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:04,273 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:44:04,295 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:44:04,368 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.867 +2025-10-01 15:44:04,369 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:44:04,369 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:44:05,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:05,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:05,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:05,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:44:05,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:44:05,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:08,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:08,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:08,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:08,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:44:08,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:44:08,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:09,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:09,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:09,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:09,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:44:09,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:44:09,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:09,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:09,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:09,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:09,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:44:09,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:44:09,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:10,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:10,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:10,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:10,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 15:44:10,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 15:44:10,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:12,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:12,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:12,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:12,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:44:12,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:44:12,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:12,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:12,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:12,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:12,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:44:12,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:44:12,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:13,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:13,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:13,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:14,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:44:14,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:44:14,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:18,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:18,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:18,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:18,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:44:18,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:44:18,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:18,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:18,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:19,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:19,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:44:19,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:44:19,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:20,339 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:44:20,362 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:44:20,441 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.294 +2025-10-01 15:44:20,442 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:44:20,443 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:44:20,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:20,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:20,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:21,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:44:21,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:44:21,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:21,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:21,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:21,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:21,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:44:21,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:44:21,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:24,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:24,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:24,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:24,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:44:24,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:44:24,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:24,392 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:44:24,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:44:24,516 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.664 +2025-10-01 15:44:24,516 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:44:24,517 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 15:44:24,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:24,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:24,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:24,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:44:24,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:44:24,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:27,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:27,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:27,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:27,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:44:27,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:44:27,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:28,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:28,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:28,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:28,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:44:28,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:44:28,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:28,324 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:44:28,348 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:44:28,446 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.444 +2025-10-01 15:44:28,446 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 15:44:28,447 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 15:44:28,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:28,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:28,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:28,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:44:28,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:44:28,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:28,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:28,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:28,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:29,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:44:29,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:44:29,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:29,982 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:44:30,002 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:44:30,094 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.782 +2025-10-01 15:44:30,094 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 15:44:30,094 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:44:30,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:30,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:30,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:30,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:44:30,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:44:30,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:31,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:31,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:31,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:31,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:44:31,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:44:31,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:33,757 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:44:33,787 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 770, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:44:33,876 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.165 +2025-10-01 15:44:33,876 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:44:33,877 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:44:34,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:34,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:34,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:34,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 15:44:34,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 15:44:34,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:35,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:35,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:35,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:35,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:44:35,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:44:35,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:37,379 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:44:37,394 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 769, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:44:37,487 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.873 +2025-10-01 15:44:37,487 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 15:44:37,489 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 15:44:37,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:37,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:37,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:37,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:44:37,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:44:37,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:37,689 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:44:37,707 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:44:37,781 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.230 +2025-10-01 15:44:37,782 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:44:37,782 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:44:39,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:39,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:39,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:39,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 15:44:39,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 15:44:39,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:41,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:41,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:41,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:41,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:44:41,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:44:41,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:46,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:46,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:46,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:46,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:44:46,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:44:46,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:49,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:49,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:49,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:49,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:44:49,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:44:49,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:50,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:50,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:50,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:50,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:44:50,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:44:50,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:50,974 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:44:50,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:44:51,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:44:51,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 15:44:51,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +2025-10-01 15:44:51,239 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:44:55,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:55,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:55,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:55,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:44:55,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:44:55,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:56,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:56,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:56,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:56,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:44:56,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:44:56,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:56,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:56,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:56,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:56,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:44:56,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:44:56,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:44:59,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:44:59,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:44:59,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:44:59,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:44:59,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:44:59,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:00,084 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:45:00,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:45:00,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:45:00,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +2025-10-01 15:45:00,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +2025-10-01 15:45:00,350 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:45:00,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:00,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:00,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:00,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:45:00,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:45:00,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:04,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:04,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:04,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:04,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:45:04,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:45:04,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:04,909 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:45:04,940 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:45:05,045 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.940 +2025-10-01 15:45:05,045 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 15:45:05,046 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 15:45:05,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:05,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:05,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:05,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:45:05,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:45:05,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:07,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:07,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:07,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:08,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:45:08,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:45:08,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:08,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:08,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:08,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:08,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:45:08,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:45:08,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:10,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:10,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:10,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:10,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:45:10,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:45:10,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:12,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:12,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:12,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:12,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:45:12,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:45:12,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:12,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:12,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:12,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:12,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:45:12,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:45:12,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:15,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:15,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:15,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:15,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:45:15,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:45:15,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:17,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:17,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:17,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:17,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:45:17,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:45:17,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:19,354 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:45:19,380 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:45:19,478 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.782 +2025-10-01 15:45:19,478 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 15:45:19,478 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 15:45:19,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:19,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:20,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:20,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:45:20,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:45:20,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:21,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:21,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:21,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:21,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:45:21,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:45:21,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:23,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:23,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:23,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:23,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:45:23,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:45:23,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:23,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:23,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:24,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:24,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:45:24,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:45:24,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:25,826 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:45:25,852 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:45:25,927 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=195.884 +2025-10-01 15:45:25,927 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:45:25,927 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:45:26,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:26,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:26,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:27,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:45:27,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:45:27,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:29,676 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:45:29,708 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:45:29,796 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.040 +2025-10-01 15:45:29,797 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:45:29,798 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:45:30,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:30,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:30,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:30,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:45:30,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:45:30,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:34,218 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:45:34,252 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:45:34,347 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.687 +2025-10-01 15:45:34,347 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 15:45:34,347 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 15:45:34,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:34,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:34,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:34,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:45:34,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:45:34,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:35,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:35,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:35,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:35,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:45:35,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:45:35,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:35,344 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:45:35,362 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:45:35,430 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.603 +2025-10-01 15:45:35,431 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 15:45:35,431 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 15:45:38,559 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:45:38,586 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:45:38,677 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.659 +2025-10-01 15:45:38,677 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:45:38,678 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 15:45:38,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:38,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:38,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:39,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:45:39,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:45:39,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:41,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:41,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:41,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:41,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:45:41,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:45:41,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:43,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:43,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:43,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:43,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:45:43,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:45:43,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:51,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:51,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:51,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:52,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:45:52,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:45:52,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:54,826 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:45:54,858 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:45:54,954 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.005 +2025-10-01 15:45:54,954 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 15:45:54,954 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 15:45:55,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:55,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:55,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:55,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:45:55,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:45:55,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:57,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:57,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:57,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:57,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:45:57,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:45:57,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:45:58,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:45:58,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:45:58,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:45:58,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:45:58,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:45:58,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:01,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:01,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:01,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:01,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 15:46:01,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 15:46:01,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:05,543 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:05,565 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:05,643 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.266 +2025-10-01 15:46:05,643 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:46:05,643 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:46:08,660 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:08,681 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:08,778 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.373 +2025-10-01 15:46:08,778 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 15:46:08,779 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 15:46:09,598 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:09,627 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:09,723 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.149 +2025-10-01 15:46:09,724 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 15:46:09,724 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:46:11,223 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:46:11,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:46:11,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:46:11,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 15:46:11,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 15:46:11,515 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:46:11,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:11,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:11,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:11,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:46:11,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:46:11,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:12,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:12,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:12,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:12,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:46:12,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:46:12,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:12,609 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:12,649 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:12,749 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.369 +2025-10-01 15:46:12,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 15:46:12,750 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 15:46:13,512 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:13,535 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:13,621 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.903 +2025-10-01 15:46:13,621 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 15:46:13,621 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 15:46:16,291 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:16,328 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:16,426 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.056 +2025-10-01 15:46:16,426 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 15:46:16,428 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 15:46:17,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:17,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:17,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:17,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:46:17,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:46:17,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:26,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:26,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:26,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:26,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:46:26,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:46:26,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:26,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:26,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:26,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:26,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:46:26,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:46:26,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:30,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:30,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:30,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:30,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:46:30,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:46:30,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:31,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:31,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:32,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:32,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:46:32,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:46:32,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:32,369 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:32,393 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:32,479 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.179 +2025-10-01 15:46:32,479 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 15:46:32,479 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 15:46:33,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:33,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:33,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:33,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:46:33,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:46:33,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:33,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:33,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:33,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:34,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:46:34,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:46:34,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:34,946 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:34,966 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:35,033 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.413 +2025-10-01 15:46:35,034 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 15:46:35,034 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s +2025-10-01 15:46:35,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:35,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:35,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:35,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:46:35,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:46:35,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:36,018 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:36,040 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:36,113 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=170.656 +2025-10-01 15:46:36,114 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:46:36,114 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:46:37,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:37,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:37,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:37,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:46:37,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:46:37,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:39,325 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:46:39,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:46:39,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:46:39,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 15:46:39,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 15:46:39,599 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:46:40,049 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:40,076 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:40,154 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.213 +2025-10-01 15:46:40,154 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:46:40,154 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:46:40,216 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:40,229 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:40,301 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.994 +2025-10-01 15:46:40,302 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:46:40,302 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:46:40,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:40,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:40,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:40,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:46:40,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:46:40,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:41,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:41,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:41,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:41,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:46:41,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:46:41,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:45,447 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:45,476 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:45,558 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.952 +2025-10-01 15:46:45,559 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:46:45,559 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:46:46,357 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:46:46,399 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:46:46,477 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=185.817 +2025-10-01 15:46:46,478 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:46:46,478 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:46:46,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:46,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:46,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:46,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:46:46,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:46:46,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:48,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:48,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:48,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:48,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:46:48,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:46:48,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:49,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:49,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:49,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:49,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 15:46:49,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 15:46:49,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:53,109 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:46:53,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:46:53,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:46:53,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.328s +2025-10-01 15:46:53,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.328s (avg: 0.164s/image) +2025-10-01 15:46:53,439 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:46:54,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:54,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:54,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:54,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:46:54,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:46:54,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:54,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:54,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:54,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:54,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:46:54,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:46:54,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:46:57,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:46:57,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:46:57,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:46:57,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:46:57,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:46:57,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:01,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:01,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:01,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:01,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:47:01,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:47:01,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:02,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:02,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:02,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:02,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 15:47:02,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 15:47:02,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:02,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:02,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:02,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:02,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:47:02,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:47:02,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:05,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:05,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:05,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:06,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:47:06,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:47:06,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:07,850 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:47:07,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:47:07,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:47:08,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 15:47:08,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-01 15:47:08,131 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:47:09,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:09,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:09,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:09,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:47:09,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:47:09,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:13,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:13,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:13,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:13,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.208s +2025-10-01 15:47:13,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.208s (avg: 0.208s/image) +2025-10-01 15:47:13,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:13,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:13,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:13,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:14,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:47:14,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:47:14,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:14,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:14,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:14,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:14,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:47:14,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:47:14,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:14,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:14,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:15,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:15,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:47:15,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:47:15,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:16,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:16,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:16,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:16,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:47:16,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:47:16,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:16,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:16,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:16,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:16,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:47:16,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:47:16,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:18,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:18,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:18,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:18,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:47:18,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:47:18,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:18,787 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:47:18,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:47:18,893 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.227 +2025-10-01 15:47:18,893 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:47:18,893 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 15:47:18,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:18,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:18,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:19,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:47:19,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:47:19,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:19,414 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:47:19,437 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:47:19,512 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.745 +2025-10-01 15:47:19,512 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:47:19,512 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:47:20,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:20,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:21,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:21,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:47:21,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:47:21,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:23,392 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:47:23,434 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:47:23,516 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.396 +2025-10-01 15:47:23,516 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:47:23,517 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:47:25,890 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:47:25,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:47:25,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:47:26,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.327s +2025-10-01 15:47:26,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.327s (avg: 0.164s/image) +2025-10-01 15:47:26,219 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:47:26,386 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:47:26,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:47:26,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:47:26,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.251s +2025-10-01 15:47:26,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.251s (avg: 0.126s/image) +2025-10-01 15:47:26,639 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:47:26,813 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:47:26,848 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:47:26,932 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.769 +2025-10-01 15:47:26,932 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:47:26,933 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 15:47:28,139 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:47:28,181 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:47:28,278 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=210.956 +2025-10-01 15:47:28,279 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 15:47:28,279 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 15:47:29,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:29,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:29,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:29,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:47:29,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:47:29,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:29,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:29,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:29,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:29,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:47:29,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:47:29,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:30,761 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:47:30,785 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:47:30,861 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=168.331 +2025-10-01 15:47:30,861 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:47:30,861 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:47:30,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:30,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:30,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:31,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:47:31,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:47:31,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:32,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:32,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:32,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:32,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:47:32,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:47:32,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:34,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:34,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:34,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:34,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:47:34,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:47:34,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:34,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:34,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:34,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:35,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:47:35,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:47:35,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:35,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:35,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:35,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:35,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:47:35,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:47:35,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:36,438 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:47:36,470 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:47:36,547 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.444 +2025-10-01 15:47:36,548 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:47:36,548 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:47:38,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:38,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:38,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:38,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:47:38,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:47:38,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:38,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:38,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:38,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:38,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:47:38,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:47:38,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:43,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:43,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:43,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:43,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:47:43,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:47:43,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:44,148 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:47:44,178 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:47:44,253 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.229 +2025-10-01 15:47:44,254 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:47:44,254 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:47:44,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:44,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:44,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:44,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:47:44,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:47:44,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:45,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:45,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:45,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:46,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:47:46,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:47:46,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:46,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:46,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:47,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:47,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:47:47,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:47:47,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:48,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:48,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:48,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:48,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:47:48,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:47:48,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:48,329 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:47:48,352 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:47:48,428 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.309 +2025-10-01 15:47:48,428 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:47:48,429 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:47:48,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:48,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:48,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:48,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 15:47:48,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 15:47:48,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:49,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:49,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:49,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:49,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:47:49,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:47:49,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:51,988 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:47:52,013 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:47:52,088 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.048 +2025-10-01 15:47:52,089 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:47:52,089 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:47:55,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:55,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:55,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:55,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:47:55,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:47:55,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:47:55,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:47:55,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:47:55,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:47:56,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:47:56,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:47:56,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:00,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:00,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:00,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:00,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:48:00,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:48:00,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:00,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:00,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:00,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:00,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:48:00,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:48:00,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:01,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:01,728 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:01,802 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.900 +2025-10-01 15:48:01,802 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:48:01,802 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:48:03,394 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:03,433 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:03,513 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.414 +2025-10-01 15:48:03,513 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:48:03,513 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:48:03,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:03,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:03,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:03,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:48:03,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:48:03,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:06,800 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:06,837 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:06,913 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.532 +2025-10-01 15:48:06,913 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:48:06,913 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:48:06,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:06,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:06,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:07,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:48:07,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:48:07,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:08,055 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:08,097 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:08,177 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.243 +2025-10-01 15:48:08,178 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:48:08,179 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:48:11,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:11,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:11,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:11,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:48:11,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:48:11,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:12,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:12,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:12,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:12,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:48:12,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:48:12,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:13,066 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:13,104 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:13,196 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.959 +2025-10-01 15:48:13,196 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 15:48:13,196 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:48:14,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:14,801 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:14,878 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.519 +2025-10-01 15:48:14,878 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:48:14,878 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:48:17,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:17,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:17,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:17,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:48:17,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:48:17,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:17,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:17,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:17,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:17,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:48:17,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:48:17,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:18,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:18,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:18,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:18,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 15:48:18,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 15:48:18,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:18,703 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:18,722 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:18,798 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=251.043 +2025-10-01 15:48:18,799 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:48:18,799 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:48:22,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:22,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:22,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:22,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:48:22,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:48:22,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:23,234 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:23,256 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:23,330 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=216.696 +2025-10-01 15:48:23,330 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:48:23,331 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:48:23,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:23,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:23,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:23,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:48:23,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:48:23,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:30,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:30,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:30,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:30,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:48:30,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:48:30,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:31,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:31,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:31,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:31,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:48:31,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:48:31,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:32,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:32,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:32,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:32,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:48:32,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:48:32,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:34,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:34,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:34,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:34,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:48:34,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:48:34,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:39,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:39,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:39,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:39,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:48:39,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:48:39,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:39,474 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:39,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:39,611 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.660 +2025-10-01 15:48:39,611 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 15:48:39,613 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 15:48:42,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:42,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:42,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:42,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 15:48:42,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 15:48:42,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:42,261 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:42,283 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:42,371 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.323 +2025-10-01 15:48:42,372 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:48:42,373 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:48:43,874 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:43,909 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:44,013 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.259 +2025-10-01 15:48:44,013 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 15:48:44,014 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 15:48:44,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:44,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:44,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:44,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 15:48:44,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 15:48:44,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:45,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:45,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:45,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:45,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:48:45,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:48:45,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:45,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:45,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:45,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:46,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:48:46,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:48:46,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:46,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:46,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:46,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:46,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:48:46,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:48:46,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:47,548 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:47,580 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:47,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=219.035 +2025-10-01 15:48:47,668 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:48:47,669 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:48:48,074 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:48,107 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:48,211 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=204.555 +2025-10-01 15:48:48,211 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 15:48:48,212 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 15:48:50,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:50,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:50,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:50,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:48:50,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:48:50,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:52,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:52,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:52,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:52,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 15:48:52,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 15:48:52,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:52,278 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:52,307 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:52,411 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.173 +2025-10-01 15:48:52,411 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 15:48:52,412 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 15:48:53,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:53,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:53,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:53,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:48:53,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:48:53,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:55,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:55,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:55,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:55,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:48:55,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:48:55,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:55,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:55,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:55,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:55,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 15:48:55,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 15:48:55,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:48:56,990 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:48:57,004 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:48:57,073 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.841 +2025-10-01 15:48:57,073 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 15:48:57,074 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 15:48:57,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:48:57,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:48:57,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:48:57,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:48:57,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:48:57,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:00,457 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:49:00,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:49:00,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:49:00,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 15:49:00,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 15:49:00,749 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:49:01,051 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:49:01,069 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:49:01,140 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.666 +2025-10-01 15:49:01,141 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 15:49:01,141 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 15:49:01,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:01,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:01,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:01,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:49:01,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:49:01,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:04,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:04,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:04,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:04,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:49:04,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:49:04,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:04,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:04,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:04,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:04,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:49:04,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:49:04,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:05,625 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:49:05,655 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:49:05,737 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.990 +2025-10-01 15:49:05,737 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:49:05,737 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:49:06,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:06,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:06,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:06,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:49:06,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:49:06,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:07,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:07,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:07,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:07,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:49:07,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:49:07,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:07,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:07,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:08,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:08,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:49:08,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:49:08,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:09,114 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:49:09,148 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:49:09,224 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.188 +2025-10-01 15:49:09,224 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:49:09,224 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:49:09,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:09,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:09,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:10,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:49:10,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:49:10,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:11,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:11,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:11,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:11,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:49:11,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:49:11,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:11,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:11,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:11,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:11,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:49:11,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:49:11,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:12,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:12,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:12,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:12,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:49:12,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:49:12,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:12,533 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:49:12,565 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:49:12,644 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.362 +2025-10-01 15:49:12,644 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:49:12,644 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:49:14,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:14,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:14,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:14,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:49:14,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:49:14,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:15,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:15,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:15,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:15,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:49:15,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:49:15,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:15,973 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:49:15,995 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:49:16,070 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.239 +2025-10-01 15:49:16,070 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:49:16,070 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:49:16,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:16,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:16,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:16,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:49:16,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:49:16,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:17,531 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:49:17,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:49:17,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:49:17,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-01 15:49:17,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +2025-10-01 15:49:17,853 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:49:19,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:19,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:19,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:19,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:49:19,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:49:19,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:20,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:20,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:20,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:20,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:49:20,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:49:20,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:20,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:20,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:20,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:21,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:49:21,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:49:21,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:22,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:22,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:22,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:22,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:49:22,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:49:22,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:22,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:22,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:22,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:22,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:49:22,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:49:22,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:23,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:23,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:23,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:23,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:49:23,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:49:23,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:24,104 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:49:24,127 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:49:24,210 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.575 +2025-10-01 15:49:24,210 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:49:24,210 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:49:26,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:26,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:26,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:26,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:49:26,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:49:26,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:27,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:27,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:27,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:27,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:49:27,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:49:27,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:27,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:27,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:27,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:28,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:49:28,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:49:28,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:29,152 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:49:29,178 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:49:29,256 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=219.845 +2025-10-01 15:49:29,256 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:49:29,256 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:49:29,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:29,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:29,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:29,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:49:29,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:49:29,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:31,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:31,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:31,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:31,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:49:31,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:49:31,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:32,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:32,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:32,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:32,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:49:32,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:49:32,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:33,617 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:49:33,641 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:49:33,721 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.213 +2025-10-01 15:49:33,722 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:49:33,722 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 15:49:35,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:35,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:35,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:35,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:49:35,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:49:35,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:38,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:38,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:38,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:38,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:49:38,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:49:38,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:41,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:41,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:41,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:41,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:49:41,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:49:41,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:43,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:43,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:43,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:43,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:49:43,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:49:43,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:44,447 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:49:44,471 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:49:44,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.893 +2025-10-01 15:49:44,550 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:49:44,550 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:49:46,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:46,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:46,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:46,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:49:46,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:49:46,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:50,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:50,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:50,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:51,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:49:51,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:49:51,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:57,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:57,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:57,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:57,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:49:57,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:49:57,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:49:59,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:49:59,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:49:59,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:49:59,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:49:59,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:49:59,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:02,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:02,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:02,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:02,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:50:02,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:50:02,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:03,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:03,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:03,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:03,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 15:50:03,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 15:50:03,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:04,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:04,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:04,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:04,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:50:04,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:50:04,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:05,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:05,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:06,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:06,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:50:06,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:50:06,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:08,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:08,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:08,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:08,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:50:08,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:50:08,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:08,600 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:50:08,618 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:50:08,692 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.376 +2025-10-01 15:50:08,692 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:50:08,692 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:50:08,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:08,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:08,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:08,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:50:08,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:50:08,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:10,098 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:50:10,122 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:50:10,196 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.787 +2025-10-01 15:50:10,196 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:50:10,196 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:50:11,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:11,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:11,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:11,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 15:50:11,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 15:50:11,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:13,416 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:50:13,437 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:50:13,509 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.059 +2025-10-01 15:50:13,509 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 15:50:13,509 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:50:13,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:13,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:14,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:14,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:50:14,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:50:14,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:16,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:16,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:16,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:16,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:50:16,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:50:16,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:17,074 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:50:17,096 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:50:17,168 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.783 +2025-10-01 15:50:17,168 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 15:50:17,169 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:50:18,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:18,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:18,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:18,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:50:18,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:50:18,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:18,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:18,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:19,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:19,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:50:19,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:50:19,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:24,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:24,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:24,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:24,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:50:24,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:50:24,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:25,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:25,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:25,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:25,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:50:25,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:50:25,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:26,589 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:50:26,618 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:50:26,691 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.091 +2025-10-01 15:50:26,691 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:50:26,691 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:50:29,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:29,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:29,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:29,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:50:29,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:50:29,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:32,051 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:50:32,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:50:32,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:50:32,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 15:50:32,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 15:50:32,344 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:50:32,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:32,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:32,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:32,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:50:32,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:50:32,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:32,885 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:50:32,908 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:50:32,987 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.081 +2025-10-01 15:50:32,987 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:50:32,987 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:50:34,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:34,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:34,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:34,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:50:34,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:50:34,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:35,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:35,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:35,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:35,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:50:35,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:50:35,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:36,287 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:50:36,309 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:50:36,380 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.539 +2025-10-01 15:50:36,381 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 15:50:36,381 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 15:50:37,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:38,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:38,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:38,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:50:38,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:50:38,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:39,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:39,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:39,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:39,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:50:39,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:50:39,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:39,836 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:50:39,858 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:50:39,929 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.786 +2025-10-01 15:50:39,930 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 15:50:39,930 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 15:50:40,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:40,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:40,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:40,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:50:40,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:50:40,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:41,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:41,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:41,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:41,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:50:41,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:50:41,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:46,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:46,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:46,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:46,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:50:46,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:50:46,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:46,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:46,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:46,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:46,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:50:46,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:50:46,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:47,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:47,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:47,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:47,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:50:47,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:50:47,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:47,313 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:50:47,334 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:50:47,409 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.101 +2025-10-01 15:50:47,409 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:50:47,410 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:50:47,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:47,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:47,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:47,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:50:47,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:50:47,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:48,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:48,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:48,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:48,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 15:50:48,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 15:50:48,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:50,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:50,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:50,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:50,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:50:50,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:50:50,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:50,713 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:50:50,740 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:50:50,816 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.719 +2025-10-01 15:50:50,816 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:50:50,816 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:50:51,458 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:50:51,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:50:51,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:50:51,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.312s +2025-10-01 15:50:51,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.312s (avg: 0.156s/image) +2025-10-01 15:50:51,771 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:50:54,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:54,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:54,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:54,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:50:54,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:50:54,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:54,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:54,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:54,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:54,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:50:54,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:50:54,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:54,666 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:50:54,679 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:50:54,752 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.811 +2025-10-01 15:50:54,752 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:50:54,752 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:50:54,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:54,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:54,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:54,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:50:54,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:50:54,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:55,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:55,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:55,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:55,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-01 15:50:55,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-01 15:50:55,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:50:55,577 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:50:55,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:50:55,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:50:55,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-01 15:50:55,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.130s/image) +2025-10-01 15:50:55,839 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:50:56,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:50:56,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:50:56,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:50:57,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:50:57,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:50:57,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:00,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:00,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:00,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:00,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:51:00,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:51:00,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:01,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:01,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:01,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:01,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 15:51:01,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 15:51:01,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:01,631 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:51:01,675 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:51:01,788 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.327 +2025-10-01 15:51:01,788 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.112s +2025-10-01 15:51:01,790 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.115s +2025-10-01 15:51:02,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:02,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:02,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:02,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:51:02,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:51:02,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:05,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:05,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:05,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:05,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:51:05,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:51:05,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:05,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:05,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:05,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:05,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:51:05,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:51:05,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:06,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:06,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:06,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:06,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 15:51:06,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 15:51:06,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:10,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:10,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:10,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:11,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:51:11,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:51:11,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:11,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:11,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:11,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:11,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:51:11,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:51:11,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:13,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:13,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:13,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:13,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 15:51:13,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 15:51:13,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:14,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:14,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:14,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:14,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:51:14,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:51:14,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:18,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:18,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:18,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:18,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:51:18,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:51:18,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:20,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:20,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:20,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:20,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:51:20,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:51:20,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:24,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:24,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:24,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:24,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:51:24,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:51:24,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:25,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:25,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:25,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:25,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:51:25,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:51:25,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:26,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:26,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:26,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:26,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:51:26,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:51:26,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:28,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:28,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:28,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:28,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:51:28,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:51:28,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:28,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:28,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:29,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:29,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:51:29,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:51:29,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:30,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:30,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:30,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:30,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:51:30,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:51:30,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:32,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:32,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:32,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:32,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:51:32,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:51:32,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:34,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:34,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:34,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:34,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:51:34,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:51:34,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:35,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:35,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:35,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:35,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:51:35,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:51:35,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:37,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:37,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:37,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:37,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:51:37,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:51:37,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:39,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:39,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:39,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:39,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:51:39,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:51:39,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:41,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:41,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:41,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:41,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:51:41,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:51:41,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:44,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:44,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:44,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:45,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 15:51:45,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 15:51:45,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:45,712 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:51:45,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:51:45,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:51:46,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 15:51:46,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 15:51:46,013 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:51:46,500 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:51:46,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:51:46,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:51:46,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 15:51:46,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 15:51:46,784 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:51:47,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:47,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:47,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:47,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:51:47,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:51:47,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:47,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:47,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:47,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:48,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:51:48,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:51:48,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:49,921 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:51:49,954 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:51:50,040 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.296 +2025-10-01 15:51:50,040 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 15:51:50,040 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 15:51:51,361 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:51:51,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:51:51,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:51:51,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 15:51:51,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 15:51:51,673 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:51:51,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:51,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:51,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:52,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:51:52,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:51:52,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:52,379 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:51:52,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:51:52,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:51:52,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 15:51:52,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 15:51:52,656 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:51:55,669 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:51:55,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:51:55,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:51:55,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 15:51:55,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 15:51:55,948 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:51:56,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:56,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:56,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:56,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:51:56,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:51:56,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:56,784 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:51:56,814 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:51:56,903 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.711 +2025-10-01 15:51:56,903 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:51:56,903 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:51:57,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:51:57,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:51:57,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:51:57,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:51:57,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:51:57,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:51:58,137 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:51:58,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:51:58,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:51:58,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 15:51:58,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 15:51:58,425 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:52:00,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:00,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:00,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:01,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 15:52:01,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 15:52:01,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:01,141 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:01,168 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:01,249 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.565 +2025-10-01 15:52:01,249 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:52:01,251 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:52:02,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:02,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:02,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:02,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:52:02,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:52:02,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:02,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:02,900 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:02,992 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.310 +2025-10-01 15:52:02,992 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 15:52:02,992 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 15:52:03,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:03,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:03,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:03,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:52:03,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:52:03,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:03,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:03,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:03,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:03,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:52:03,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:52:03,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:04,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:04,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:04,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:04,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:52:04,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:52:04,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:06,010 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:52:06,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:52:06,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:52:06,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 15:52:06,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 15:52:06,319 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:52:07,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:07,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:07,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:07,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:52:07,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:52:07,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:08,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:08,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:08,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:08,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:52:08,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:52:08,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:11,251 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:52:11,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:52:11,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:52:11,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 15:52:11,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 15:52:11,539 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:52:11,581 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:11,601 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:11,690 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.589 +2025-10-01 15:52:11,691 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:52:11,692 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 15:52:11,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:11,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:11,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:12,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 15:52:12,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 15:52:12,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:13,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:13,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:13,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:13,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:52:13,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:52:13,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:13,665 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:13,684 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:13,774 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.717 +2025-10-01 15:52:13,774 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:52:13,774 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:52:14,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:14,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:14,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:14,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:52:14,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:52:14,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:14,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:14,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:14,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:14,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 15:52:14,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 15:52:14,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:15,449 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:15,470 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:15,550 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.660 +2025-10-01 15:52:15,550 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:52:15,550 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:52:15,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:15,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:15,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:16,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:52:16,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:52:16,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:17,403 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:17,424 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:17,500 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.632 +2025-10-01 15:52:17,500 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:52:17,500 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:52:17,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:17,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:17,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:17,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:52:17,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:52:17,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:18,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:18,549 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:18,635 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.350 +2025-10-01 15:52:18,636 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 15:52:18,637 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 15:52:18,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:18,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:18,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:18,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-01 15:52:18,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-01 15:52:18,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:19,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:19,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:19,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:19,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:52:19,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:52:19,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:19,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:19,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:19,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:19,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:52:19,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:52:19,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:20,815 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:20,837 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:20,926 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.528 +2025-10-01 15:52:20,926 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:52:20,926 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:52:21,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:21,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:21,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:22,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:52:22,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:52:22,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:23,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:23,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:23,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:23,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:52:23,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:52:23,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:25,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:25,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:25,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:25,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:52:25,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:52:25,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:26,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:26,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:26,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:26,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 15:52:26,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 15:52:26,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:27,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:27,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:27,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:27,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:52:27,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:52:27,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:29,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:29,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:29,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:29,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:52:29,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:52:29,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:32,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:32,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:32,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:32,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:52:32,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:52:32,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:32,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:32,723 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:32,797 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.883 +2025-10-01 15:52:32,798 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:52:32,798 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:52:36,140 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:36,164 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:36,238 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.928 +2025-10-01 15:52:36,238 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:52:36,238 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:52:36,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:36,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:36,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:36,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:52:36,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:52:36,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:38,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:38,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:38,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:38,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:52:38,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:52:38,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:39,283 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:39,306 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:39,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.375 +2025-10-01 15:52:39,379 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:52:39,379 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:52:39,719 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:39,747 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:39,822 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.832 +2025-10-01 15:52:39,822 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:52:39,822 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:52:42,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:42,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:42,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:43,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:52:43,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:52:43,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:43,183 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:43,202 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:43,273 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.224 +2025-10-01 15:52:43,273 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 15:52:43,273 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 15:52:45,004 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:45,027 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:45,102 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=172.114 +2025-10-01 15:52:45,102 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:52:45,102 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:52:48,242 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:48,272 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:48,354 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.280 +2025-10-01 15:52:48,354 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:52:48,355 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:52:49,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:49,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:49,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:49,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 15:52:49,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 15:52:49,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:49,616 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:49,631 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(764, 801, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:49,703 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.633 +2025-10-01 15:52:49,704 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:52:49,704 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:52:50,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:50,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:50,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:50,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:52:50,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:52:50,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:50,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:50,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:50,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:51,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:52:51,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:52:51,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:52,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:52,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:52,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:52,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:52:52,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:52:52,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:53,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:53,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:53,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:53,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:52:53,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:52:53,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:53,768 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:52:53,796 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 971, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:52:53,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.765 +2025-10-01 15:52:53,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:52:53,887 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 15:52:55,463 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:52:55,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:52:55,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:52:55,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 15:52:55,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-01 15:52:55,744 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:52:56,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:56,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:56,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:56,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:52:56,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:52:56,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:52:57,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:52:57,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:52:57,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:52:57,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:52:57,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:52:57,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:01,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:01,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:01,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:01,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:53:01,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:53:01,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:01,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:01,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:01,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:01,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:53:01,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:53:01,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:02,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:02,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:02,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:02,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:53:02,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:53:02,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:04,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:04,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:04,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:04,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:53:04,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:53:04,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:04,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:04,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:04,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:05,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:53:05,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:53:05,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:05,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:05,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:05,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:05,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:53:05,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:53:05,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:05,749 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:53:05,780 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:53:05,867 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.989 +2025-10-01 15:53:05,868 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:53:05,868 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 15:53:06,327 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:53:06,359 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:53:06,438 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.486 +2025-10-01 15:53:06,438 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:53:06,440 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:53:06,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:06,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:07,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:07,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s +2025-10-01 15:53:07,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image) +2025-10-01 15:53:07,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:07,394 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:53:07,416 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:53:07,498 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.828 +2025-10-01 15:53:07,498 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:53:07,499 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:53:09,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:09,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:09,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:09,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:53:09,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:53:09,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:10,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:10,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:10,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:10,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:53:10,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:53:10,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:10,899 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:53:10,928 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:53:11,008 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.091 +2025-10-01 15:53:11,009 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:53:11,009 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 15:53:11,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:11,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:11,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:11,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:53:11,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:53:11,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:14,183 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:53:14,204 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:53:14,281 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.423 +2025-10-01 15:53:14,282 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:53:14,282 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:53:16,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:16,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:16,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:16,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 15:53:16,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 15:53:16,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:17,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:17,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:17,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:17,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:53:17,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:53:17,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:18,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:18,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:18,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:18,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:53:18,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:53:18,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:18,775 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:53:18,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:53:18,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:53:19,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 15:53:19,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 15:53:19,070 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:53:22,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:22,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:22,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:22,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:53:22,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:53:22,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:22,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:22,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:22,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:23,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:53:23,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:53:23,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:23,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:23,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:23,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:23,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:53:23,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:53:23,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:25,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:25,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:25,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:25,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:53:25,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:53:25,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:25,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:25,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:26,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:26,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:53:26,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:53:26,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:26,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:26,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:26,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:26,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:53:26,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:53:26,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:26,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:26,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:26,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:27,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:53:27,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:53:27,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:29,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:29,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:29,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:29,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:53:29,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:53:29,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:30,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:30,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:30,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:30,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:53:30,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:53:30,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:32,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:32,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:32,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:32,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:53:32,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:53:32,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:32,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:32,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:32,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:33,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:53:33,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:53:33,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:34,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:34,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:34,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:35,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:53:35,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:53:35,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:35,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:35,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:35,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:35,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:53:35,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:53:35,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:36,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:36,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:36,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:36,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:53:36,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:53:36,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:36,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:36,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:36,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:37,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:53:37,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:53:37,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:38,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:38,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:38,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:38,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:53:38,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:53:38,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:39,566 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:53:39,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:53:39,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:53:39,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 15:53:39,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 15:53:39,848 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:53:40,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:40,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:40,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:40,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:53:40,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:53:40,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:41,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:41,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:41,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:41,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:53:41,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:53:41,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:44,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:44,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:44,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:44,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:53:44,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:53:44,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:46,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:46,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:46,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:46,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:53:46,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:53:46,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:46,497 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 15:53:46,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 15:53:46,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 15:53:46,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.385s +2025-10-01 15:53:46,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.385s (avg: 0.128s/image) +2025-10-01 15:53:46,884 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 15:53:47,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:47,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:47,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:47,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:53:47,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:53:47,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:49,972 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:53:50,016 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:53:50,107 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.468 +2025-10-01 15:53:50,108 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:53:50,109 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 15:53:51,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:51,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:51,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:51,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:53:51,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:53:51,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:52,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:52,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:52,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:52,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:53:52,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:53:52,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:53,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:53,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:53,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:53,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:53:53,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:53:53,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:53,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:53,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:53,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:53,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:53:53,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:53:53,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:54,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:54,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:54,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:54,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:53:54,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:53:54,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:54,992 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:53:55,020 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:53:55,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.338 +2025-10-01 15:53:55,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:53:55,109 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:53:55,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:55,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:55,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:55,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:53:55,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:53:55,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:56,194 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:53:56,234 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:53:56,325 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=193.235 +2025-10-01 15:53:56,326 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 15:53:56,327 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 15:53:56,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:56,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:56,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:56,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:53:56,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:53:56,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:53:57,394 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:53:57,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:53:57,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:53:57,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 15:53:57,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 15:53:57,686 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:53:59,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:53:59,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:53:59,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:53:59,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:53:59,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:53:59,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:00,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:00,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:00,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:00,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:54:00,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:54:00,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:00,777 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:54:00,799 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:54:00,880 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.243 +2025-10-01 15:54:00,881 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:54:00,881 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:54:02,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:02,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:02,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:02,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:54:02,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:54:02,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:04,177 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:54:04,237 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:54:04,332 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=191.136 +2025-10-01 15:54:04,332 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 15:54:04,334 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:54:04,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:04,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:04,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:04,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 15:54:04,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 15:54:04,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:05,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:05,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:05,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:05,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:54:05,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:54:05,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:06,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:06,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:06,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:07,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:54:07,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:54:07,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:07,255 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:54:07,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:54:07,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:54:07,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 15:54:07,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-01 15:54:07,527 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:54:08,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:08,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:08,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:08,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:54:08,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:54:08,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:08,553 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:54:08,570 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:54:08,650 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.296 +2025-10-01 15:54:08,650 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:54:08,650 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:54:09,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:09,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:09,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:09,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:54:09,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:54:09,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:11,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:11,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:11,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:11,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:54:11,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:54:11,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:12,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:12,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:12,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:12,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 15:54:12,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 15:54:12,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:12,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:12,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:12,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:13,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:54:13,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:54:13,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:13,086 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:54:13,101 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:54:13,178 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.620 +2025-10-01 15:54:13,178 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:54:13,178 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:54:13,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:13,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:13,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:13,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:54:13,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:54:13,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:14,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:14,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:14,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:14,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:54:14,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:54:14,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:16,475 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:54:16,501 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:54:16,582 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.675 +2025-10-01 15:54:16,582 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:54:16,582 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 15:54:17,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:17,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:17,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:17,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:54:17,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:54:17,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:19,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:19,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:19,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:19,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:54:19,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:54:19,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:23,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:23,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:23,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:23,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:54:23,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:54:23,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:25,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:25,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:25,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:25,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:54:25,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:54:25,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:28,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:28,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:28,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:28,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:54:28,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:54:28,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:29,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:29,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:29,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:29,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:54:29,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:54:29,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:31,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:31,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:31,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:31,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 15:54:31,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 15:54:31,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:32,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:32,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:32,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:32,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:54:32,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:54:32,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:35,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:35,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:35,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:35,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:54:35,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:54:35,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:36,456 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:54:36,480 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:54:36,563 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.017 +2025-10-01 15:54:36,563 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:54:36,563 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:54:38,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:38,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:38,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:38,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:54:38,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:54:38,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:43,523 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:54:43,550 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:54:43,629 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.230 +2025-10-01 15:54:43,630 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:54:43,630 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:54:43,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:43,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:43,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:43,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:54:43,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:54:43,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:44,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:44,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:44,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:44,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:54:44,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:54:44,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:45,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:45,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:45,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:45,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:54:45,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:54:45,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:46,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:46,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:46,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:46,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:54:46,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:54:46,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:47,000 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:54:47,029 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:54:47,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.280 +2025-10-01 15:54:47,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:54:47,109 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:54:49,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:49,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:49,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:49,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:54:49,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:54:49,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:50,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:50,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:50,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:50,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:54:50,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:54:50,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:50,805 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:54:50,833 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:54:50,909 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.876 +2025-10-01 15:54:50,909 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 15:54:50,909 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:54:51,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:51,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:51,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:51,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:54:51,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:54:51,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:51,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:51,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:51,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:52,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:54:52,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:54:52,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:53,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:53,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:53,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:53,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:54:53,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:54:53,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:54,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:54,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:54,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:54,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:54:54,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:54:54,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:57,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:57,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:57,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:57,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:54:57,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:54:57,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:54:58,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:54:58,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:54:58,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:54:58,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:54:58,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:54:58,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:03,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:03,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:03,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:03,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:55:03,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:55:03,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:05,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:05,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:05,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:05,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:55:05,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:55:05,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:06,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:06,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:06,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:06,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:55:06,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:55:06,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:08,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:08,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:08,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:08,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:55:08,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:55:08,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:09,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:09,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:09,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:09,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:55:09,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:55:09,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:13,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:13,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:13,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:13,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:55:13,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:55:13,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:14,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:14,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:14,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:15,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:55:15,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:55:15,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:15,392 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:55:15,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(816, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:55:15,488 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.352 +2025-10-01 15:55:15,489 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:55:15,489 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:55:18,633 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:55:18,658 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:55:18,737 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.649 +2025-10-01 15:55:18,737 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:55:18,738 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:55:20,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:20,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:20,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:20,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:55:20,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:55:20,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:21,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:21,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:21,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:21,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:55:21,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:55:21,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:22,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:22,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:22,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:22,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 15:55:22,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 15:55:22,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:22,470 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:55:22,502 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 876, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:55:22,586 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.182 +2025-10-01 15:55:22,586 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 15:55:22,588 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 15:55:22,615 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:55:22,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(612, 618, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:55:22,696 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.471 +2025-10-01 15:55:22,697 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 15:55:22,697 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 15:55:23,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:23,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:23,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:23,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:55:23,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:55:23,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:24,213 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:55:24,255 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:55:24,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.037 +2025-10-01 15:55:24,336 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:55:24,336 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:55:24,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:24,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:24,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:24,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:55:24,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:55:24,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:27,045 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:55:27,069 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(928, 928, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:55:27,156 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.444 +2025-10-01 15:55:27,157 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 15:55:27,158 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:55:27,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:27,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:27,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:27,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:55:27,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:55:27,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:28,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:28,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:28,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:28,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:55:28,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:55:28,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:28,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:28,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:28,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:28,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:55:28,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:55:28,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:31,464 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:55:31,483 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:55:31,562 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.808 +2025-10-01 15:55:31,563 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:55:31,563 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:55:31,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:31,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:31,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:31,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:55:31,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:55:31,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:33,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:33,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:33,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:33,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:55:33,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:55:33,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:34,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:34,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:34,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:34,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:55:34,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:55:34,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:35,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:35,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:35,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:35,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:55:35,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:55:35,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:36,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:36,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:36,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:36,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:55:36,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:55:36,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:36,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:36,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:36,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:36,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:55:36,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:55:36,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:37,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:37,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:37,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:37,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:55:37,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:55:37,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:38,648 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:55:38,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:55:38,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:55:38,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +2025-10-01 15:55:38,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.319s (avg: 0.159s/image) +2025-10-01 15:55:38,968 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:55:39,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:39,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:39,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:39,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:55:39,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:55:39,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:39,562 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:55:39,579 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:55:39,648 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.206 +2025-10-01 15:55:39,649 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 15:55:39,649 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 15:55:39,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:39,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:39,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:39,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 15:55:39,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 15:55:39,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:40,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:40,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:40,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:40,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 15:55:40,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 15:55:40,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:42,341 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:55:42,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:55:42,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:55:42,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 15:55:42,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 15:55:42,625 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:55:43,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:43,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:43,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:43,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:55:43,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:55:43,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:43,389 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:55:43,405 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:55:43,479 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.514 +2025-10-01 15:55:43,479 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:55:43,479 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:55:43,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:43,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:43,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:43,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:55:43,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:55:43,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:46,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:46,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:46,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:46,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:55:46,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:55:46,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:46,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:46,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:46,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:46,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:55:46,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:55:46,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:46,861 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:55:46,887 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:55:46,960 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.727 +2025-10-01 15:55:46,961 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:55:46,961 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:55:48,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:48,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:48,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:49,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 15:55:49,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 15:55:49,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:50,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:50,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:50,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:50,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:55:50,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:55:50,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:51,611 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:55:51,655 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:55:51,742 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=214.620 +2025-10-01 15:55:51,742 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 15:55:51,743 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:55:55,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:55,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:55,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:55,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:55:55,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:55:55,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:56,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:56,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:56,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:56,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:55:56,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:55:56,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:57,507 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:55:57,551 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:55:57,651 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=202.802 +2025-10-01 15:55:57,651 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 15:55:57,651 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 15:55:58,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:58,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:58,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:58,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 15:55:58,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 15:55:58,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:55:59,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:55:59,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:55:59,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:55:59,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:55:59,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:55:59,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:00,514 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:56:00,541 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:56:00,620 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.469 +2025-10-01 15:56:00,620 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:56:00,620 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:56:01,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:01,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:01,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:01,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:56:01,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:56:01,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:03,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:03,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:03,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:03,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 15:56:03,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 15:56:03,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:03,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:03,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:04,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:04,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 15:56:04,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 15:56:04,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:04,135 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:56:04,173 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:56:04,261 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=235.230 +2025-10-01 15:56:04,261 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:56:04,263 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:56:04,506 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:56:04,528 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:56:04,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.814 +2025-10-01 15:56:04,604 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:56:04,604 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:56:05,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:05,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:05,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:05,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:56:05,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:56:05,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:07,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:07,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:07,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:07,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:56:07,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:56:07,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:07,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:07,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:07,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:07,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:56:07,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:56:07,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:08,112 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:56:08,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:56:08,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:56:08,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 15:56:08,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 15:56:08,390 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:56:08,587 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:56:08,605 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:56:08,677 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=189.584 +2025-10-01 15:56:08,678 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 15:56:08,678 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:56:09,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:09,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:09,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:09,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:56:09,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:56:09,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:10,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:10,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:10,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:10,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:56:10,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:56:10,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:11,377 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:56:11,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:56:11,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:56:11,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-01 15:56:11,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-01 15:56:11,645 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:56:12,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:12,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:12,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:12,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:56:12,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:56:12,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:14,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:14,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:14,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:14,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:56:14,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:56:14,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:14,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:14,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:14,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:14,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:56:14,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:56:14,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:15,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:15,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:15,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:15,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:56:15,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:56:15,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:15,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:15,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:15,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:15,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:56:15,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:56:15,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:16,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:16,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:16,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:16,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:56:16,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:56:16,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:18,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:18,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:18,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:18,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:56:18,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:56:18,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:19,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:19,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:19,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:19,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:56:19,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:56:19,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:20,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:20,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:20,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:20,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:56:20,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:56:20,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:21,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:21,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:21,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:21,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:56:21,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:56:21,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:22,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:22,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:22,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:22,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:56:22,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:56:22,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:25,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:25,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:25,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:25,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:56:25,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:56:25,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:25,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:25,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:25,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:25,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:56:25,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:56:25,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:26,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:26,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:26,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:26,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 15:56:26,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 15:56:26,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:26,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:26,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:26,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:26,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 15:56:26,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 15:56:26,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:27,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:27,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:27,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:27,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:56:27,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:56:27,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:29,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:29,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:29,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:30,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:56:30,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:56:30,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:30,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:30,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:30,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:30,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:56:30,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:56:30,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:31,994 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:56:31,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:56:32,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:56:32,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 15:56:32,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 15:56:32,292 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:56:35,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:35,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:35,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:35,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:56:35,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:56:35,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:37,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:37,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:37,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:38,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:56:38,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:56:38,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:38,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:38,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:38,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:38,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 15:56:38,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 15:56:38,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:39,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:39,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:39,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:39,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:56:39,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:56:39,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:41,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:41,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:41,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:41,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:56:41,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:56:41,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:46,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:46,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:46,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:46,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:56:46,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:56:46,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:46,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:46,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:46,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:46,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:56:46,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:56:46,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:47,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:47,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:47,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:47,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:56:47,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:56:47,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:48,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:48,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:48,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:48,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:56:48,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:56:48,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:48,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:48,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:48,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:48,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:56:48,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:56:48,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:50,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:50,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:50,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:50,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 15:56:50,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 15:56:50,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:51,807 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:56:51,845 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:56:51,927 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.444 +2025-10-01 15:56:51,928 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 15:56:51,929 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 15:56:52,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:52,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:52,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:52,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:56:52,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:56:52,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:53,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:53,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:53,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:53,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:56:53,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:56:53,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:54,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:54,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:54,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:54,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:56:54,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:56:54,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:54,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:54,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:54,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:54,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:56:54,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:56:54,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:56,286 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:56:56,322 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:56:56,410 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.370 +2025-10-01 15:56:56,411 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 15:56:56,411 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:56:56,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:56,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:56,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:57,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:56:57,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:56:57,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:58,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:58,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:58,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:58,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:56:58,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:56:58,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:56:59,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:56:59,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:56:59,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:56:59,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:56:59,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:56:59,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:00,180 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:57:00,203 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:57:00,276 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.993 +2025-10-01 15:57:00,276 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:57:00,276 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:57:00,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:00,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:01,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:01,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:57:01,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:57:01,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:01,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:01,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:01,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:02,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 15:57:02,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 15:57:02,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:02,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:02,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:02,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:02,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 15:57:02,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 15:57:02,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:03,656 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:57:03,681 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:57:03,760 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.057 +2025-10-01 15:57:03,760 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:57:03,760 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:57:04,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:04,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:04,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:04,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:57:04,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:57:04,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:04,298 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:57:04,318 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:57:04,392 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.693 +2025-10-01 15:57:04,393 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:57:04,393 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:57:05,084 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:57:05,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:57:05,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:57:05,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 15:57:05,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 15:57:05,366 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:57:05,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:05,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:05,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:05,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:57:05,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:57:05,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:06,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:06,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:06,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:06,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:57:06,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:57:06,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:07,882 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:57:07,909 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:57:07,986 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=175.219 +2025-10-01 15:57:07,986 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:57:07,987 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:57:08,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:08,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:08,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:08,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:57:08,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:57:08,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:09,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:09,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:09,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:09,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:57:09,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:57:09,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:09,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:09,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:10,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:10,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:57:10,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:57:10,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:12,199 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:57:12,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:57:12,299 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.239 +2025-10-01 15:57:12,300 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 15:57:12,300 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:57:12,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:12,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:12,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:12,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 15:57:12,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 15:57:12,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:13,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:13,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:13,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:13,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:57:13,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:57:13,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:14,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:14,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:14,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:14,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:57:14,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:57:14,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:15,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:15,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:15,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:15,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:57:15,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:57:15,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:16,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:16,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:16,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:16,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:57:16,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:57:16,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:18,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:18,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:18,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:18,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:57:18,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:57:18,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:18,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:18,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:18,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:18,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:57:18,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:57:18,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:20,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:20,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:20,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:20,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:57:20,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:57:20,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:22,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:22,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:22,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:22,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 15:57:22,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 15:57:22,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:23,122 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:57:23,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:57:23,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:57:23,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 15:57:23,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 15:57:23,406 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:57:25,781 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:57:25,802 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:57:25,877 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.752 +2025-10-01 15:57:25,877 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:57:25,877 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:57:27,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:27,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:27,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:27,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:57:27,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:57:27,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:27,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:27,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:27,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:27,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:57:27,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:57:27,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:29,041 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:57:29,064 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:57:29,137 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.495 +2025-10-01 15:57:29,137 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:57:29,137 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:57:31,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:31,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:31,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:32,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:57:32,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:57:32,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:32,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:32,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:32,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:32,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:57:32,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:57:32,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:32,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:32,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:32,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:32,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:57:32,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:57:32,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:32,858 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:57:32,877 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:57:32,945 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.818 +2025-10-01 15:57:32,945 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 15:57:32,945 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 15:57:36,087 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:57:36,111 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:57:36,187 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.295 +2025-10-01 15:57:36,188 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:57:36,188 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 15:57:37,886 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:57:37,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:57:37,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:57:38,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 15:57:38,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 15:57:38,162 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:57:38,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:38,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:38,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:38,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:57:38,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:57:38,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:38,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:38,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:38,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:38,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:57:38,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:57:38,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:39,453 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:57:39,475 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:57:39,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.500 +2025-10-01 15:57:39,549 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:57:39,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:57:41,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:41,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:41,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:41,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:57:41,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:57:41,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:42,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:42,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:42,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:42,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:57:42,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:57:42,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:42,789 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:57:42,812 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:57:42,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.821 +2025-10-01 15:57:42,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:57:42,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:57:44,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:44,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:44,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:44,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:57:44,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:57:44,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:47,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:47,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:47,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:48,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:57:48,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:57:48,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:48,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:48,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:48,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:48,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 15:57:48,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 15:57:48,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:48,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:48,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:48,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:48,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:57:48,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:57:48,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:50,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:50,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:50,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:50,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:57:50,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:57:50,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:52,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:52,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:52,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:52,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:57:52,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:57:52,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:54,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:54,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:54,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:54,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 15:57:54,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 15:57:54,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:56,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:56,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:56,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:57:56,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:57:56,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:57:56,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:57:56,975 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:57:57,019 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:57:57,112 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.432 +2025-10-01 15:57:57,112 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 15:57:57,113 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 15:57:58,644 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:57:58,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:57:58,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:57:58,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 15:57:58,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 15:57:58,919 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:57:59,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:57:59,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:57:59,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:00,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:58:00,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:58:00,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:02,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:02,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:02,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:02,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 15:58:02,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 15:58:02,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:03,367 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:03,385 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:03,482 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.406 +2025-10-01 15:58:03,482 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 15:58:03,484 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 15:58:03,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:03,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:03,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:03,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:58:03,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:58:03,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:04,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:04,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:05,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:05,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:58:05,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:58:05,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:06,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:06,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:06,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:06,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:58:06,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:58:06,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:07,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:07,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:07,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:08,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 15:58:08,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 15:58:08,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:08,448 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:08,477 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:08,577 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.209 +2025-10-01 15:58:08,577 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 15:58:08,578 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 15:58:09,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:09,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:09,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:09,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 15:58:09,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 15:58:09,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:11,560 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:58:11,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:58:11,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:58:11,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.324s +2025-10-01 15:58:11,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.324s (avg: 0.162s/image) +2025-10-01 15:58:11,884 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:58:12,174 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:12,207 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:12,301 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.532 +2025-10-01 15:58:12,301 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 15:58:12,302 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 15:58:14,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:14,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:14,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:14,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 15:58:14,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 15:58:14,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:16,619 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:16,659 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:16,754 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.532 +2025-10-01 15:58:16,755 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 15:58:16,756 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 15:58:17,409 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:17,434 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:17,514 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.497 +2025-10-01 15:58:17,514 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 15:58:17,514 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 15:58:17,534 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:17,558 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:17,636 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.448 +2025-10-01 15:58:17,636 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 15:58:17,636 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 15:58:17,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:17,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:17,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:17,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:58:17,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:58:17,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:18,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:18,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:18,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:18,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:58:18,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:58:18,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:18,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:18,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:18,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:19,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:58:19,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:58:19,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:19,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:19,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:19,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:19,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:58:19,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:58:19,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:19,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:19,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:19,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:19,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 15:58:19,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 15:58:19,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:20,161 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:20,190 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:20,277 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.096 +2025-10-01 15:58:20,277 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 15:58:20,279 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:58:22,022 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:22,040 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:22,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.928 +2025-10-01 15:58:22,122 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 15:58:22,122 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 15:58:22,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:22,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:22,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:22,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 15:58:22,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 15:58:22,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:23,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:23,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:23,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:23,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 15:58:23,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 15:58:23,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:25,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:25,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:25,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:25,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:58:25,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:58:25,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:25,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:25,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:25,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:25,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:58:25,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:58:25,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:26,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:26,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:26,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:26,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:58:26,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:58:26,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:26,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:26,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:26,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:26,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 15:58:26,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 15:58:26,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:28,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:28,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:28,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:29,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:58:29,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:58:29,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:30,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:30,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:30,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:30,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:58:30,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:58:30,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:30,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:30,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:30,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:30,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:58:30,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:58:30,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:31,310 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:58:31,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:58:31,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:58:31,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-01 15:58:31,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-01 15:58:31,573 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:58:34,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:34,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:34,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:34,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:58:34,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:58:34,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:37,439 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:58:37,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:58:37,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:58:37,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 15:58:37,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 15:58:37,723 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:58:38,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:38,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:38,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:38,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 15:58:38,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 15:58:38,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:39,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:39,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:39,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:39,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:58:39,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:58:39,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:40,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:40,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:40,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:40,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:58:40,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:58:40,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:41,288 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:41,317 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:41,402 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.107 +2025-10-01 15:58:41,402 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 15:58:41,404 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 15:58:44,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:44,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:44,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:44,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:58:44,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:58:44,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:44,770 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:44,803 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:44,895 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.499 +2025-10-01 15:58:44,896 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 15:58:44,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 15:58:45,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:45,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:45,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:45,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:58:45,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:58:45,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:47,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:47,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:47,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:47,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:58:47,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:58:47,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:48,331 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:48,368 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:48,456 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.256 +2025-10-01 15:58:48,456 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 15:58:48,457 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 15:58:50,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:50,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:50,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:50,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:58:50,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:58:50,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:50,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:50,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:50,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:50,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:58:50,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:58:50,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:53,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:53,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:53,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:53,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:58:53,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:58:53,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:53,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:53,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:53,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:53,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:58:53,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:58:53,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:55,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:55,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:55,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:55,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:58:55,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:58:55,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:55,745 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:55,770 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:55,860 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.598 +2025-10-01 15:58:55,860 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 15:58:55,860 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 15:58:56,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:56,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:56,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:56,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:58:56,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:58:56,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:57,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:57,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:57,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:57,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:58:57,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:58:57,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:57,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:57,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:57,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:58:58,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:58:58,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:58:58,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:58:59,435 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:58:59,463 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:58:59,539 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.646 +2025-10-01 15:58:59,539 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:58:59,539 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 15:58:59,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:58:59,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:58:59,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:00,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 15:59:00,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 15:59:00,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:00,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:00,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:00,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:00,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:59:00,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:59:00,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:02,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:02,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:02,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:02,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:59:02,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:59:02,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:03,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:03,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:03,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:03,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 15:59:03,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 15:59:03,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:03,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:03,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:03,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:03,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:59:03,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:59:03,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:03,815 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:59:03,837 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:59:03,911 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.170 +2025-10-01 15:59:03,911 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:59:03,911 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:59:04,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:59:04,079 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:59:04,153 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.645 +2025-10-01 15:59:04,153 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 15:59:04,153 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 15:59:04,188 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:59:04,208 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:59:04,280 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.360 +2025-10-01 15:59:04,280 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 15:59:04,280 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 15:59:04,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:04,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:04,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:04,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:59:04,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:59:04,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:05,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:05,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:05,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:05,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:59:05,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:59:05,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:06,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:06,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:06,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:06,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 15:59:06,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 15:59:06,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:06,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:06,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:06,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:06,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 15:59:06,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 15:59:06,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:07,600 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:59:07,626 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:59:07,703 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.569 +2025-10-01 15:59:07,704 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 15:59:07,704 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 15:59:07,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:07,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:07,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:08,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:59:08,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:59:08,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:08,118 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:59:08,137 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:59:08,209 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.669 +2025-10-01 15:59:08,209 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 15:59:08,209 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 15:59:08,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:08,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:08,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:08,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 15:59:08,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 15:59:08,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:11,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:11,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:11,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:11,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:59:11,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:59:11,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:11,494 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:59:11,518 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:59:11,592 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.069 +2025-10-01 15:59:11,593 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:59:11,593 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:59:11,750 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:59:11,769 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:59:11,844 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.855 +2025-10-01 15:59:11,844 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 15:59:11,845 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 15:59:12,194 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:12,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:12,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:59:12,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.256s +2025-10-01 15:59:12,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.256s (avg: 0.128s/image) +2025-10-01 15:59:12,452 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:59:12,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:12,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:12,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:12,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 15:59:12,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 15:59:12,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:14,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:14,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:14,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:14,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 15:59:14,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 15:59:14,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:16,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:16,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:16,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:16,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:59:16,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:59:16,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:16,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:16,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:16,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:16,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 15:59:16,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 15:59:16,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:17,111 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:17,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:17,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:59:17,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 15:59:17,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 15:59:17,390 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:59:18,079 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:18,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:18,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:59:18,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +2025-10-01 15:59:18,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +2025-10-01 15:59:18,345 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:59:20,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:20,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:20,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:21,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 15:59:21,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 15:59:21,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:21,507 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:21,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:21,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:59:21,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 15:59:21,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 15:59:21,783 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:59:22,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:22,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:22,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:22,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:59:22,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:59:22,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:22,821 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:22,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:22,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:59:23,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 15:59:23,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-01 15:59:23,124 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:59:23,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:23,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:23,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:23,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:59:23,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:59:23,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:25,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:25,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:25,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:26,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 15:59:26,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 15:59:26,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:27,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:27,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:27,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:27,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 15:59:27,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 15:59:27,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:28,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:28,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:28,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:28,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:59:28,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:59:28,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:29,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:29,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:29,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:29,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:59:29,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:59:29,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:32,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:32,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:32,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:32,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 15:59:32,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 15:59:32,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:32,700 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:32,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:32,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:59:32,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 15:59:32,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 15:59:32,992 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:59:33,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:33,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:33,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:33,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-01 15:59:33,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-01 15:59:33,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:33,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:33,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:33,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:34,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 15:59:34,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 15:59:34,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:34,646 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:34,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:34,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:59:34,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 15:59:34,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 15:59:34,939 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:59:37,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:37,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:37,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:37,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 15:59:37,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 15:59:37,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:37,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:37,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:37,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:38,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 15:59:38,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 15:59:38,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:38,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:38,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:38,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:38,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 15:59:38,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 15:59:38,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:38,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:38,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:38,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:38,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 15:59:38,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 15:59:38,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:39,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:39,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:40,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:40,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 15:59:40,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 15:59:40,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:42,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:42,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:42,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:42,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 15:59:42,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 15:59:42,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:42,397 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:42,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:42,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:59:42,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 15:59:42,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 15:59:42,693 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:59:42,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:42,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:42,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:43,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 15:59:43,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 15:59:43,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:44,007 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:44,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:44,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:59:44,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 15:59:44,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 15:59:44,285 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:59:44,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:44,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:44,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:44,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 15:59:44,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 15:59:44,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:45,044 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 15:59:45,080 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 15:59:45,162 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.594 +2025-10-01 15:59:45,163 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 15:59:45,163 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 15:59:46,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:46,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:46,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:46,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 15:59:46,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 15:59:46,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:47,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:47,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:47,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:47,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:59:47,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:59:47,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:48,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:48,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:48,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:48,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 15:59:48,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 15:59:48,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:48,772 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:48,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:48,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:59:49,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 15:59:49,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-01 15:59:49,041 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:59:50,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:50,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:50,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:50,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 15:59:50,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 15:59:50,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:52,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:52,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:52,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:52,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 15:59:52,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 15:59:52,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:53,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:53,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:54,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:54,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 15:59:54,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 15:59:54,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:54,526 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:54,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:54,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:59:54,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-01 15:59:54,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-01 15:59:54,795 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:59:55,353 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:55,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:55,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 15:59:55,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 15:59:55,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 15:59:55,634 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 15:59:57,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 15:59:57,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 15:59:57,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 15:59:57,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 15:59:57,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 15:59:57,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 15:59:59,873 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 15:59:59,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 15:59:59,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:00:00,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 16:00:00,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 16:00:00,151 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:00:01,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:01,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:02,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:02,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:00:02,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:00:02,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:02,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:02,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:02,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:02,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 16:00:02,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 16:00:02,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:03,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:03,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:03,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:04,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:00:04,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:00:04,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:04,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:04,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:04,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:04,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:00:04,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:00:04,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:05,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:05,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:05,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:05,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:00:05,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:00:05,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:06,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:06,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:06,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:06,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:00:06,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:00:06,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:08,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:08,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:08,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:08,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:00:08,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:00:08,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:09,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:09,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:09,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:09,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:00:09,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:00:09,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:12,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:12,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:12,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:12,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:00:12,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:00:12,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:12,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:12,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:12,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:12,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:00:12,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:00:12,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:15,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:15,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:15,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:16,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:00:16,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:00:16,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:16,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:16,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:16,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:16,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:00:16,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:00:16,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:18,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:18,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:18,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:18,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:00:18,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:00:18,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:21,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:21,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:21,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:21,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:00:21,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:00:21,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:22,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:22,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:22,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:22,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:00:22,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:00:22,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:25,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:25,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:25,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:26,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:00:26,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:00:26,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:28,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:28,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:28,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:28,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:00:28,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:00:28,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:31,707 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:00:31,726 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:00:31,801 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.811 +2025-10-01 16:00:31,801 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:00:31,801 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:00:35,160 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:00:35,189 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:00:35,269 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.568 +2025-10-01 16:00:35,269 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:00:35,269 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:00:35,672 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:00:35,699 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:00:35,773 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.504 +2025-10-01 16:00:35,774 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:00:35,774 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:00:36,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:36,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:36,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:36,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:00:36,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:00:36,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:38,300 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:00:38,322 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:00:38,399 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.587 +2025-10-01 16:00:38,400 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:00:38,400 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:00:39,219 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:00:39,255 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:00:39,332 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=183.735 +2025-10-01 16:00:39,332 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:00:39,333 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:00:42,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:42,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:42,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:42,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:00:42,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:00:42,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:43,842 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:00:43,870 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:00:43,943 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.240 +2025-10-01 16:00:43,943 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:00:43,943 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:00:44,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:44,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:44,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:44,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:00:44,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:00:44,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:47,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:47,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:47,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:47,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:00:47,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:00:47,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:49,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:49,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:49,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:49,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:00:49,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:00:49,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:59,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:59,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:00:59,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:00:59,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:00:59,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:00:59,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:00:59,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:00:59,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:00,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:00,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:01:00,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:01:00,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:00,808 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:00,835 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:00,913 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.874 +2025-10-01 16:01:00,913 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:01:00,915 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:01:04,331 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:04,362 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:04,452 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.724 +2025-10-01 16:01:04,452 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:01:04,453 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:01:04,932 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:04,959 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:05,049 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.135 +2025-10-01 16:01:05,049 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:01:05,050 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:01:05,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:05,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:05,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:06,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:01:06,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:01:06,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:06,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:06,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:06,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:06,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:01:06,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:01:06,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:09,018 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:09,040 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:09,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.639 +2025-10-01 16:01:09,122 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:01:09,122 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:01:09,146 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:09,172 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:09,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.392 +2025-10-01 16:01:09,251 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:01:09,251 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:01:09,416 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:09,442 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:09,519 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.533 +2025-10-01 16:01:09,519 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:01:09,519 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:01:10,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:10,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:10,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:10,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:01:10,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:01:10,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:12,509 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:12,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:12,607 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.859 +2025-10-01 16:01:12,607 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:01:12,607 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:01:12,867 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:12,893 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:12,970 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.593 +2025-10-01 16:01:12,970 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:01:12,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:01:14,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:14,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:14,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:14,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:01:14,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:01:14,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:15,539 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:15,562 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:15,636 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.525 +2025-10-01 16:01:15,636 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:01:15,636 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:01:16,483 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:16,515 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:16,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=191.589 +2025-10-01 16:01:16,595 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:01:16,595 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:01:18,226 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:18,251 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(796, 796, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:18,327 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.902 +2025-10-01 16:01:18,327 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:01:18,327 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:01:19,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:19,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:19,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:19,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:01:19,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:01:19,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:19,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:19,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:19,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:19,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:01:19,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:01:19,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:20,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:20,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:20,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:20,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:01:20,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:01:20,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:24,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:24,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:24,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:24,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:01:24,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:01:24,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:26,091 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:26,113 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:26,191 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.825 +2025-10-01 16:01:26,191 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:01:26,191 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:01:26,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:26,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:26,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:26,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:01:26,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:01:26,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:27,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:27,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:27,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:27,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:01:27,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:01:27,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:28,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:28,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:28,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:28,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:01:28,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:01:28,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:28,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:28,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:28,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:28,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:01:28,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:01:28,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:29,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:29,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:29,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:29,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:01:29,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:01:29,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:30,230 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:30,253 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:30,334 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.051 +2025-10-01 16:01:30,334 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:01:30,334 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:01:32,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:32,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:32,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:32,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:01:32,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:01:32,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:34,019 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:34,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:34,130 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.540 +2025-10-01 16:01:34,130 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:01:34,130 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:01:35,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:35,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:35,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:35,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:01:35,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:01:35,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:35,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:35,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:36,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:36,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 16:01:36,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 16:01:36,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:36,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:36,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:36,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:36,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:01:36,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:01:36,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:37,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:37,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:37,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:37,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:01:37,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:01:37,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:39,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:39,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:39,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:39,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:01:39,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:01:39,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:40,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:40,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:40,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:40,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:01:40,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:01:40,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:42,607 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:01:42,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:01:42,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:01:42,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 16:01:42,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 16:01:42,877 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:01:44,213 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:01:44,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:01:44,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:01:44,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 16:01:44,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 16:01:44,514 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:01:45,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:45,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:45,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:45,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:01:45,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:01:45,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:45,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:45,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:45,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:45,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:01:45,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:01:45,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:45,987 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:46,017 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:46,098 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.634 +2025-10-01 16:01:46,098 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:01:46,100 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:01:46,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:46,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:46,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:46,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:01:46,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:01:46,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:46,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:46,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:46,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:46,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:01:46,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:01:46,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:47,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:47,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:47,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:47,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:01:47,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:01:47,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:50,672 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:50,714 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:50,811 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.538 +2025-10-01 16:01:50,811 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 16:01:50,812 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 16:01:51,526 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:51,543 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(751, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:51,628 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.521 +2025-10-01 16:01:51,628 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:01:51,628 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:01:51,825 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:01:51,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:01:51,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:01:52,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.312s +2025-10-01 16:01:52,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.312s (avg: 0.156s/image) +2025-10-01 16:01:52,139 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:01:52,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:52,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:52,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:52,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:01:52,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:01:52,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:53,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:53,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:53,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:54,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:01:54,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:01:54,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:54,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:54,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:54,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:54,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:01:54,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:01:54,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:54,861 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:01:54,889 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:01:54,966 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.473 +2025-10-01 16:01:54,967 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:01:54,967 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:01:55,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:55,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:55,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:55,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:01:55,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:01:55,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:56,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:56,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:56,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:57,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:01:57,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:01:57,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:57,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:57,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:57,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:57,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:01:57,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:01:57,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:01:57,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:01:57,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:01:57,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:01:58,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:01:58,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:01:58,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:01,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:01,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:01,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:01,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:02:01,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:02:01,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:02,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:02,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:02,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:02,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:02:02,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:02:02,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:04,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:04,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:04,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:04,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:02:04,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:02:04,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:06,022 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:02:06,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:02:06,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:02:06,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 16:02:06,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 16:02:06,321 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:02:06,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:06,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:06,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:06,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:02:06,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:02:06,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:08,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:08,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:09,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:09,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.217s +2025-10-01 16:02:09,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.217s (avg: 0.217s/image) +2025-10-01 16:02:09,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:09,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:09,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:09,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:09,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:02:09,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:02:09,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:10,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:10,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:10,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:10,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:02:10,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:02:10,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:11,193 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:02:11,218 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:02:11,302 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.898 +2025-10-01 16:02:11,302 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:02:11,302 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:02:11,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:11,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:11,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:11,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:02:11,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:02:11,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:13,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:13,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:13,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:13,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:02:13,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:02:13,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:14,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:14,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:14,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:14,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:02:14,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:02:14,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:14,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:14,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:15,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:15,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:02:15,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:02:15,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:17,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:02:17,102 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:02:17,177 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.060 +2025-10-01 16:02:17,177 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:02:17,177 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:02:17,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:17,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:17,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:17,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:02:17,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:02:17,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:18,866 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:02:18,895 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:02:18,979 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.043 +2025-10-01 16:02:18,979 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:02:18,981 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:02:20,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:20,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:20,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:20,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:02:20,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:02:20,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:21,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:21,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:21,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:21,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:02:21,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:02:21,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:22,098 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:02:22,123 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:02:22,207 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.594 +2025-10-01 16:02:22,208 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:02:22,208 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:02:23,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:23,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:23,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:23,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:02:23,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:02:23,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:23,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:23,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:23,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:24,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 16:02:24,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 16:02:24,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:24,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:24,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:24,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:24,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:02:24,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:02:24,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:25,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:25,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:25,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:25,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:02:25,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:02:25,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:28,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:28,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:28,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:28,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:02:28,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:02:28,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:29,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:29,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:29,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:29,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:02:29,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:02:29,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:30,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:30,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:30,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:30,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:02:30,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:02:30,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:30,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:30,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:30,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:30,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:02:30,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:02:30,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:32,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:32,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:32,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:32,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:02:32,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:02:32,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:35,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:35,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:35,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:35,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:02:35,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:02:35,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:35,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:35,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:35,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:35,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:02:35,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:02:35,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:36,130 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:02:36,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:02:36,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:02:36,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 16:02:36,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 16:02:36,429 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:02:36,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:36,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:36,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:36,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:02:36,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:02:36,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:40,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:40,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:40,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:40,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:02:40,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:02:40,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:40,572 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:02:40,592 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:02:40,658 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.123 +2025-10-01 16:02:40,659 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 16:02:40,659 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s +2025-10-01 16:02:41,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:41,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:42,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:42,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:02:42,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:02:42,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:42,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:42,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:42,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:42,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:02:42,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:02:42,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:43,476 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:02:43,497 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(753, 753, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:02:43,567 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.106 +2025-10-01 16:02:43,567 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 16:02:43,568 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 16:02:44,022 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:02:44,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:02:44,110 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.987 +2025-10-01 16:02:44,110 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 16:02:44,111 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s +2025-10-01 16:02:44,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:44,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:44,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:44,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:02:44,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:02:44,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:45,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:45,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:45,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:45,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:02:45,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:02:45,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:46,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:46,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:46,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:47,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:02:47,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:02:47,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:47,685 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:02:47,703 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:02:47,771 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.887 +2025-10-01 16:02:47,771 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 16:02:47,771 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 16:02:47,824 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:02:47,845 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:02:47,923 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.997 +2025-10-01 16:02:47,923 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:02:47,923 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:02:48,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:48,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:48,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:48,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:02:48,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:02:48,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:49,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:49,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:49,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:49,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:02:49,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:02:49,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:51,255 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:02:51,291 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:02:51,368 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.433 +2025-10-01 16:02:51,369 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:02:51,369 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:02:51,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:51,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:51,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:51,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:02:51,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:02:51,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:52,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:52,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:52,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:52,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:02:52,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:02:52,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:53,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:53,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:53,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:53,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:02:53,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:02:53,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:54,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:54,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:54,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:54,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:02:54,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:02:54,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:54,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:54,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:54,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:55,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:02:55,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:02:55,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:57,832 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:02:57,857 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:02:57,936 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.081 +2025-10-01 16:02:57,937 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:02:57,938 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:02:58,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:02:58,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:02:58,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:02:58,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:02:58,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:02:58,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:02:58,829 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:02:58,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:02:58,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:02:59,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 16:02:59,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 16:02:59,119 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:03:00,934 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:03:00,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:03:00,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:03:01,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 16:03:01,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 16:03:01,240 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:03:02,155 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:03:02,181 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:03:02,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.327 +2025-10-01 16:03:02,268 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:03:02,269 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:03:02,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:02,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:02,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:02,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:03:02,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:03:02,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:03,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:03,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:03,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:03,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:03:03,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:03:03,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:05,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:05,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:05,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:05,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:03:05,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:03:05,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:08,465 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:03:08,503 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:03:08,592 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.764 +2025-10-01 16:03:08,593 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 16:03:08,593 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 16:03:09,709 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:03:09,746 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:03:09,826 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.411 +2025-10-01 16:03:09,826 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:03:09,826 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:03:10,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:10,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:10,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:10,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:03:10,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:03:10,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:11,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:11,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:11,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:11,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 16:03:11,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 16:03:11,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:11,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:11,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:11,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:11,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 16:03:11,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 16:03:11,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:11,784 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:03:11,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:03:11,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:03:12,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 16:03:12,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 16:03:12,080 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:03:12,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:12,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:12,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:12,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:03:12,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:03:12,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:14,047 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:03:14,089 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:03:14,169 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.134 +2025-10-01 16:03:14,169 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:03:14,169 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:03:17,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:17,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:17,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:17,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:03:17,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:03:17,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:18,599 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:03:18,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:03:18,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:03:18,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 16:03:18,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 16:03:18,904 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:03:19,002 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:03:19,024 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:03:19,099 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.188 +2025-10-01 16:03:19,100 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:03:19,100 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:03:19,267 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:03:19,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:03:19,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:03:19,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 16:03:19,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.131s/image) +2025-10-01 16:03:19,531 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:03:19,999 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:03:20,033 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:03:20,119 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.995 +2025-10-01 16:03:20,119 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:03:20,119 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:03:20,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:20,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:20,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:20,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:03:20,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:03:20,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:23,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:23,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:23,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:23,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:03:23,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:03:23,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:23,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:23,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:23,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:24,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:03:24,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:03:24,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:24,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:24,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:24,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:25,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:03:25,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:03:25,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:25,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:25,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:25,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:25,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:03:25,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:03:25,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:25,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:25,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:25,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:25,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:03:25,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:03:25,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:26,494 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:03:26,525 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:03:26,614 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.858 +2025-10-01 16:03:26,614 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:03:26,614 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:03:27,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:27,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:27,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:28,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:03:28,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:03:28,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:28,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:28,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:28,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:28,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:03:28,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:03:28,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:29,070 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:03:29,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:03:29,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:03:29,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 16:03:29,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 16:03:29,362 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:03:29,724 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:03:29,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:03:29,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:03:29,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-01 16:03:29,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-01 16:03:29,994 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:03:30,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:30,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:30,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:31,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:03:31,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:03:31,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:31,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:31,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:31,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:31,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:03:31,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:03:31,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:33,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:33,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:33,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:33,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:03:33,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:03:33,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:33,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:33,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:33,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:33,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:03:33,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:03:33,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:35,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:35,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:35,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:35,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:03:35,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:03:35,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:36,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:36,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:36,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:36,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:03:36,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:03:36,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:36,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:36,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:36,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:36,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:03:36,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:03:36,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:37,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:37,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:37,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:37,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 16:03:37,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 16:03:37,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:37,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:37,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:37,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:37,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:03:37,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:03:37,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:37,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:37,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:38,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:38,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:03:38,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:03:38,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:38,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:38,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:38,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:38,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:03:38,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:03:38,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:39,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:39,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:39,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:39,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:03:39,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:03:39,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:41,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:41,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:41,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:41,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:03:41,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:03:41,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:43,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:43,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:43,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:43,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:03:43,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:03:43,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:43,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:43,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:43,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:43,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:03:43,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:03:43,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:43,971 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:03:43,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:03:44,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:03:44,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 16:03:44,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 16:03:44,271 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:03:44,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:44,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:44,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:44,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:03:44,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:03:44,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:46,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:46,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:46,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:47,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:03:47,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:03:47,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:47,279 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:03:47,304 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:03:47,377 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.596 +2025-10-01 16:03:47,377 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:03:47,377 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:03:49,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:49,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:49,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:49,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:03:49,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:03:49,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:49,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:49,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:49,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:49,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:03:49,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:03:49,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:50,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:50,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:50,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:50,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 16:03:50,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 16:03:50,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:50,500 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:03:50,517 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:03:50,586 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.695 +2025-10-01 16:03:50,587 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 16:03:50,587 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 16:03:51,022 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:03:51,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:03:51,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:03:51,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 16:03:51,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 16:03:51,306 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:03:52,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:52,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:52,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:52,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:03:52,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:03:52,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:54,064 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:03:54,089 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:03:54,167 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.627 +2025-10-01 16:03:54,168 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:03:54,168 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:03:54,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:54,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:54,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:55,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:03:55,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:03:55,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:58,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:58,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:58,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:58,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:03:58,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:03:58,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:03:59,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:03:59,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:03:59,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:03:59,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:03:59,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:03:59,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:00,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:00,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:00,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:00,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:04:00,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:04:00,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:01,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:01,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:01,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:01,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:04:01,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:04:01,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:02,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:02,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:02,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:02,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 16:04:02,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 16:04:02,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:05,814 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:04:05,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:04:05,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:04:06,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 16:04:06,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 16:04:06,121 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:04:06,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:06,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:06,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:06,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:04:06,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:04:06,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:07,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:07,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:07,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:07,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:04:07,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:04:07,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:08,648 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:08,691 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:08,769 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.583 +2025-10-01 16:04:08,770 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:04:08,771 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:04:09,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:09,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:09,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:09,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:04:09,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:04:09,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:10,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:10,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:10,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:10,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:04:10,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:04:10,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:11,125 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:11,145 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:11,230 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.513 +2025-10-01 16:04:11,231 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:04:11,231 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:04:12,890 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:12,932 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:13,017 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.172 +2025-10-01 16:04:13,017 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:04:13,019 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:04:13,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:13,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:13,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:13,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:04:13,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:04:13,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:13,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:13,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:13,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:14,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:04:14,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:04:14,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:14,299 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:14,322 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:14,413 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.232 +2025-10-01 16:04:14,413 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:04:14,414 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:04:14,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:14,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:15,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:15,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:04:15,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:04:15,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:16,903 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:16,929 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:17,021 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.141 +2025-10-01 16:04:17,021 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:04:17,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:04:17,415 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:17,435 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:17,524 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.378 +2025-10-01 16:04:17,525 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 16:04:17,525 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 16:04:20,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:20,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:20,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:20,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:04:20,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:04:20,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:21,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:21,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:21,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:21,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:04:21,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:04:21,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:22,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:22,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:22,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:22,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:04:22,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:04:22,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:22,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:22,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:22,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:23,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:04:23,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:04:23,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:23,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:23,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:23,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:23,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:04:23,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:04:23,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:23,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:23,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:23,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:23,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:04:23,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:04:23,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:24,548 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:24,570 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:24,643 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.649 +2025-10-01 16:04:24,644 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:04:24,644 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:04:24,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:24,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:24,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:25,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:04:25,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:04:25,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:25,093 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:25,110 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(816, 720, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:25,175 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.595 +2025-10-01 16:04:25,175 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.065s +2025-10-01 16:04:25,176 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.066s +2025-10-01 16:04:25,601 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:25,633 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 811, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:25,714 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.510 +2025-10-01 16:04:25,714 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:04:25,715 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:04:27,820 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:27,840 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:27,927 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.396 +2025-10-01 16:04:27,927 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:04:27,928 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:04:28,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:28,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:28,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:28,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:04:28,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:04:28,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:28,370 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:28,390 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 704, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:28,467 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.769 +2025-10-01 16:04:28,468 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:04:28,469 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:04:29,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:29,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:29,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:29,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:04:29,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:04:29,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:31,631 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:31,652 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:31,739 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.736 +2025-10-01 16:04:31,740 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:04:31,740 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:04:31,942 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:31,964 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(985, 720, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:32,042 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.166 +2025-10-01 16:04:32,042 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:04:32,043 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:04:32,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:32,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:32,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:32,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:04:32,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:04:32,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:33,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:33,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:33,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:33,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 16:04:33,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 16:04:33,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:35,506 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:35,535 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:35,628 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.260 +2025-10-01 16:04:35,628 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 16:04:35,629 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:04:36,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:36,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:36,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:36,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:04:36,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:04:36,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:37,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:37,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:37,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:37,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:04:37,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:04:37,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:37,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:37,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:37,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:37,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:04:37,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:04:37,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:38,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:38,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:38,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:38,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:04:38,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:04:38,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:40,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:40,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:40,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:41,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:04:41,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:04:41,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:42,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:42,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:42,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:42,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:04:42,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:04:42,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:43,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:43,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:43,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:43,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:04:43,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:04:43,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:44,374 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:44,393 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:44,476 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.190 +2025-10-01 16:04:44,477 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:04:44,477 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:04:44,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:44,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:44,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:45,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:04:45,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:04:45,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:45,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:45,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:45,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:45,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:04:45,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:04:45,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:45,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:45,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:45,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:45,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:04:45,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:04:45,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:46,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:46,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:46,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:46,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:04:46,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:04:46,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:47,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:47,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:47,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:47,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:04:47,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:04:47,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:47,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:47,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:47,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:47,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:04:47,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:04:47,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:47,965 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:47,982 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:48,056 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.085 +2025-10-01 16:04:48,057 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:04:48,057 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:04:48,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:48,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:48,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:48,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:04:48,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:04:48,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:49,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:49,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:49,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:50,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:04:50,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:04:50,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:50,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:50,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:50,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:50,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:04:50,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:04:50,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:51,168 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:04:51,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:04:51,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:04:51,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 16:04:51,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 16:04:51,459 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:04:51,791 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:51,814 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:51,887 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=3.136 +2025-10-01 16:04:51,887 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:04:51,887 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:04:52,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:52,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:52,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:52,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:04:52,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:04:52,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:52,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:52,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:52,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:53,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:04:53,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:04:53,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:54,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:54,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:54,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:54,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:04:54,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:04:54,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:57,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:57,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:57,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:57,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:04:57,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:04:57,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:57,606 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:04:57,638 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:04:57,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.517 +2025-10-01 16:04:57,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 16:04:57,707 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 16:04:57,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:57,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:57,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:58,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:04:58,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:04:58,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:58,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:04:58,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:04:58,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:04:58,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:04:58,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:04:58,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:04:59,072 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:04:59,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:04:59,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:04:59,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 16:04:59,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 16:04:59,357 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:05:00,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:00,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:00,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:00,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:05:00,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:05:00,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:00,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:00,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:00,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:00,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:05:00,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:05:00,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:00,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:00,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:00,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:00,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:05:00,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:05:00,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:01,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:01,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:01,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:01,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:05:01,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:05:01,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:02,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:02,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:02,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:02,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:05:02,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:05:02,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:02,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:02,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:02,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:03,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:05:03,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:05:03,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:03,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:03,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:04,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:04,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 16:05:04,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 16:05:04,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:05,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:05,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:05,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:05,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:05:05,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:05:05,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:05,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:05,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:05,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:05,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:05:05,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:05:05,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:07,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:07,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:07,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:07,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:05:07,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:05:07,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:07,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:07,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:07,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:07,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 16:05:07,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 16:05:07,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:08,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:08,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:08,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:08,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:05:08,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:05:08,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:09,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:09,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:09,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:09,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:05:09,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:05:09,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:09,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:09,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:09,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:10,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:05:10,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:05:10,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:10,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:10,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:10,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:10,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:05:10,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:05:10,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:11,485 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:05:11,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:05:11,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:05:11,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 16:05:11,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 16:05:11,795 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:05:12,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:12,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:12,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:12,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:05:12,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:05:12,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:13,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:13,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:13,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:14,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:05:14,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:05:14,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:16,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:16,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:16,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:16,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:05:16,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:05:16,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:18,115 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:05:18,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:05:18,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:05:18,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 16:05:18,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 16:05:18,400 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:05:19,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:19,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:19,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:19,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:05:19,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:05:19,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:19,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:19,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:20,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:20,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:05:20,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:05:20,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:22,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:22,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:22,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:22,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:05:22,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:05:22,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:24,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:24,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:24,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:24,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:05:24,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:05:24,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:25,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:25,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:25,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:25,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:05:25,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:05:25,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:26,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:26,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:26,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:26,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:05:26,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:05:26,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:26,840 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:05:26,866 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:05:26,941 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.499 +2025-10-01 16:05:26,941 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:05:26,941 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:05:29,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:29,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:29,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:29,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:05:29,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:05:29,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:30,519 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:05:30,545 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:05:30,621 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=187.438 +2025-10-01 16:05:30,622 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:05:30,622 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:05:30,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:30,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:30,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:30,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:05:30,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:05:30,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:33,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:33,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:33,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:33,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:05:33,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:05:33,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:33,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:33,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:33,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:34,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:05:34,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:05:34,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:34,411 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:05:34,436 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:05:34,507 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.292 +2025-10-01 16:05:34,508 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:05:34,508 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:05:34,692 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:05:34,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:05:34,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:05:34,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 16:05:34,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 16:05:34,978 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:05:37,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:37,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:37,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:37,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:05:37,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:05:37,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:37,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:37,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:37,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:38,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:05:38,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:05:38,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:38,470 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:05:38,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:05:38,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:05:38,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 16:05:38,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 16:05:38,754 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:05:39,396 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:05:39,426 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:05:39,500 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.519 +2025-10-01 16:05:39,500 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:05:39,500 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:05:40,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:40,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:40,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:40,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:05:40,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:05:40,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:41,450 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:05:41,477 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:05:41,558 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.536 +2025-10-01 16:05:41,559 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:05:41,560 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:05:41,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:41,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:41,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:41,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:05:41,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:05:41,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:43,100 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:05:43,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:05:43,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:05:43,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 16:05:43,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 16:05:43,393 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:05:43,560 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:05:43,589 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:05:43,685 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.501 +2025-10-01 16:05:43,685 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 16:05:43,686 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 16:05:43,721 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:05:43,750 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:05:43,847 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.284 +2025-10-01 16:05:43,848 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 16:05:43,849 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 16:05:45,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:45,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:45,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:45,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:05:45,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:05:45,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:47,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:47,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:47,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:47,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:05:47,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:05:47,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:48,754 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:05:48,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:05:48,909 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.521 +2025-10-01 16:05:48,909 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 16:05:48,910 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 16:05:49,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:49,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:49,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:49,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:05:49,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:05:49,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:50,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:50,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:50,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:50,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:05:50,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:05:50,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:51,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:51,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:51,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:51,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:05:51,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:05:51,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:51,938 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:05:51,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:05:52,074 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.507 +2025-10-01 16:05:52,074 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 16:05:52,075 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 16:05:52,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:52,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:52,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:52,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.126s +2025-10-01 16:05:52,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.126s (avg: 0.126s/image) +2025-10-01 16:05:52,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:52,388 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:05:52,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:05:52,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:05:52,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 16:05:52,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 16:05:52,664 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:05:53,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:53,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:53,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:53,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:05:53,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:05:53,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:56,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:56,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:56,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:56,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:05:56,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:05:56,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:56,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:56,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:57,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:57,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:05:57,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:05:57,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:57,755 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:05:57,775 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:05:57,871 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.506 +2025-10-01 16:05:57,871 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 16:05:57,873 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 16:05:58,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:58,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:58,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:58,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:05:58,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:05:58,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:59,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:59,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:05:59,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:05:59,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:05:59,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:05:59,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:05:59,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:05:59,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:00,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:00,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:06:00,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:06:00,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:03,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:03,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:03,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:03,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:06:03,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:06:03,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:05,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:05,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:05,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:05,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:06:05,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:06:05,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:05,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:05,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:05,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:05,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:06:05,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:06:05,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:06,134 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:06:06,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:06:06,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:06:06,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 16:06:06,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +2025-10-01 16:06:06,442 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:06:06,970 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:06:06,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:06:07,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:06:07,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 16:06:07,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 16:06:07,275 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:06:10,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:10,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:10,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:10,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 16:06:10,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 16:06:10,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:10,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:10,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:10,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:10,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:06:10,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:06:10,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:11,097 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:06:11,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:06:11,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:06:11,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 16:06:11,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 16:06:11,367 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:06:14,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:14,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:14,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:14,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:06:14,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:06:14,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:15,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:15,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:15,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:15,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:06:15,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:06:15,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:15,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:15,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:15,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:15,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:06:15,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:06:15,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:17,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:17,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:17,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:17,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:06:17,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:06:17,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:17,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:17,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:17,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:17,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:06:17,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:06:17,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:18,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:18,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:18,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:18,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:06:18,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:06:18,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:19,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:19,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:19,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:19,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:06:19,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:06:19,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:21,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:21,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:21,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:21,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 16:06:21,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 16:06:21,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:21,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:21,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:21,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:21,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:06:21,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:06:21,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:23,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:23,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:23,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:24,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:06:24,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:06:24,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:26,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:26,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:26,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:26,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:06:26,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:06:26,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:28,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:28,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:28,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:28,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:06:28,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:06:28,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:29,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:29,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:29,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:29,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:06:29,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:06:29,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:29,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:29,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:29,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:30,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:06:30,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:06:30,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:31,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:31,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:31,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:31,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:06:31,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:06:31,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:31,817 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:06:31,838 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(796, 796, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:06:31,918 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.530 +2025-10-01 16:06:31,919 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:06:31,919 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:06:32,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:32,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:32,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:32,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:06:32,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:06:32,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:35,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:35,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:35,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:35,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:06:35,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:06:35,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:35,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:35,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:35,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:35,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:06:35,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:06:35,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:36,327 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:06:36,355 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:06:36,444 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.071 +2025-10-01 16:06:36,444 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 16:06:36,446 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:06:36,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:36,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:36,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:36,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:06:36,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:06:36,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:36,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:36,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:36,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:36,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:06:36,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:06:36,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:37,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:37,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:37,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:37,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:06:37,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:06:37,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:39,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:39,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:39,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:39,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:06:39,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:06:39,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:40,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:06:40,452 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:06:40,542 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.306 +2025-10-01 16:06:40,542 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 16:06:40,542 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:06:40,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:40,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:40,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:41,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:06:41,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:06:41,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:41,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:41,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:41,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:41,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:06:41,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:06:41,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:41,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:41,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:42,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:42,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:06:42,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:06:42,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:43,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:43,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:43,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:43,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:06:43,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:06:43,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:43,876 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:06:43,896 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:06:43,972 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.331 +2025-10-01 16:06:43,972 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:06:43,973 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:06:44,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:44,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:44,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:44,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:06:44,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:06:44,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:46,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:46,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:46,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:46,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:06:46,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:06:46,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:47,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:47,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:48,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:48,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:06:48,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:06:48,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:48,348 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:06:48,386 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:06:48,463 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.283 +2025-10-01 16:06:48,463 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:06:48,464 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:06:48,969 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:06:48,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:06:49,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:06:49,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 16:06:49,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-01 16:06:49,255 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:06:50,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:50,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:51,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:51,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:06:51,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:06:51,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:52,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:52,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:52,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:52,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:06:52,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:06:52,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:54,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:54,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:54,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:54,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:06:54,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:06:54,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:54,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:54,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:54,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:55,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:06:55,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:06:55,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:55,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:55,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:55,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:55,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:06:55,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:06:55,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:59,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:59,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:59,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:06:59,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:06:59,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:06:59,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:06:59,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:06:59,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:06:59,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:00,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:07:00,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:07:00,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:00,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:00,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:00,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:00,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:07:00,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:07:00,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:03,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:03,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:03,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:03,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:07:03,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:07:03,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:04,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:04,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:04,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:04,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:07:04,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:07:04,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:08,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:08,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:08,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:08,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:07:08,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:07:08,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:10,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:10,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:10,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:10,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:07:10,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:07:10,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:12,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:12,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:12,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:12,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:07:12,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:07:12,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:13,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:13,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:13,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:13,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:07:13,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:07:13,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:15,540 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:07:15,573 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:07:15,658 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.504 +2025-10-01 16:07:15,658 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:07:15,660 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:07:15,893 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:07:15,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:07:15,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:07:16,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-01 16:07:16,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +2025-10-01 16:07:16,205 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:07:16,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:16,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:16,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:17,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:07:17,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:07:17,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:19,761 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:07:19,788 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:07:19,869 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.088 +2025-10-01 16:07:19,869 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:07:19,869 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:07:19,922 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:07:19,939 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:07:20,008 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.674 +2025-10-01 16:07:20,009 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 16:07:20,009 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 16:07:20,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:20,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:20,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:20,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:07:20,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:07:20,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:22,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:22,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:22,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:22,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:07:22,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:07:22,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:23,651 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:07:23,667 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:07:23,745 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.480 +2025-10-01 16:07:23,745 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:07:23,745 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:07:23,841 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:07:23,876 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:07:23,956 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.909 +2025-10-01 16:07:23,956 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:07:23,958 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:07:24,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:24,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:24,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:24,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:07:24,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:07:24,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:27,363 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:07:27,382 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:07:27,469 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.321 +2025-10-01 16:07:27,470 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:07:27,470 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:07:27,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:27,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:27,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:27,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:07:27,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:07:27,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:29,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:29,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:29,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:29,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:07:29,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:07:29,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:30,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:30,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:30,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:30,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:07:30,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:07:30,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:30,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:30,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:30,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:31,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:07:31,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:07:31,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:32,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:32,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:32,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:32,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:07:32,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:07:32,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:34,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:34,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:34,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:34,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:07:34,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:07:34,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:34,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:34,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:34,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:34,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:07:34,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:07:34,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:35,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:35,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:35,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:35,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:07:35,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:07:35,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:38,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:38,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:38,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:38,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:07:38,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:07:38,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:38,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:38,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:38,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:39,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:07:39,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:07:39,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:39,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:39,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:39,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:39,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:07:39,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:07:39,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:40,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:40,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:40,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:40,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:07:40,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:07:40,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:43,092 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:07:43,133 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:07:43,227 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.337 +2025-10-01 16:07:43,228 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 16:07:43,229 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 16:07:44,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:44,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:44,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:44,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:07:44,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:07:44,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:44,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:44,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:44,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:44,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:07:44,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:07:44,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:45,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:45,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:45,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:45,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:07:45,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:07:45,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:45,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:45,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:45,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:45,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:07:45,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:07:45,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:46,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:46,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:46,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:46,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:07:46,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:07:46,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:46,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:46,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:46,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:46,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:07:46,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:07:46,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:49,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:49,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:49,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:49,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:07:49,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:07:49,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:49,592 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:07:49,616 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:07:49,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.843 +2025-10-01 16:07:49,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:07:49,708 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:07:49,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:49,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:49,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:50,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:07:50,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:07:50,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:50,440 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:07:50,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:07:50,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:07:50,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 16:07:50,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 16:07:50,721 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:07:52,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:52,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:52,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:52,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:07:52,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:07:52,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:53,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:53,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:53,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:53,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:07:53,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:07:53,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:54,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:54,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:54,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:54,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:07:54,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:07:54,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:54,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:54,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:54,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:54,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:07:54,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:07:54,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:55,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:55,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:55,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:55,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:07:55,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:07:55,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:55,482 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:07:55,512 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:07:55,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.377 +2025-10-01 16:07:55,604 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:07:55,605 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:07:56,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:56,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:56,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:56,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:07:56,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:07:56,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:56,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:56,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:56,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:56,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 16:07:56,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 16:07:56,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:56,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:56,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:56,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:57,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:07:57,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:07:57,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:58,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:58,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:58,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:59,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:07:59,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:07:59,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:59,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:59,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:59,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:59,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:07:59,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:07:59,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:07:59,555 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:07:59,573 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:07:59,661 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.475 +2025-10-01 16:07:59,661 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:07:59,662 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:07:59,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:07:59,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:07:59,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:07:59,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:07:59,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:07:59,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:00,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:00,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:00,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:00,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:08:00,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:08:00,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:01,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:01,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:01,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:01,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:08:01,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:08:01,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:02,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:02,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:02,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:02,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:08:02,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:08:02,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:03,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:03,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:03,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:03,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:08:03,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:08:03,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:03,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:03,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:03,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:04,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:08:04,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:08:04,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:05,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:05,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:05,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:05,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:08:05,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:08:05,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:07,128 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:07,154 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:07,242 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=174.438 +2025-10-01 16:08:07,242 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:08:07,244 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:08:08,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:08,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:08,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:08,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:08:08,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:08:08,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:10,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:10,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:10,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:10,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:08:10,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:08:10,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:12,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:12,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:12,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:12,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:08:12,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:08:12,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:12,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:12,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:12,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:12,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:08:12,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:08:12,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:13,215 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:13,237 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:13,325 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.261 +2025-10-01 16:08:13,325 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:08:13,325 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:08:13,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:13,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:13,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:13,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:08:13,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:08:13,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:14,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:14,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:14,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:14,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:08:14,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:08:14,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:15,392 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:15,419 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:15,494 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.539 +2025-10-01 16:08:15,494 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:08:15,494 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:08:15,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:15,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:15,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:15,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:08:15,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:08:15,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:16,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:16,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:16,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:16,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:08:16,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:08:16,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:16,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:16,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:16,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:16,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:08:16,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:08:16,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:17,140 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:17,168 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:17,243 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.075 +2025-10-01 16:08:17,243 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:08:17,243 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:08:18,268 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:18,285 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:18,358 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.633 +2025-10-01 16:08:18,358 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:08:18,358 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:08:18,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:18,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:18,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:18,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 16:08:18,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 16:08:18,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:18,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:18,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:18,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:19,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:08:19,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:08:19,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:19,125 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:19,147 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:19,222 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.164 +2025-10-01 16:08:19,222 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:08:19,222 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:08:19,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:19,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:19,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:19,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:08:19,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:08:19,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:20,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:20,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:20,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:20,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:08:20,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:08:20,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:20,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:20,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:21,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:21,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:08:21,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:08:21,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:21,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:21,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:21,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:21,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:08:21,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:08:21,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:21,618 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:21,642 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:21,716 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.133 +2025-10-01 16:08:21,716 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:08:21,716 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:08:22,702 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:22,725 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:22,799 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.744 +2025-10-01 16:08:22,800 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:08:22,800 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:08:23,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:23,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:23,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:23,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 16:08:23,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 16:08:23,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:23,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:23,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:23,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:23,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:08:23,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:08:23,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:23,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:23,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:24,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:24,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:08:24,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:08:24,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:24,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:24,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:24,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:24,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:08:24,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:08:24,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:25,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:25,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:25,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:25,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 16:08:25,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 16:08:25,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:25,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:25,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:25,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:25,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:08:25,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:08:25,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:26,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:26,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:26,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:26,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:08:26,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:08:26,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:27,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:27,518 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:27,599 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.968 +2025-10-01 16:08:27,599 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:08:27,600 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:08:27,974 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:08:27,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:08:28,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:08:28,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 16:08:28,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-01 16:08:28,249 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:08:29,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:29,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:29,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:29,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:08:29,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:08:29,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:30,160 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:30,186 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:30,274 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.914 +2025-10-01 16:08:30,274 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:08:30,274 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:08:30,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:30,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:30,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:30,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:08:30,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:08:30,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:31,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:31,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:31,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:31,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +2025-10-01 16:08:31,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +2025-10-01 16:08:31,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:31,344 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:31,365 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:31,438 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.848 +2025-10-01 16:08:31,438 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:08:31,438 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:08:31,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:31,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:31,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:31,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:08:31,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:08:31,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:32,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:32,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:32,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:32,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:08:32,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:08:32,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:33,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:33,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:33,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:33,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:08:33,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:08:33,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:33,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:33,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:33,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:33,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:08:33,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:08:33,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:34,015 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:34,038 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:34,112 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.108 +2025-10-01 16:08:34,112 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:08:34,112 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:08:34,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:34,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:34,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:34,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:08:34,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:08:34,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:35,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:35,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:35,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:35,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:08:35,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:08:35,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:35,445 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:35,464 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:35,545 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.948 +2025-10-01 16:08:35,545 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:08:35,545 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:08:35,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:35,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:35,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:35,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 16:08:35,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 16:08:35,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:36,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:36,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:36,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:36,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:08:36,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:08:36,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:36,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:36,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:36,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:37,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:08:37,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:08:37,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:37,744 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:08:37,767 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:08:37,836 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.718 +2025-10-01 16:08:37,836 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 16:08:37,837 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 16:08:38,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:38,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:38,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:38,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:08:38,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:08:38,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:39,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:39,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:39,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:39,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:08:39,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:08:39,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:39,715 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:08:39,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:08:39,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:08:40,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-01 16:08:40,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.154s/image) +2025-10-01 16:08:40,025 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:08:40,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:40,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:40,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:40,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:08:40,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:08:40,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:41,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:41,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:41,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:41,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:08:41,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:08:41,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:42,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:42,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:42,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:42,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:08:42,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:08:42,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:43,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:43,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:43,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:43,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:08:43,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:08:43,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:44,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:44,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:44,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:44,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:08:44,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:08:44,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:44,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:44,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:44,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:45,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:08:45,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:08:45,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:45,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:45,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:45,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:46,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:08:46,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:08:46,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:46,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:46,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:46,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:46,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 16:08:46,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 16:08:46,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:47,123 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:08:47,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:08:47,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:08:47,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 16:08:47,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 16:08:47,420 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:08:50,979 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:08:50,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:08:51,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:08:51,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 16:08:51,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 16:08:51,254 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:08:51,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:51,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:51,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:51,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:08:51,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:08:51,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:51,917 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:08:51,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:08:51,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:08:52,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 16:08:52,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 16:08:52,205 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:08:55,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:55,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:55,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:55,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:08:55,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:08:55,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:55,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:55,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:55,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:55,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:08:55,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:08:55,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:56,989 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:08:56,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:08:57,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:08:57,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-01 16:08:57,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.156s/image) +2025-10-01 16:08:57,302 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:08:57,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:57,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:57,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:58,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:08:58,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:08:58,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:08:59,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:08:59,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:08:59,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:08:59,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:08:59,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:08:59,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:00,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:00,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:00,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:00,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 16:09:00,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 16:09:00,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:01,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:01,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:01,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:01,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:09:01,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:09:01,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:01,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:01,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:01,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:01,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:09:01,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:09:01,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:02,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:02,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:02,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:02,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:09:02,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:09:02,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:02,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:02,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:02,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:02,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:09:02,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:09:02,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:04,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:04,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:04,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:04,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:09:04,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:09:04,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:04,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:04,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:04,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:04,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:09:04,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:09:04,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:05,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:05,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:05,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:05,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:09:05,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:09:05,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:06,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:06,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:06,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:06,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:09:06,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:09:06,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:07,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:07,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:07,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:07,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 16:09:07,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 16:09:07,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:08,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:08,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:08,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:08,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:09:08,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:09:08,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:09,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:09,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:09,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:10,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 16:09:10,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 16:09:10,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:10,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:10,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:10,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:10,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:09:10,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:09:10,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:10,563 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:09:10,591 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:09:10,673 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.811 +2025-10-01 16:09:10,673 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:09:10,674 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:09:11,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:11,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:11,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:11,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:09:11,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:09:11,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:12,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:12,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:12,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:12,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:09:12,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:09:12,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:12,658 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:09:12,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:09:12,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:09:12,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 16:09:12,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 16:09:12,934 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:09:13,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:13,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:13,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:13,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:09:13,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:09:13,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:13,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:13,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:13,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:13,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:09:13,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:09:13,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:16,217 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:09:16,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:09:16,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:09:16,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 16:09:16,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 16:09:16,507 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:09:16,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:16,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:17,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:17,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:09:17,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:09:17,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:18,914 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:09:18,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:09:18,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:09:19,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 16:09:19,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 16:09:19,203 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:09:19,396 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:09:19,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:09:19,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:09:19,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 16:09:19,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-01 16:09:19,669 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:09:20,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:20,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:20,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:20,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:09:20,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:09:20,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:22,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:22,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:22,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:22,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:09:22,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:09:22,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:22,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:22,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:22,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:23,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:09:23,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:09:23,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:23,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:23,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:23,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:23,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:09:23,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:09:23,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:24,101 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:09:24,125 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:09:24,212 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.152 +2025-10-01 16:09:24,212 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:09:24,212 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:09:24,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:24,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:24,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:24,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:09:24,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:09:24,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:24,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:24,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:24,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:24,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:09:24,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:09:24,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:26,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:26,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:26,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:26,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:09:26,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:09:26,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:26,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:26,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:27,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:27,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:09:27,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:09:27,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:27,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:27,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:27,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:27,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:09:27,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:09:27,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:27,449 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:09:27,460 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:09:27,529 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.983 +2025-10-01 16:09:27,529 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 16:09:27,529 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 16:09:27,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:27,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:27,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:27,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:09:27,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:09:27,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:28,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:28,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:28,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:28,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-01 16:09:28,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-01 16:09:28,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:29,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:29,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:29,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:29,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:09:29,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:09:29,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:30,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:30,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:30,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:30,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:09:30,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:09:30,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:30,852 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:09:30,866 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:09:30,938 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.388 +2025-10-01 16:09:30,938 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:09:30,938 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:09:31,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:31,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:31,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:31,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:09:31,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:09:31,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:32,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:32,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:32,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:32,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:09:32,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:09:32,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:35,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:35,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:35,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:35,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:09:35,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:09:35,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:36,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:36,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:36,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:36,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:09:36,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:09:36,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:36,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:36,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:36,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:36,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:09:36,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:09:36,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:36,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:36,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:36,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:36,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:09:36,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:09:36,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:36,943 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:09:36,969 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:09:37,045 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.412 +2025-10-01 16:09:37,046 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:09:37,046 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:09:39,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:39,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:39,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:39,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:09:39,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:09:39,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:40,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:40,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:40,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:40,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:09:40,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:09:40,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:44,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:44,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:44,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:44,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:09:44,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:09:44,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:45,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:45,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:45,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:45,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:09:45,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:09:45,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:47,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:47,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:47,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:47,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:09:47,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:09:47,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:47,672 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:09:47,698 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:09:47,772 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=204.007 +2025-10-01 16:09:47,772 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:09:47,772 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:09:48,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:48,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:48,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:48,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:09:48,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:09:48,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:51,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:51,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:51,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:51,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:09:51,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:09:51,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:51,889 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:09:51,913 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:09:51,988 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=168.424 +2025-10-01 16:09:51,988 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:09:51,988 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:09:52,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:52,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:52,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:52,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:09:52,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:09:52,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:53,209 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:09:53,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:09:53,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:09:53,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 16:09:53,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 16:09:53,489 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:09:54,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:54,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:54,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:54,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:09:54,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:09:54,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:55,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:55,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:55,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:55,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:09:55,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:09:55,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:09:56,024 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:09:56,049 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:09:56,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=194.612 +2025-10-01 16:09:56,122 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:09:56,122 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:09:57,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:09:57,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:09:57,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:09:57,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:09:57,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:09:57,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:00,260 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:10:00,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:10:00,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:10:00,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 16:10:00,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 16:10:00,564 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:10:00,953 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:10:01,002 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:10:01,098 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.128 +2025-10-01 16:10:01,098 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 16:10:01,100 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 16:10:02,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:02,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:02,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:02,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:10:02,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:10:02,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:02,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:02,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:02,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:02,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:10:02,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:10:02,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:02,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:02,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:02,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:03,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:10:03,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:10:03,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:03,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:03,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:03,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:03,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:10:03,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:10:03,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:04,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:04,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:04,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:04,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:10:04,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:10:04,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:04,706 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:10:04,739 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:10:04,839 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.927 +2025-10-01 16:10:04,840 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 16:10:04,841 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 16:10:06,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:06,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:06,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:06,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 16:10:06,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 16:10:06,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:08,235 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:10:08,274 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:10:08,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.805 +2025-10-01 16:10:08,380 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 16:10:08,381 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 16:10:08,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:08,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:08,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:09,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:10:09,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:10:09,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:11,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:11,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:11,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:11,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:10:11,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:10:11,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:12,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:12,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:12,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:12,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:10:12,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:10:12,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:13,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:13,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:13,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:13,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:10:13,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:10:13,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:13,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:13,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:13,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:13,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:10:13,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:10:13,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:14,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:14,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:14,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:14,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:10:14,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:10:14,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:15,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:15,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:15,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:15,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:10:15,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:10:15,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:16,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:16,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:16,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:16,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:10:16,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:10:16,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:16,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:16,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:16,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:16,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:10:16,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:10:16,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:19,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:19,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:19,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:19,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:10:19,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:10:19,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:20,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:20,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:20,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:20,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:10:20,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:10:20,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:20,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:20,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:20,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:20,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:10:20,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:10:20,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:22,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:22,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:22,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:22,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:10:22,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:10:22,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:23,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:23,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:23,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:23,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:10:23,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:10:23,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:24,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:24,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:24,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:25,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:10:25,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:10:25,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:27,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:27,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:27,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:27,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:10:27,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:10:27,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:29,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:29,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:29,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:30,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:10:30,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:10:30,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:30,174 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:10:30,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:10:30,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:10:30,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 16:10:30,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 16:10:30,450 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:10:30,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:30,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:30,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:30,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:10:30,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:10:30,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:33,428 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:10:33,455 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:10:33,551 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.388 +2025-10-01 16:10:33,551 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 16:10:33,551 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 16:10:34,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:34,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:34,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:34,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:10:34,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:10:34,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:35,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:35,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:35,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:35,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:10:35,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:10:35,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:36,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:36,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:36,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:36,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:10:36,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:10:36,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:37,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:37,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:37,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:37,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:10:37,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:10:37,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:38,552 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:10:38,579 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:10:38,653 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.456 +2025-10-01 16:10:38,654 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:10:38,654 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:10:41,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:41,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:41,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:41,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:10:41,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:10:41,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:42,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:42,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:42,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:42,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:10:42,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:10:42,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:42,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:42,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:42,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:42,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:10:42,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:10:42,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:43,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:43,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:43,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:43,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:10:43,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:10:43,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:44,607 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:10:44,637 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:10:44,714 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.637 +2025-10-01 16:10:44,715 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:10:44,715 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:10:45,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:45,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:45,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:45,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:10:45,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:10:45,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:46,950 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:10:46,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:10:47,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:10:47,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 16:10:47,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 16:10:47,245 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:10:47,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:47,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:47,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:47,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:10:47,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:10:47,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:48,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:48,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:48,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:48,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 16:10:48,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 16:10:48,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:48,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:48,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:48,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:48,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:10:48,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:10:48,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:49,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:49,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:49,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:49,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:10:49,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:10:49,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:50,517 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:10:50,540 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:10:50,623 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.456 +2025-10-01 16:10:50,623 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:10:50,623 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:10:50,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:50,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:50,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:50,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 16:10:50,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 16:10:50,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:52,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:52,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:52,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:52,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:10:52,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:10:52,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:52,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:52,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:52,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:52,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:10:52,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:10:52,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:52,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:52,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:52,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:52,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:10:52,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:10:52,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:53,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:53,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:53,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:53,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:10:53,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:10:53,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:54,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:54,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:54,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:55,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:10:55,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:10:55,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:57,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:57,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:57,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:57,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:10:57,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:10:57,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:10:58,243 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:10:58,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:10:58,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:10:58,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 16:10:58,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 16:10:58,552 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:10:59,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:10:59,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:10:59,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:10:59,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:10:59,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:10:59,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:00,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:00,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:00,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:00,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:11:00,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:11:00,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:01,999 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:02,031 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:02,108 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.122 +2025-10-01 16:11:02,108 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:11:02,108 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:11:02,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:02,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:02,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:02,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:11:02,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:11:02,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:02,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:02,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:02,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:02,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:11:02,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:11:02,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:03,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:03,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:03,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:03,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:11:03,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:11:03,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:04,153 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:04,180 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:04,257 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.079 +2025-10-01 16:11:04,257 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:11:04,257 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:11:05,310 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:05,335 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:05,409 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.358 +2025-10-01 16:11:05,410 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:11:05,410 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:11:07,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:07,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:07,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:07,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:11:07,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:11:07,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:08,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:08,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:08,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:08,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:11:08,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:11:08,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:09,030 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:09,060 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:09,135 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.131 +2025-10-01 16:11:09,135 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:11:09,136 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:11:10,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:10,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:10,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:10,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:11:10,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:11:10,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:10,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:10,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:10,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:10,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 16:11:10,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 16:11:10,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:11,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:11,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:11,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:11,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:11:11,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:11:11,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:12,605 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:12,637 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:12,717 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.255 +2025-10-01 16:11:12,717 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:11:12,717 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:11:13,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:13,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:13,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:13,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 16:11:13,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 16:11:13,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:16,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:16,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:16,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:16,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:11:16,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:11:16,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:16,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:16,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:16,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:16,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 16:11:16,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 16:11:16,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:16,832 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:16,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:16,924 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.462 +2025-10-01 16:11:16,924 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:11:16,924 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:11:19,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:19,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:19,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:19,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 16:11:19,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 16:11:19,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:19,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:19,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:19,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:19,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:11:19,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:11:19,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:20,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:20,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:20,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:20,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 16:11:20,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 16:11:20,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:20,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:20,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:20,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:20,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:11:20,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:11:20,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:21,306 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:21,333 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:21,415 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.441 +2025-10-01 16:11:21,415 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:11:21,415 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:11:21,523 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:21,544 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:21,629 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.188 +2025-10-01 16:11:21,629 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:11:21,629 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:11:23,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:23,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:23,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:23,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:11:23,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:11:23,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:24,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:24,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:24,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:24,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:11:24,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:11:24,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:25,276 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:25,305 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:25,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.879 +2025-10-01 16:11:25,379 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:11:25,379 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:11:26,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:26,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:26,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:26,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:11:26,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:11:26,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:27,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:27,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:27,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:27,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:11:27,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:11:27,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:28,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:28,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:28,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:28,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:11:28,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:11:28,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:30,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:30,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:30,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:30,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:11:30,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:11:30,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:30,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:30,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:30,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:30,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:11:30,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:11:30,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:32,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:32,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:32,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:32,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:11:32,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:11:32,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:34,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:34,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:34,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:34,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:11:34,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:11:34,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:35,003 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:35,026 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:35,098 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.701 +2025-10-01 16:11:35,099 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:11:35,099 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:11:37,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:37,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:37,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:37,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:11:37,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:11:37,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:39,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:39,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:39,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:39,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:11:39,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:11:39,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:39,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:39,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:39,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:39,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:11:39,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:11:39,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:40,020 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:40,041 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:40,115 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.424 +2025-10-01 16:11:40,115 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:11:40,115 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:11:40,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:40,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:40,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:40,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:11:40,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:11:40,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:40,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:40,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:40,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:40,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:11:40,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:11:40,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:41,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:41,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:41,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:41,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 16:11:41,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 16:11:41,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:43,705 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:43,732 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:43,809 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.534 +2025-10-01 16:11:43,810 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:11:43,810 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:11:44,330 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:11:44,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:11:44,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:11:44,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 16:11:44,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 16:11:44,603 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:11:45,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:45,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:45,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:45,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:11:45,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:11:45,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:46,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:46,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:46,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:46,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:11:46,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:11:46,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:46,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:46,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:46,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:46,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:11:46,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:11:46,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:49,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:49,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:49,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:49,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:11:49,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:11:49,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:50,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:50,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:50,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:50,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:11:50,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:11:50,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:51,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:51,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:51,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:51,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:11:51,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:11:51,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:51,483 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:11:51,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:11:51,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:11:51,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 16:11:51,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 16:11:51,766 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:11:53,156 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:11:53,195 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:11:53,286 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.278 +2025-10-01 16:11:53,287 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:11:53,288 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:11:53,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:53,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:54,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:54,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:11:54,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:11:54,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:54,337 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:11:54,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:11:54,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:11:54,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 16:11:54,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 16:11:54,614 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:11:56,953 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:11:56,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:11:57,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:11:57,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s +2025-10-01 16:11:57,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.157s/image) +2025-10-01 16:11:57,268 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:11:57,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:57,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:57,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:58,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:11:58,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:11:58,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:59,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:59,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:59,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:59,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:11:59,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:11:59,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:11:59,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:11:59,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:11:59,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:11:59,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:11:59,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:11:59,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:00,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:00,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:00,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:00,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:12:00,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:12:00,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:02,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:02,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:02,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:02,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:12:02,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:12:02,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:03,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:03,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:03,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:03,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:12:03,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:12:03,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:04,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:04,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:04,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:04,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:12:04,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:12:04,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:05,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:05,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:05,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:05,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:12:05,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:12:05,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:05,981 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:12:05,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:12:06,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:12:06,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 16:12:06,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 16:12:06,250 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:12:06,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:06,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:06,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:06,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:12:06,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:12:06,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:06,865 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:12:06,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:12:06,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:12:07,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 16:12:07,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 16:12:07,143 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:12:10,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:10,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:10,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:10,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:12:10,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:12:10,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:10,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:10,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:10,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:11,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 16:12:11,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 16:12:11,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:13,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:13,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:13,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:13,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:12:13,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:12:13,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:14,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:14,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:14,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:14,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 16:12:14,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 16:12:14,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:14,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:14,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:14,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:15,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:12:15,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:12:15,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:15,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:15,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:15,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:15,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:12:15,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:12:15,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:18,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:18,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:18,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:18,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:12:18,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:12:18,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:18,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:18,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:18,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:18,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:12:18,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:12:18,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:19,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:19,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:19,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:19,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:12:19,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:12:19,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:21,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:21,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:21,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:21,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:12:21,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:12:21,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:22,088 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:12:22,106 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:12:22,190 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=198.685 +2025-10-01 16:12:22,191 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:12:22,191 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:12:22,353 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:12:22,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:12:22,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:12:22,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 16:12:22,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 16:12:22,650 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:12:23,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:23,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:24,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:24,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:12:24,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:12:24,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:24,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:24,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:24,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:24,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:12:24,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:12:24,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:25,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:25,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:25,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:25,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:12:25,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:12:25,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:27,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:27,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:27,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:27,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:12:27,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:12:27,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:28,139 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:12:28,160 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:12:28,251 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.023 +2025-10-01 16:12:28,252 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:12:28,252 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:12:30,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:30,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:30,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:30,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:12:30,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:12:30,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:30,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:30,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:30,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:31,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:12:31,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:12:31,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:32,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:32,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:32,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:32,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:12:32,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:12:32,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:34,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:34,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:34,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:34,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:12:34,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:12:34,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:35,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:35,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:35,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:35,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:12:35,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:12:35,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:36,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:36,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:36,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:36,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:12:36,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:12:36,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:36,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:36,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:36,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:36,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:12:36,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:12:36,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:37,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:37,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:37,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:37,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:12:37,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:12:37,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:38,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:38,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:38,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:38,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:12:38,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:12:38,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:39,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:39,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:39,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:39,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:12:39,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:12:39,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:39,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:39,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:39,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:39,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:12:39,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:12:39,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:40,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:40,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:40,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:40,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:12:40,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:12:40,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:41,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:41,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:41,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:41,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:12:41,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:12:41,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:41,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:41,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:41,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:41,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:12:41,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:12:41,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:42,253 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:12:42,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:12:42,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:12:42,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 16:12:42,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 16:12:42,538 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:12:45,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:45,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:45,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:45,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:12:45,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:12:45,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:47,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:47,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:47,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:47,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:12:47,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:12:47,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:48,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:48,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:48,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:48,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:12:48,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:12:48,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:48,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:48,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:49,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:49,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:12:49,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:12:49,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:50,220 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:12:50,241 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:12:50,317 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.640 +2025-10-01 16:12:50,318 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:12:50,318 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:12:51,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:51,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:51,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:51,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:12:51,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:12:51,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:51,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:51,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:51,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:51,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:12:51,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:12:51,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:52,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:52,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:52,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:53,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:12:53,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:12:53,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:53,580 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:12:53,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:12:53,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:12:53,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 16:12:53,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 16:12:53,866 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:12:54,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:54,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:54,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:54,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:12:54,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:12:54,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:55,483 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:12:55,506 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:12:55,583 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.821 +2025-10-01 16:12:55,583 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:12:55,585 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:12:58,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:12:58,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:12:58,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:12:59,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:12:59,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:12:59,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:12:59,066 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:12:59,083 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:12:59,175 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.726 +2025-10-01 16:12:59,175 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:12:59,176 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:13:00,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:00,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:00,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:00,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:13:00,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:13:00,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:01,656 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:01,674 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:01,748 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.856 +2025-10-01 16:13:01,748 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:13:01,748 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:13:01,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:01,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:01,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:02,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:13:02,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:13:02,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:02,077 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:02,103 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:02,184 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.574 +2025-10-01 16:13:02,184 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:13:02,185 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:13:02,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:02,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:02,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:02,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:13:02,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:13:02,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:02,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:03,007 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:03,097 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.786 +2025-10-01 16:13:03,098 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:13:03,099 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:13:05,106 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:05,143 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:05,236 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.127 +2025-10-01 16:13:05,237 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 16:13:05,238 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 16:13:06,408 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:06,431 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:06,517 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.859 +2025-10-01 16:13:06,517 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:13:06,517 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:13:06,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:06,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:06,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:06,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:13:06,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:13:06,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:08,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:08,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:08,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:08,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:13:08,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:13:08,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:08,780 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:08,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:08,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.820 +2025-10-01 16:13:08,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:13:08,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:13:09,083 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:09,104 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:09,181 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.235 +2025-10-01 16:13:09,182 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:13:09,182 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:13:10,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:10,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:11,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:11,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:13:11,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:13:11,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:11,441 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:11,465 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:11,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.630 +2025-10-01 16:13:11,549 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:13:11,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:13:12,627 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:12,665 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:12,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.241 +2025-10-01 16:13:12,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:13:12,747 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:13:13,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:13,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:13,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:13,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:13:13,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:13:13,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:15,973 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:16,000 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:16,079 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.476 +2025-10-01 16:13:16,079 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:13:16,080 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:13:16,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:16,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:16,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:16,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:13:16,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:13:16,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:17,236 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:17,263 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:17,354 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.886 +2025-10-01 16:13:17,354 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:13:17,355 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:13:20,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:20,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:20,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:20,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:13:20,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:13:20,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:22,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:22,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:22,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:23,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:13:23,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:13:23,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:24,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:24,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:24,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:24,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:13:24,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:13:24,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:26,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:26,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:26,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:26,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:13:26,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:13:26,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:27,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:27,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:27,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:27,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:13:27,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:13:27,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:30,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:30,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:30,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:30,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:13:30,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:13:30,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:30,901 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:30,922 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:31,006 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.767 +2025-10-01 16:13:31,006 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:13:31,007 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:13:31,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:31,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:31,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:31,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 16:13:31,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 16:13:31,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:33,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:33,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:33,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:33,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:13:33,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:13:33,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:34,279 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:34,308 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:34,384 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.294 +2025-10-01 16:13:34,384 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:13:34,384 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:13:35,504 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:35,520 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(601, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:35,591 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.491 +2025-10-01 16:13:35,591 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 16:13:35,591 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 16:13:35,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:35,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:35,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:35,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:13:35,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:13:35,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:37,862 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:37,883 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:37,960 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.069 +2025-10-01 16:13:37,960 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:13:37,960 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:13:38,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:38,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:38,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:38,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:13:38,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:13:38,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:38,530 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:38,546 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 798, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:38,619 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.409 +2025-10-01 16:13:38,619 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:13:38,619 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:13:38,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:38,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:38,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:38,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:13:38,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:13:38,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:40,458 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:40,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:40,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.066 +2025-10-01 16:13:40,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:13:40,597 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:13:40,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:40,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:41,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:41,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:13:41,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:13:41,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:41,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:41,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:41,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:41,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:13:41,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:13:41,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:42,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:42,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:42,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:42,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:13:42,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:13:42,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:43,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:43,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:44,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:44,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:13:44,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:13:44,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:44,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:44,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:44,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:44,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:13:44,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:13:44,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:44,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:44,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:44,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:45,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:13:45,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:13:45,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:45,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:45,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:46,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:46,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 16:13:46,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 16:13:46,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:46,156 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:13:46,179 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:13:46,276 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.758 +2025-10-01 16:13:46,277 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 16:13:46,278 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 16:13:47,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:47,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:47,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:47,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:13:47,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:13:48,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:49,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:49,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:49,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:50,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:13:50,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:13:50,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:51,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:51,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:51,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:51,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:13:51,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:13:51,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:51,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:51,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:51,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:51,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:13:51,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:13:51,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:54,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:54,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:54,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:54,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:13:54,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:13:54,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:56,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:56,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:56,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:56,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:13:56,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:13:56,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:56,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:56,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:56,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:56,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:13:56,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:13:56,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:57,263 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:13:57,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:13:57,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:13:57,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 16:13:57,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 16:13:57,546 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:13:59,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:59,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:59,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:13:59,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:13:59,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:13:59,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:13:59,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:13:59,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:13:59,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:00,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:14:00,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:14:00,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:02,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:02,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:02,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:02,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:14:02,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:14:02,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:04,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:04,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:04,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:04,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:14:04,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:14:04,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:04,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:04,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:04,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:04,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:14:04,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:14:04,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:05,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:05,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:05,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:05,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:14:05,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:14:05,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:06,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:06,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:06,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:06,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:14:06,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:14:06,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:07,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:07,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:07,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:07,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:14:07,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:14:07,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:08,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:08,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:08,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:09,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:14:09,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:14:09,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:09,175 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:14:09,190 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(637, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:14:09,260 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.714 +2025-10-01 16:14:09,260 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 16:14:09,261 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 16:14:09,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:09,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:09,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:09,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:14:09,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:14:09,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:09,982 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:14:09,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:14:10,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:14:10,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 16:14:10,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 16:14:10,269 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:14:12,265 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:14:12,280 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(637, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:14:12,347 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.114 +2025-10-01 16:14:12,347 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 16:14:12,348 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s +2025-10-01 16:14:15,498 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:14:15,522 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(654, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:14:15,592 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.498 +2025-10-01 16:14:15,593 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 16:14:15,593 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 16:14:15,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:15,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:16,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:16,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:14:16,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:14:16,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:16,965 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:14:16,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:14:17,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:14:17,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 16:14:17,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 16:14:17,256 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:14:20,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:20,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:20,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:20,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:14:20,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:14:20,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:21,933 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:14:21,966 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:14:22,040 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.378 +2025-10-01 16:14:22,040 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:14:22,040 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:14:23,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:23,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:23,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:23,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:14:23,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:14:23,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:24,394 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:14:24,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:14:24,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:14:24,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 16:14:24,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 16:14:24,680 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:14:25,199 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:14:25,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:14:25,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:14:25,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 16:14:25,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 16:14:25,497 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:14:25,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:25,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:25,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:26,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:14:26,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:14:26,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:27,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:27,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:27,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:27,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:14:27,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:14:27,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:29,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:29,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:29,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:29,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:14:29,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:14:29,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:30,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:30,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:30,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:30,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:14:30,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:14:30,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:30,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:30,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:30,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:30,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:14:30,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:14:30,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:31,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:31,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:31,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:31,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:14:31,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:14:31,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:31,588 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:14:31,628 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:14:31,710 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.328 +2025-10-01 16:14:31,710 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:14:31,710 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:14:32,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:32,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:32,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:33,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:14:33,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:14:33,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:34,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:34,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:34,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:34,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:14:34,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:14:34,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:34,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:34,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:34,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:34,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:14:34,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:14:34,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:34,743 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:14:34,765 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:14:34,838 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.519 +2025-10-01 16:14:34,839 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:14:34,839 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:14:34,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:34,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:34,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:34,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 16:14:34,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 16:14:34,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:35,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:35,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:35,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:35,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:14:35,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:14:35,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:36,282 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:14:36,320 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:14:36,400 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.880 +2025-10-01 16:14:36,400 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:14:36,400 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:14:36,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:36,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:37,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:37,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:14:37,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:14:37,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:38,270 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:14:38,295 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:14:38,370 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.956 +2025-10-01 16:14:38,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:14:38,370 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:14:39,005 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:14:39,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:14:39,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:14:39,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 16:14:39,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 16:14:39,283 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:14:39,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:39,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:39,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:39,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:14:39,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:14:39,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:39,633 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:14:39,658 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:14:39,736 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.118 +2025-10-01 16:14:39,737 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:14:39,738 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:14:40,497 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:14:40,522 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:14:40,605 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.291 +2025-10-01 16:14:40,606 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:14:40,606 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:14:42,355 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:14:42,376 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:14:42,455 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.266 +2025-10-01 16:14:42,456 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:14:42,456 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:14:44,049 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:14:44,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:14:44,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:14:44,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 16:14:44,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 16:14:44,333 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:14:44,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:44,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:44,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:44,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:14:44,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:14:44,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:49,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:49,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:49,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:49,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:14:49,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:14:49,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:51,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:51,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:51,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:51,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:14:51,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:14:51,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:51,971 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:14:51,993 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:14:52,066 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.359 +2025-10-01 16:14:52,067 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:14:52,067 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:14:52,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:52,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:52,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:52,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 16:14:52,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 16:14:52,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:54,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:54,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:54,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:55,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:14:55,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:14:55,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:57,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:57,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:57,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:57,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:14:57,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:14:57,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:57,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:57,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:57,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:57,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:14:57,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:14:57,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:14:59,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:14:59,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:14:59,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:14:59,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:14:59,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:14:59,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:00,642 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:15:00,669 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:15:00,759 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.262 +2025-10-01 16:15:00,759 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 16:15:00,761 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:15:01,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:01,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:01,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:02,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:15:02,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:15:02,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:03,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:03,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:03,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:03,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-01 16:15:03,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-01 16:15:03,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:03,927 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:15:03,957 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:15:04,057 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.381 +2025-10-01 16:15:04,058 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 16:15:04,059 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 16:15:04,591 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:15:04,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:15:04,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:15:04,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-01 16:15:04,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-01 16:15:04,857 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:15:07,891 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:15:07,931 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:15:08,035 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.231 +2025-10-01 16:15:08,035 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 16:15:08,037 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 16:15:10,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:10,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:10,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:10,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:15:10,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:15:10,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:11,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:11,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:11,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:12,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:15:12,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:15:12,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:12,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:12,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:12,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:12,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:15:12,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:15:12,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:13,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:13,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:13,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:13,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:15:13,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:15:13,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:13,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:13,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:13,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:13,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:15:13,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:15:13,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:14,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:14,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:14,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:14,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:15:14,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:15:14,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:16,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:16,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:16,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:17,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:15:17,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:15:17,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:18,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:18,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:18,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:18,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:15:18,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:15:18,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:18,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:18,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:18,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:18,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:15:18,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:15:18,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:19,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:19,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:19,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:19,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:15:19,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:15:19,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:20,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:20,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:20,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:20,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:15:20,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:15:20,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:20,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:20,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:20,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:20,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:15:20,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:15:20,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:23,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:23,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:23,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:24,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:15:24,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:15:24,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:24,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:24,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:24,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:25,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:15:25,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:15:25,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:25,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:25,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:25,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:25,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:15:25,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:15:25,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:25,754 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:15:25,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:15:25,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:15:26,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 16:15:26,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 16:15:26,037 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:15:26,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:26,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:26,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:26,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:15:26,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:15:26,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:27,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:27,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:27,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:27,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:15:27,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:15:27,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:28,731 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:15:28,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:15:28,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:15:29,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 16:15:29,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 16:15:29,021 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:15:30,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:30,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:30,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:30,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:15:30,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:15:30,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:31,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:31,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:31,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:31,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:15:31,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:15:31,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:33,745 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:15:33,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:15:33,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:15:34,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-01 16:15:34,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +2025-10-01 16:15:34,057 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:15:34,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:34,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:34,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:34,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:15:34,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:15:34,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:34,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:34,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:34,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:35,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:15:35,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:15:35,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:36,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:36,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:36,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:36,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:15:36,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:15:36,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:36,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:36,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:37,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:37,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:15:37,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:15:37,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:37,688 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:15:37,712 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:15:37,798 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.917 +2025-10-01 16:15:37,798 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:15:37,798 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:15:40,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:40,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:40,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:40,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:15:40,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:15:40,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:40,659 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:15:40,680 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:15:40,750 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.005 +2025-10-01 16:15:40,750 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 16:15:40,750 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 16:15:40,926 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:15:40,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:15:40,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:15:41,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 16:15:41,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 16:15:41,215 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:15:41,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:41,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:41,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:41,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:15:41,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:15:41,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:42,571 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:15:42,610 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:15:42,691 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.340 +2025-10-01 16:15:42,691 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:15:42,693 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:15:43,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:43,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:43,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:43,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:15:43,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:15:43,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:43,833 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:15:43,879 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:15:43,980 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.107 +2025-10-01 16:15:43,980 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 16:15:43,981 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 16:15:44,386 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:15:44,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:15:44,518 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.289 +2025-10-01 16:15:44,519 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 16:15:44,520 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:15:46,374 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:15:46,396 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:15:46,489 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.396 +2025-10-01 16:15:46,489 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 16:15:46,490 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 16:15:46,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:46,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:46,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:46,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 16:15:46,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 16:15:46,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:47,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:47,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:47,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:47,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:15:47,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:15:47,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:48,065 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:15:48,082 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 675, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:15:48,164 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.599 +2025-10-01 16:15:48,164 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:15:48,164 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:15:48,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:48,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:48,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:48,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:15:48,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:15:48,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:49,378 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:15:49,406 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:15:49,494 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.832 +2025-10-01 16:15:49,494 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:15:49,495 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 16:15:49,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:49,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:49,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:50,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:15:50,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:15:50,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:50,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:50,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:50,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:50,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:15:50,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:15:50,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:52,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:52,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:52,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:52,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:15:52,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:15:52,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:55,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:55,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:55,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:56,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 16:15:56,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 16:15:56,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:56,891 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:15:56,940 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:15:57,043 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.627 +2025-10-01 16:15:57,043 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 16:15:57,045 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 16:15:57,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:57,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:57,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:57,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:15:57,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:15:57,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:57,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:57,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:57,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:57,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:15:57,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:15:57,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:58,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:58,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:58,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:58,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:15:58,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:15:58,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:59,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:15:59,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:15:59,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:15:59,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:15:59,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:15:59,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:15:59,998 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:16:00,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:16:00,114 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.738 +2025-10-01 16:16:00,114 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:16:00,115 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:16:01,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:01,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:01,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:01,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:16:01,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:16:01,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:02,294 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:16:02,324 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:16:02,418 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.605 +2025-10-01 16:16:02,418 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 16:16:02,419 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 16:16:03,279 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:16:03,304 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:16:03,396 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.712 +2025-10-01 16:16:03,396 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:16:03,397 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:16:03,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:03,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:03,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:03,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:16:03,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:16:03,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:06,591 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:16:06,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:16:06,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:16:06,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 16:16:06,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-01 16:16:06,893 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:16:07,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:07,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:07,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:07,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:16:07,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:16:07,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:07,275 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:16:07,302 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 718, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:16:07,382 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.135 +2025-10-01 16:16:07,382 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:16:07,383 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:16:07,983 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:16:08,007 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:16:08,096 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.049 +2025-10-01 16:16:08,097 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:16:08,098 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:16:08,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:08,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:08,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:08,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:16:08,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:16:08,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:09,949 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:16:09,974 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:16:10,065 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.368 +2025-10-01 16:16:10,065 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:16:10,066 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:16:13,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:13,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:13,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:13,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:16:13,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:16:13,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:13,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:13,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:13,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:13,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:16:13,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:16:13,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:13,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:13,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:13,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:13,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:16:13,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:16:13,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:14,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:14,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:14,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:14,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:16:14,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:16:14,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:14,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:14,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:14,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:15,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:16:15,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:16:15,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:16,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:16,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:16,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:16,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:16:16,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:16:16,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:17,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:17,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:17,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:17,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:16:17,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:16:17,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:18,131 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:16:18,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:16:18,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:16:18,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 16:16:18,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 16:16:18,412 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:16:19,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:19,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:19,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:19,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:16:19,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:16:19,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:19,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:19,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:19,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:19,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:16:19,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:16:19,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:20,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:20,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:20,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:20,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:16:20,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:16:20,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:21,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:21,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:21,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:21,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:16:21,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:16:21,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:21,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:21,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:21,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:22,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:16:22,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:16:22,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:22,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:22,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:22,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:22,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:16:22,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:16:22,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:22,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:22,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:22,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:22,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:16:22,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:16:22,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:23,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:23,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:23,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:23,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:16:23,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:16:23,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:24,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:24,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:24,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:24,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:16:24,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:16:24,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:25,473 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:16:25,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:16:25,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:16:25,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 16:16:25,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-01 16:16:25,747 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:16:26,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:26,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:27,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:27,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:16:27,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:16:27,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:28,732 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:16:28,745 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:16:28,823 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.191 +2025-10-01 16:16:28,823 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:16:28,823 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:16:29,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:29,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:29,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:29,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:16:29,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:16:29,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:29,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:29,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:29,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:29,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 16:16:29,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 16:16:29,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:30,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:30,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:30,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:31,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:16:31,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:16:31,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:32,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:32,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:32,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:32,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:16:32,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:16:32,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:32,564 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:16:32,583 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:16:32,662 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.292 +2025-10-01 16:16:32,662 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:16:32,662 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:16:33,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:33,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:33,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:33,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:16:33,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:16:33,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:33,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:33,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:33,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:33,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:16:33,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:16:33,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:34,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:34,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:34,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:34,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:16:34,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:16:34,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:35,823 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:16:35,844 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:16:35,921 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.665 +2025-10-01 16:16:35,921 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:16:35,922 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:16:36,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:36,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:36,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:36,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:16:36,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:16:36,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:40,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:40,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:40,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:40,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:16:40,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:16:40,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:41,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:41,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:41,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:41,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:16:41,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:16:41,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:41,271 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:16:41,292 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:16:41,366 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.686 +2025-10-01 16:16:41,366 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:16:41,367 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:16:41,615 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:16:41,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:16:41,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:16:41,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 16:16:41,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-01 16:16:41,887 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:16:43,880 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:16:43,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:16:43,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:16:44,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 16:16:44,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 16:16:44,164 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:16:44,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:44,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:44,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:44,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:16:44,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:16:44,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:44,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:44,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:44,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:45,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:16:45,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:16:45,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:45,062 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:16:45,082 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:16:45,155 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.804 +2025-10-01 16:16:45,155 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:16:45,155 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:16:45,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:45,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:45,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:45,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:16:45,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:16:45,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:47,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:47,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:47,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:47,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:16:47,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:16:47,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:48,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:48,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:48,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:48,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:16:48,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:16:48,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:48,498 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:16:48,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:16:48,608 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.136 +2025-10-01 16:16:48,608 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:16:48,608 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:16:49,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:49,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:49,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:49,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 16:16:49,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 16:16:49,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:50,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:50,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:50,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:50,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:16:50,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:16:50,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:52,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:52,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:52,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:52,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:16:52,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:16:52,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:53,262 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:16:53,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:16:53,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:16:53,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 16:16:53,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 16:16:53,562 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:16:55,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:55,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:55,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:55,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:16:55,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:16:55,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:55,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:55,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:55,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:55,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:16:55,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:16:55,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:57,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:57,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:57,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:57,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:16:57,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:16:57,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:57,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:57,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:57,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:57,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:16:57,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:16:57,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:16:58,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:16:58,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:16:58,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:16:59,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:16:59,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:16:59,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:00,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:00,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:00,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:00,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:17:00,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:17:00,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:00,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:00,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:00,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:01,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:17:01,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:17:01,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:01,721 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:17:01,752 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:17:01,842 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=164.308 +2025-10-01 16:17:01,842 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 16:17:01,843 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:17:02,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:02,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:02,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:02,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:17:02,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:17:02,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:03,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:03,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:03,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:03,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:17:03,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:17:03,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:04,382 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:17:04,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:17:04,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:17:04,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +2025-10-01 16:17:04,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +2025-10-01 16:17:04,648 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:17:05,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:05,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:05,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:05,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:17:05,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:17:05,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:05,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:05,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:05,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:06,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:17:06,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:17:06,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:07,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:07,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:07,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:07,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:17:07,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:17:07,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:08,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:08,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:08,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:08,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:17:08,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:17:08,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:08,587 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 16:17:08,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 16:17:08,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 16:17:08,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.410s +2025-10-01 16:17:08,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.410s (avg: 0.137s/image) +2025-10-01 16:17:08,998 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 16:17:11,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:11,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:11,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:11,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:17:11,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:17:11,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:11,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:11,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:11,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:11,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:17:11,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:17:11,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:12,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:12,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:12,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:13,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:17:13,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:17:13,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:13,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:13,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:13,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:13,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:17:13,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:17:13,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:13,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:13,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:13,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:13,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:17:13,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:17:13,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:14,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:14,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:14,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:14,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:17:14,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:17:14,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:15,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:15,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:15,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:15,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:17:15,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:17:15,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:15,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:15,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:15,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:15,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:17:15,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:17:15,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:16,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:16,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:16,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:16,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:17:16,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:17:16,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:17,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:17,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:17,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:17,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:17:17,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:17:17,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:18,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:18,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:18,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:18,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:17:18,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:17:18,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:18,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:18,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:18,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:18,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:17:18,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:17:18,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:18,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:18,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:18,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:19,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:17:19,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:17:19,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:19,774 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:17:19,798 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:17:19,879 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.959 +2025-10-01 16:17:19,879 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:17:19,879 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:17:20,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:20,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:20,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:20,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:17:20,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:17:20,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:21,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:21,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:21,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:21,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:17:21,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:17:21,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:22,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:22,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:22,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:22,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:17:22,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:17:22,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:22,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:22,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:22,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:22,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:17:22,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:17:22,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:23,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:23,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:23,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:24,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:17:24,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:17:24,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:24,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:24,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:24,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:24,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:17:24,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:17:24,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:24,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:24,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:24,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:24,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:17:24,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:17:24,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:25,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:25,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:25,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:26,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:17:26,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:17:26,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:26,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:26,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:26,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:26,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:17:26,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:17:26,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:26,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:26,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:26,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:26,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:17:26,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:17:26,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:27,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:27,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:27,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:27,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:17:27,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:17:27,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:27,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:27,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:27,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:27,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:17:27,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:17:27,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:28,043 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:17:28,058 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:17:28,130 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.134 +2025-10-01 16:17:28,131 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:17:28,131 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:17:28,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:28,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:28,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:28,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:17:28,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:17:28,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:29,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:29,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:29,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:29,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:17:29,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:17:29,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:30,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:30,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:30,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:30,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:17:30,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:17:30,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:30,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:30,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:30,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:31,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:17:31,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:17:31,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:31,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:31,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:31,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:31,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:17:31,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:17:31,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:31,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:31,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:32,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:32,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:17:32,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:17:32,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:32,233 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:17:32,249 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:17:32,329 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.072 +2025-10-01 16:17:32,329 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:17:32,329 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:17:32,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:32,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:32,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:32,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:17:32,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:17:32,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:33,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:33,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:33,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:33,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:17:33,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:17:33,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:33,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:33,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:33,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:33,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:17:33,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:17:33,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:34,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:34,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:34,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:34,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:17:34,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:17:34,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:34,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:34,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:34,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:34,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:17:34,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:17:34,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:34,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:34,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:34,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:34,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:17:34,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:17:34,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:35,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:35,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:35,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:35,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:17:35,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:17:35,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:36,045 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:17:36,074 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:17:36,149 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.920 +2025-10-01 16:17:36,150 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:17:36,150 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:17:38,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:38,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:38,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:38,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:17:38,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:17:38,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:40,588 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:17:40,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:17:40,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:17:40,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 16:17:40,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 16:17:40,876 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:17:41,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:41,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:41,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:41,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:17:41,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:17:41,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:41,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:41,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:41,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:41,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:17:41,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:17:41,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:42,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:42,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:42,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:42,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:17:42,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:17:42,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:43,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:43,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:43,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:43,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 16:17:43,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 16:17:43,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:44,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:44,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:45,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:45,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:17:45,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:17:45,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:46,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:46,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:46,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:46,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:17:46,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:17:46,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:48,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:48,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:48,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:48,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:17:48,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:17:48,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:48,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:48,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:48,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:49,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:17:49,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:17:49,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:49,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:49,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:49,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:49,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:17:49,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:17:49,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:49,676 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:17:49,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:17:49,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:17:49,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 16:17:49,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-01 16:17:49,945 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:17:52,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:52,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:52,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:52,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:17:52,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:17:52,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:53,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:53,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:53,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:53,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:17:53,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:17:53,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:53,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:53,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:53,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:53,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:17:53,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:17:53,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:54,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:54,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:54,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:55,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:17:55,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:17:55,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:57,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:57,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:57,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:57,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:17:57,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:17:57,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:58,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:58,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:58,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:58,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:17:58,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:17:58,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:17:59,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:17:59,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:17:59,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:17:59,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:17:59,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:17:59,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:01,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:01,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:01,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:01,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:18:01,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:18:01,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:03,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:03,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:03,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:03,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 16:18:03,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 16:18:03,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:04,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:04,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:04,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:04,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:18:04,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:18:04,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:06,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:06,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:06,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:06,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:18:06,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:18:06,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:06,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:06,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:06,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:06,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:18:06,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:18:06,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:07,462 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:18:07,501 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:18:07,583 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.142 +2025-10-01 16:18:07,584 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:18:07,584 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:18:10,908 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:18:10,935 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:18:11,011 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.728 +2025-10-01 16:18:11,011 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:18:11,011 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:18:13,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:13,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:13,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:13,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:18:13,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:18:13,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:14,320 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:18:14,356 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:18:14,433 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.073 +2025-10-01 16:18:14,434 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:18:14,434 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:18:15,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:15,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:15,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:15,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:18:15,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:18:15,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:20,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:20,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:20,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:20,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:18:20,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:18:20,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:21,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:21,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:21,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:21,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:18:21,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:18:21,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:24,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:24,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:24,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:24,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:18:24,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:18:24,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:29,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:29,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:29,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:29,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:18:29,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:18:29,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:29,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:29,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:30,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:30,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:18:30,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:18:30,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:32,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:32,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:32,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:32,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:18:32,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:18:32,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:38,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:38,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:38,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:38,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:18:38,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:18:38,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:40,989 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:18:41,025 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:18:41,112 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.604 +2025-10-01 16:18:41,112 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:18:41,112 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:18:44,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:44,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:44,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:44,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:18:44,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:18:44,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:46,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:46,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:46,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:46,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:18:46,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:18:46,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:48,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:48,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:48,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:48,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:18:48,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:18:48,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:52,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:52,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:52,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:52,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:18:52,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:18:52,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:55,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:55,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:55,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:55,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 16:18:55,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 16:18:55,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:18:56,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:18:56,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:18:56,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:18:56,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:18:56,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:18:56,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:01,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:01,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:01,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:01,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:19:01,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:19:01,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:03,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:03,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:03,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:03,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:19:03,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:19:03,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:04,258 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:04,286 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:04,384 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.291 +2025-10-01 16:19:04,384 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 16:19:04,386 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 16:19:05,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:05,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:05,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:05,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:19:05,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:19:05,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:06,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:06,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:06,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:06,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:19:06,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:19:06,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:07,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:07,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:07,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:07,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:19:07,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:19:07,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:10,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:10,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:10,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:11,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:19:11,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:19:11,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:12,335 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:12,365 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:12,451 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.297 +2025-10-01 16:19:12,451 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:19:12,451 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:19:12,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:12,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:12,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:12,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:19:12,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:19:12,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:13,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:13,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:13,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:13,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:19:13,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:19:13,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:15,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:15,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:15,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:15,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:19:15,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:19:15,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:16,723 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:16,760 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:16,850 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.976 +2025-10-01 16:19:16,851 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:19:16,852 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:19:17,376 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:17,396 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:17,479 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.363 +2025-10-01 16:19:17,479 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:19:17,479 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:19:19,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:19,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:19,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:19,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 16:19:19,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 16:19:19,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:19,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:19,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:19,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:19,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:19:19,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:19:19,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:20,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:20,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:20,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:20,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:19:20,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:19:20,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:20,693 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:20,714 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:20,786 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.273 +2025-10-01 16:19:20,786 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:19:20,786 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:19:21,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:21,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:21,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:21,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:19:21,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:19:21,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:22,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:22,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:22,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:22,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:19:22,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:19:22,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:23,978 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:24,010 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:24,091 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.483 +2025-10-01 16:19:24,091 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:19:24,093 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:19:24,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:24,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:24,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:24,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:19:24,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:19:24,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:26,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:26,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:26,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:26,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:19:26,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:19:26,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:27,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:27,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:27,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:27,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:19:27,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:19:27,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:27,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:27,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:27,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:27,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:19:27,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:19:27,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:28,253 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:28,292 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:28,396 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.685 +2025-10-01 16:19:28,396 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 16:19:28,397 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 16:19:29,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:29,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:29,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:29,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:19:29,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:19:29,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:29,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:29,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:29,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:29,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:19:29,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:19:29,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:29,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:29,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:29,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:29,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:19:29,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:19:29,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:31,380 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:31,400 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:31,484 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.439 +2025-10-01 16:19:31,484 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:19:31,484 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:19:32,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:32,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:32,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:32,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:19:32,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:19:32,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:33,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:33,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:33,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:33,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:19:33,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:19:33,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:34,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:34,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:34,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:34,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:19:34,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:19:34,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:35,845 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:35,875 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:35,961 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.884 +2025-10-01 16:19:35,961 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:19:35,962 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:19:36,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:36,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:36,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:36,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:19:36,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:19:36,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:37,065 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:37,107 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:37,208 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.435 +2025-10-01 16:19:37,208 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 16:19:37,209 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 16:19:37,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:37,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:37,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:37,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:19:37,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:19:37,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:38,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:38,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:38,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:38,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:19:38,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:19:38,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:39,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:39,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:39,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:39,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:19:39,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:19:39,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:39,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:39,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:39,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:40,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:19:40,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:19:40,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:40,088 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:40,105 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:40,197 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.423 +2025-10-01 16:19:40,197 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:19:40,199 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:19:43,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:43,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:43,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:43,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:19:43,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:19:43,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:43,715 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:43,749 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:43,848 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.367 +2025-10-01 16:19:43,848 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 16:19:43,849 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 16:19:44,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:44,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:44,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:44,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:19:44,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:19:44,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:44,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:44,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:44,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:44,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:19:44,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:19:44,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:45,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:45,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:45,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:45,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:19:45,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:19:45,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:46,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:46,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:46,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:46,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:19:46,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:19:46,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:48,532 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:48,565 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:48,658 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.341 +2025-10-01 16:19:48,658 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 16:19:48,658 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:19:49,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:49,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:49,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:49,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:19:49,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:19:49,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:49,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:49,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:49,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:49,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:19:49,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:19:49,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:49,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:49,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:49,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:49,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:19:49,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:19:49,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:50,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:50,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:50,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:50,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:19:50,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:19:50,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:51,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:51,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:51,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:51,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:19:51,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:19:51,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:52,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:52,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:52,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:52,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:19:52,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:19:52,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:52,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:52,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:52,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:52,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:19:52,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:19:52,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:52,725 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:52,743 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:52,820 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.410 +2025-10-01 16:19:52,820 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:19:52,820 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:19:52,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:52,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:52,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:53,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:19:53,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:19:53,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:53,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:53,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:53,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:53,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:19:53,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:19:53,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:54,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:54,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:54,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:54,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:19:54,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:19:54,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:56,037 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:19:56,052 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:19:56,128 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.208 +2025-10-01 16:19:56,129 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:19:56,129 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:19:56,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:56,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:56,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:56,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:19:56,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:19:56,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:56,489 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:19:56,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:19:56,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:19:56,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-01 16:19:56,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +2025-10-01 16:19:56,750 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:19:58,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:58,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:58,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:58,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:19:58,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:19:58,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:58,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:58,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:58,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:58,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:19:58,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:19:58,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:19:59,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:19:59,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:19:59,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:19:59,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:19:59,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:19:59,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:00,249 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:00,278 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:00,354 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.567 +2025-10-01 16:20:00,354 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:20:00,354 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:20:01,556 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:20:01,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:20:01,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:20:01,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 16:20:01,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 16:20:01,857 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:20:02,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:02,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:02,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:02,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:20:02,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:20:02,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:02,683 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:02,705 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(792, 792, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:02,778 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.898 +2025-10-01 16:20:02,779 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:20:02,779 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:20:03,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:03,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:03,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:03,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:20:03,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:20:03,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:03,964 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:20:03,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:20:04,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:20:04,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 16:20:04,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 16:20:04,259 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:20:05,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:05,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:05,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:05,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:20:05,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:20:05,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:07,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:07,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:07,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:07,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:20:07,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:20:07,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:07,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:07,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:07,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:07,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:20:07,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:20:07,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:08,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:08,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:08,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:08,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:20:08,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:20:08,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:08,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:08,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:08,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:08,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:20:08,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:20:08,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:09,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:09,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:09,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:09,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:20:09,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:20:09,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:10,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:10,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:10,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:10,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:20:10,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:20:10,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:11,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:11,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:11,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:11,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:20:11,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:20:11,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:12,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:12,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:12,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:12,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:20:12,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:20:12,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:13,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:13,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:13,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:13,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:20:13,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:20:13,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:13,934 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:20:13,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:20:13,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:20:14,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 16:20:14,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 16:20:14,212 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:20:15,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:15,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:15,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:15,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:20:15,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:20:15,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:17,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:17,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:17,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:17,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:20:17,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:20:17,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:17,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:17,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:17,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:17,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 16:20:17,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 16:20:17,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:18,024 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:18,044 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:18,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.233 +2025-10-01 16:20:18,122 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:20:18,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:20:19,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:19,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:19,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:19,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:20:19,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:20:19,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:23,083 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:20:23,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:20:23,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:20:23,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 16:20:23,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 16:20:23,377 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:20:23,577 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:23,597 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:23,670 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.006 +2025-10-01 16:20:23,671 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:20:23,671 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:20:23,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:23,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:23,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:23,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:20:23,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:20:23,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:25,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:25,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:25,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:25,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:20:25,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:20:25,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:29,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:29,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:29,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:29,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:20:29,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:20:29,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:29,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:30,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:30,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:30,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:20:30,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:20:30,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:30,198 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:30,216 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:30,296 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.913 +2025-10-01 16:20:30,296 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:20:30,296 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:20:31,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:31,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:31,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:31,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:20:31,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:20:31,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:33,691 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:33,711 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:33,790 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=169.593 +2025-10-01 16:20:33,790 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:20:33,790 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:20:34,001 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:34,026 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:34,101 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.308 +2025-10-01 16:20:34,101 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:20:34,102 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:20:34,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:34,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:34,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:34,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:20:34,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:20:34,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:37,198 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:37,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:37,313 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.216 +2025-10-01 16:20:37,313 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:20:37,313 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:20:37,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:37,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:37,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:37,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:20:37,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:20:37,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:38,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:38,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:38,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:38,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:20:38,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:20:38,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:40,081 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:40,111 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:40,187 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.387 +2025-10-01 16:20:40,188 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:20:40,188 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:20:40,877 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:40,896 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:40,972 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.955 +2025-10-01 16:20:40,973 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:20:40,973 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:20:42,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:42,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:42,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:42,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:20:42,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:20:42,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:43,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:43,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:43,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:43,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:20:43,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:20:43,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:43,679 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:43,702 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:43,781 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.932 +2025-10-01 16:20:43,782 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:20:43,783 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:20:43,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:43,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:43,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:44,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:20:44,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:20:44,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:44,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:44,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:44,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:44,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:20:44,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:20:44,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:44,804 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:44,824 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:44,901 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=164.481 +2025-10-01 16:20:44,901 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:20:44,901 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:20:45,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:45,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:45,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:45,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 16:20:45,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 16:20:45,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:46,795 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:46,822 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:46,904 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.880 +2025-10-01 16:20:46,904 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:20:46,905 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:20:48,454 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:20:48,473 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:20:48,563 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.890 +2025-10-01 16:20:48,563 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:20:48,563 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:20:48,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:48,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:48,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:49,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:20:49,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:20:49,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:49,526 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:20:49,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:20:49,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:20:49,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 16:20:49,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 16:20:49,806 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:20:51,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:51,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:51,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:51,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:20:51,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:20:51,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:53,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:53,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:53,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:53,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:20:53,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:20:53,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:53,769 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:20:53,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:20:53,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:20:54,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 16:20:54,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 16:20:54,056 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:20:55,233 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:20:55,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:20:55,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:20:55,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 16:20:55,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 16:20:55,514 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:20:56,026 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:20:56,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:20:56,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:20:56,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-01 16:20:56,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-01 16:20:56,292 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:20:56,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:56,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:56,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:56,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:20:56,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:20:56,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:20:57,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:20:57,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:20:57,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:20:57,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:20:57,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:20:57,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:00,306 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:21:00,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:21:00,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:21:00,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s +2025-10-01 16:21:00,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image) +2025-10-01 16:21:00,628 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:21:02,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:02,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:02,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:02,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:21:02,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:21:02,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:02,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:02,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:02,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:02,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:21:02,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:21:02,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:02,818 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:21:02,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:21:02,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:21:03,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 16:21:03,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 16:21:03,112 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:21:03,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:03,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:03,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:03,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:21:03,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:21:03,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:04,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:04,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:04,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:04,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:21:04,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:21:04,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:05,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:05,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:05,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:05,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:21:05,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:21:05,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:07,546 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:21:07,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:21:07,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:21:07,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 16:21:07,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 16:21:07,827 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:21:08,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:08,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:08,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:08,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:21:08,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:21:08,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:09,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:09,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:09,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:09,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:21:09,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:21:09,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:09,895 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:21:09,909 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:21:09,974 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.103 +2025-10-01 16:21:09,974 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.065s +2025-10-01 16:21:09,975 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.066s +2025-10-01 16:21:10,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:10,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:10,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:10,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:21:10,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:21:10,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:11,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:11,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:11,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:11,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:21:11,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:21:11,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:11,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:11,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:11,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:12,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:21:12,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:21:12,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:13,480 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:21:13,498 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:21:13,567 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.996 +2025-10-01 16:21:13,567 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 16:21:13,567 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 16:21:13,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:13,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:14,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:14,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:21:14,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:21:14,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:14,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:14,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:14,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:15,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:21:15,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:21:15,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:15,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:15,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:15,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:15,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:21:15,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:21:15,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:16,893 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:21:16,908 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:21:16,971 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.768 +2025-10-01 16:21:16,971 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.063s +2025-10-01 16:21:16,971 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.064s +2025-10-01 16:21:16,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:16,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:17,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:17,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:21:17,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:21:17,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:17,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:17,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:17,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:17,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:21:17,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:21:17,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:18,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:18,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:18,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:18,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:21:18,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:21:18,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:20,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:20,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:20,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:20,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:21:20,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:21:20,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:21,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:21,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:21,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:21,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:21:21,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:21:21,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:22,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:22,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:22,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:22,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:21:22,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:21:22,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:22,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:22,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:22,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:22,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:21:22,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:21:22,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:22,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:22,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:22,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:22,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:21:22,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:21:22,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:24,627 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:21:24,655 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:21:24,733 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.802 +2025-10-01 16:21:24,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:21:24,734 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:21:25,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:25,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:25,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:25,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:21:25,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:21:25,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:27,406 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:21:27,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:21:27,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:21:27,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 16:21:27,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 16:21:27,687 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:21:27,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:27,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:27,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:28,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:21:28,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:21:28,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:28,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:28,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:28,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:28,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:21:28,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:21:28,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:28,504 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:21:28,525 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:21:28,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.574 +2025-10-01 16:21:28,595 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 16:21:28,595 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 16:21:30,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:30,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:30,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:30,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:21:30,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:21:30,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:31,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:31,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:31,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:31,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:21:31,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:21:31,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:32,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:32,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:32,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:32,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:21:32,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:21:32,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:32,399 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:21:32,417 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:21:32,490 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.729 +2025-10-01 16:21:32,491 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:21:32,491 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:21:33,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:33,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:33,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:33,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:21:33,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:21:33,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:33,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:33,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:33,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:33,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 16:21:33,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 16:21:33,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:33,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:33,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:33,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:34,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 16:21:34,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 16:21:34,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:36,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:36,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:36,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:36,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:21:36,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:21:36,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:36,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:36,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:36,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:36,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:21:36,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:21:36,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:38,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:38,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:38,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:38,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:21:38,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:21:38,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:38,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:38,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:38,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:38,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:21:38,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:21:38,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:38,676 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:21:38,699 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:21:38,774 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.780 +2025-10-01 16:21:38,774 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:21:38,774 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:21:39,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:39,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:39,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:39,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:21:39,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:21:39,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:40,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:40,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:40,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:40,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:21:40,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:21:40,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:40,742 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:21:40,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:21:40,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:21:41,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 16:21:41,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 16:21:41,025 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:21:43,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:43,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:43,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:43,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:21:43,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:21:43,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:43,852 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:21:43,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:21:43,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:21:44,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 16:21:44,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 16:21:44,134 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:21:45,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:45,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:45,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:45,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:21:45,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:21:45,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:45,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:45,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:45,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:45,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:21:45,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:21:45,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:46,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:46,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:46,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:46,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:21:46,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:21:46,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:47,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:47,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:47,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:48,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:21:48,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:21:48,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:49,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:49,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:49,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:49,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:21:49,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:21:49,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:49,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:49,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:49,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:49,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:21:49,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:21:49,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:50,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:50,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:50,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:50,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s +2025-10-01 16:21:50,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image) +2025-10-01 16:21:50,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:51,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:51,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:51,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:51,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:21:51,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:21:51,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:53,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:53,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:53,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:53,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:21:53,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:21:53,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:53,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:53,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:53,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:53,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:21:53,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:21:53,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:54,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:54,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:54,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:54,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:21:54,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:21:54,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:54,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:54,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:54,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:55,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:21:55,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:21:55,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:55,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:55,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:55,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:55,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:21:55,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:21:55,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:57,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:57,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:57,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:57,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:21:57,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:21:57,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:58,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:58,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:58,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:58,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:21:58,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:21:58,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:21:59,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:21:59,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:21:59,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:21:59,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:21:59,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:21:59,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:00,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:00,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:00,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:00,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:22:00,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:22:00,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:00,662 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:22:00,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:22:00,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:22:00,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 16:22:00,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 16:22:00,952 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:22:02,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:02,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:02,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:02,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:22:02,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:22:02,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:04,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:04,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:04,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:04,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:22:04,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:22:04,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:05,200 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:22:05,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:22:05,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:22:05,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 16:22:05,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 16:22:05,483 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:22:06,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:06,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:06,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:06,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:22:06,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:22:06,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:06,614 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:22:06,633 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:22:06,714 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.949 +2025-10-01 16:22:06,714 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:22:06,714 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:22:07,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:07,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:07,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:07,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:22:07,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:22:07,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:08,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:08,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:08,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:08,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:22:08,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:22:08,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:08,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:08,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:08,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:08,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:22:08,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:22:08,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:09,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:09,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:09,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:09,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:22:09,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:22:09,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:11,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:11,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:11,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:12,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:22:12,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:22:12,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:13,121 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:22:13,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:22:13,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:22:13,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 16:22:13,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 16:22:13,400 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:22:13,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:13,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:13,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:14,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:22:14,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:22:14,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:14,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:14,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:14,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:14,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:22:14,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:22:14,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:14,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:14,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:14,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:14,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:22:14,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:22:14,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:17,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:17,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:17,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:17,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:22:17,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:22:17,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:17,409 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:22:17,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:22:17,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:22:17,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 16:22:17,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 16:22:17,709 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:22:17,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:17,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:18,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:18,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:22:18,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:22:18,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:18,299 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:22:18,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:22:18,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:22:18,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 16:22:18,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-01 16:22:18,572 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:22:19,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:19,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:19,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:19,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:22:19,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:22:19,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:21,855 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:22:21,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:22:21,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:22:22,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 16:22:22,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 16:22:22,124 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:22:22,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:22,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:22,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:22,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:22:22,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:22:22,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:22,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:22,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:22,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:22,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:22:22,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:22:22,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:25,256 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:22:25,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:22:25,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:22:25,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 16:22:25,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 16:22:25,537 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:22:26,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:26,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:26,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:26,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:22:26,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:22:26,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:26,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:26,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:26,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:26,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:22:26,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:22:26,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:27,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:27,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:27,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:27,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:22:27,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:22:27,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:28,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:28,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:28,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:28,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:22:28,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:22:28,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:29,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:29,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:29,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:30,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:22:30,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:22:30,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:31,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:31,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:31,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:31,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:22:31,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:22:31,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:33,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:33,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:33,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:33,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:22:33,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:22:33,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:33,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:33,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:33,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:34,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:22:34,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:22:34,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:34,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:34,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:34,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:34,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:22:34,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:22:34,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:37,272 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:22:37,293 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:22:37,370 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.789 +2025-10-01 16:22:37,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:22:37,370 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:22:38,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:38,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:38,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:38,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:22:38,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:22:38,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:38,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:38,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:38,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:38,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:22:38,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:22:38,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:40,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:40,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:40,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:40,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:22:40,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:22:40,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:40,696 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:22:40,711 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:22:40,783 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.727 +2025-10-01 16:22:40,784 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:22:40,784 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:22:41,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:41,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:41,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:42,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:22:42,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:22:42,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:44,204 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:22:44,229 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:22:44,303 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.106 +2025-10-01 16:22:44,303 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:22:44,303 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:22:46,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:46,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:46,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:47,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:22:47,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:22:47,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:48,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:48,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:48,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:48,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:22:48,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:22:48,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:53,283 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:22:53,308 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:22:53,385 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.378 +2025-10-01 16:22:53,385 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:22:53,385 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:22:53,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:53,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:53,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:53,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:22:53,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:22:53,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:22:56,730 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:22:56,750 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:22:56,826 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.184 +2025-10-01 16:22:56,827 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:22:56,827 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:22:57,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:22:57,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:22:57,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:22:57,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:22:57,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:22:57,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:00,053 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:23:00,073 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:23:00,152 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.940 +2025-10-01 16:23:00,152 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:23:00,152 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:23:02,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:02,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:02,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:02,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:23:02,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:23:02,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:02,788 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:23:02,821 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:23:02,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=167.775 +2025-10-01 16:23:02,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:23:02,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:23:03,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:03,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:03,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:03,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:23:03,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:23:03,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:04,096 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:23:04,123 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:23:04,199 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.899 +2025-10-01 16:23:04,200 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:23:04,200 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:23:04,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:04,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:04,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:04,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:23:04,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:23:04,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:06,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:06,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:06,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:06,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:23:06,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:23:06,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:07,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:07,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:07,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:08,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:23:08,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:23:08,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:11,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:11,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:11,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:11,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:23:11,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:23:11,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:13,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:13,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:13,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:13,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:23:13,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:23:13,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:13,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:13,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:13,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:13,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:23:13,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:23:13,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:13,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:13,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:14,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:14,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:23:14,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:23:14,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:15,243 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:23:15,275 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:23:15,363 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.354 +2025-10-01 16:23:15,363 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:23:15,364 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:23:17,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:17,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:17,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:17,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:23:17,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:23:17,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:17,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:17,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:17,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:17,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:23:17,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:23:17,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:18,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:18,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:18,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:18,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:23:18,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:23:18,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:18,774 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:23:18,806 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:23:18,901 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.020 +2025-10-01 16:23:18,901 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 16:23:18,903 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 16:23:19,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:19,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:19,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:19,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:23:19,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:23:19,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:19,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:19,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:19,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:20,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:23:20,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:23:20,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:21,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:21,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:21,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:21,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:23:21,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:23:21,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:22,677 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:23:22,709 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:23:22,810 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.382 +2025-10-01 16:23:22,810 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 16:23:22,811 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 16:23:23,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:23,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:23,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:23,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:23:23,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:23:23,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:23,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:23,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:23,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:23,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:23:23,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:23:23,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:24,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:24,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:24,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:24,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:23:24,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:23:24,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:26,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:26,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:26,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:26,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:23:26,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:23:26,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:26,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:26,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:26,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:26,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:23:26,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:23:26,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:30,494 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:23:30,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:23:30,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:23:30,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 16:23:30,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-01 16:23:30,803 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:23:31,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:31,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:31,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:31,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:23:31,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:23:31,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:34,432 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:23:34,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:23:34,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:23:34,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 16:23:34,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 16:23:34,732 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:23:36,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:36,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:36,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:36,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:23:36,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:23:36,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:38,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:38,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:38,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:38,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:23:38,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:23:38,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:39,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:39,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:39,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:39,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:23:39,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:23:39,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:40,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:40,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:40,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:40,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:23:40,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:23:40,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:41,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:41,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:41,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:41,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:23:41,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:23:41,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:43,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:43,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:43,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:43,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:23:43,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:23:43,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:43,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:43,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:43,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:43,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:23:43,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:23:43,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:46,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:46,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:46,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:46,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:23:46,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:23:46,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:47,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:47,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:47,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:47,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:23:47,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:23:47,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:49,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:49,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:49,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:49,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:23:49,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:23:49,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:49,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:49,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:49,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:49,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:23:49,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:23:49,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:50,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:50,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:50,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:50,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:23:50,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:23:50,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:53,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:53,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:53,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:53,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:23:53,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:23:53,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:54,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:54,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:54,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:54,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:23:54,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:23:54,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:23:56,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:23:56,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:23:56,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:23:57,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 16:23:57,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 16:23:57,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:00,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:00,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:00,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:00,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:24:00,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:24:00,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:01,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:01,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:01,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:01,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:24:01,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:24:01,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:03,008 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:24:03,031 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:24:03,118 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.978 +2025-10-01 16:24:03,119 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:24:03,119 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:24:05,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:05,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:05,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:05,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:24:05,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:24:05,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:06,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:06,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:06,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:06,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:24:06,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:24:06,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:06,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:24:06,595 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:24:06,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.390 +2025-10-01 16:24:06,668 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:24:06,669 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:24:10,443 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:24:10,482 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:24:10,560 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=174.266 +2025-10-01 16:24:10,560 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:24:10,560 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:24:11,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:11,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:11,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:11,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:24:11,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:24:11,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:14,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:14,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:14,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:15,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:24:15,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:24:15,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:18,648 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:24:18,670 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:24:18,744 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=174.248 +2025-10-01 16:24:18,744 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:24:18,744 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:24:20,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:20,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:20,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:20,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:24:20,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:24:20,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:20,250 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:24:20,275 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:24:20,350 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.626 +2025-10-01 16:24:20,351 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:24:20,351 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:24:21,905 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:24:21,939 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:24:22,020 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.468 +2025-10-01 16:24:22,020 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:24:22,020 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:24:23,721 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:24:23,741 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:24:23,817 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.638 +2025-10-01 16:24:23,818 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:24:23,818 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:24:26,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:26,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:26,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:26,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:24:26,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:24:26,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:27,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:24:27,516 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:24:27,589 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.127 +2025-10-01 16:24:27,589 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:24:27,590 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:24:29,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:29,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:29,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:29,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:24:29,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:24:29,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:30,490 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:24:30,513 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:24:30,589 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.520 +2025-10-01 16:24:30,589 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:24:30,589 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:24:32,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:32,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:32,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:32,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:24:32,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:24:32,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:32,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:32,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:32,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:33,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:24:33,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:24:33,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:34,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:34,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:34,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:34,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:24:34,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:24:34,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:36,417 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 16:24:36,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 16:24:36,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 16:24:36,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.409s +2025-10-01 16:24:36,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.409s (avg: 0.136s/image) +2025-10-01 16:24:36,827 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 16:24:38,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:38,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:38,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:38,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:24:38,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:24:38,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:39,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:39,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:39,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:40,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:24:40,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:24:40,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:41,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:41,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:41,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:41,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:24:41,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:24:41,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:41,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:41,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:41,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:41,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:24:41,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:24:41,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:41,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:41,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:41,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:41,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:24:41,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:24:41,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:43,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:43,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:43,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:43,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:24:43,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:24:43,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:43,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:43,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:43,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:44,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:24:44,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:24:44,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:44,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:44,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:44,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:44,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:24:44,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:24:44,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:44,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:44,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:44,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:44,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:24:44,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:24:44,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:46,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:46,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:46,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:46,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:24:46,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:24:46,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:46,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:46,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:46,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:46,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:24:46,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:24:46,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:46,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:46,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:46,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:46,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 16:24:46,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 16:24:46,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:47,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:47,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:47,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:48,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:24:48,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:24:48,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:50,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:50,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:50,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:50,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:24:50,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:24:50,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:51,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:51,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:51,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:52,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:24:52,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:24:52,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:52,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:52,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:52,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:52,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:24:52,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:24:52,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:52,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:52,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:52,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:52,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:24:52,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:24:52,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:53,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:53,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:53,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:53,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:24:53,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:24:53,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:53,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:53,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:53,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:53,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:24:53,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:24:53,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:54,038 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:24:54,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:24:54,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:24:54,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 16:24:54,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 16:24:54,327 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:24:56,399 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:24:56,427 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:24:56,512 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.415 +2025-10-01 16:24:56,512 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:24:56,514 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:24:56,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:56,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:56,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:56,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:24:56,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:24:56,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:57,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:57,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:57,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:57,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:24:57,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:24:57,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:24:58,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:24:58,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:24:58,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:24:58,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:24:58,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:24:58,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:00,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:00,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:00,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:00,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:25:00,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:25:00,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:01,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:01,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:01,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:01,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:25:01,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:25:01,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:01,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:01,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:01,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:01,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:25:01,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:25:01,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:02,172 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:25:02,210 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:25:02,300 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.554 +2025-10-01 16:25:02,300 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:25:02,300 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:25:02,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:02,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:02,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:02,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:25:02,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:25:02,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:03,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:03,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:03,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:03,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:25:03,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:25:03,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:03,818 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:25:03,844 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:25:03,927 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.056 +2025-10-01 16:25:03,927 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:25:03,929 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:25:04,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:04,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:04,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:04,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:25:04,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:25:04,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:04,685 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:25:04,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:25:04,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:25:04,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 16:25:04,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 16:25:04,969 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:25:07,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:07,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:07,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:07,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:25:07,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:25:07,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:07,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:07,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:07,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:07,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:25:07,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:25:07,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:08,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:08,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:08,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:08,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 16:25:08,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 16:25:08,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:08,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:08,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:08,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:08,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:25:08,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:25:08,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:09,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:09,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:09,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:09,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:25:09,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:25:09,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:11,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:11,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:11,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:11,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:25:11,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:25:11,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:12,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:12,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:12,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:12,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:25:12,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:25:12,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:12,816 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:25:12,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:25:12,934 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.640 +2025-10-01 16:25:12,935 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:25:12,935 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:25:15,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:15,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:15,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:15,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:25:15,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:25:15,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:16,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:16,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:16,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:16,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:25:16,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:25:16,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:19,368 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:25:19,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:25:19,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:25:19,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 16:25:19,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 16:25:19,655 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:25:20,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:20,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:20,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:20,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:25:20,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:25:20,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:21,123 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:25:21,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:25:21,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:25:21,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 16:25:21,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 16:25:21,406 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:25:21,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:21,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:21,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:22,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:25:22,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:25:22,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:23,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:23,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:23,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:23,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:25:23,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:25:23,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:24,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:24,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:24,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:24,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:25:24,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:25:24,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:24,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:24,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:24,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:24,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:25:24,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:25:24,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:25,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:25,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:25,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:25,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:25:25,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:25:25,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:27,729 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:25:27,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:25:27,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:25:28,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 16:25:28,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 16:25:28,030 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:25:28,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:28,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:28,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:28,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:25:28,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:25:28,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:31,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:31,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:31,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:32,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:25:32,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:25:32,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:32,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:32,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:32,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:32,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:25:32,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:25:32,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:34,296 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:25:34,317 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:25:34,392 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.571 +2025-10-01 16:25:34,393 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:25:34,393 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:25:35,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:35,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:35,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:35,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:25:35,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:25:35,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:35,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:35,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:35,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:36,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:25:36,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:25:36,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:38,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:38,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:38,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:38,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:25:38,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:25:38,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:38,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:38,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:38,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:38,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:25:38,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:25:38,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:38,720 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:25:38,728 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:25:38,796 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=12.615 +2025-10-01 16:25:38,796 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 16:25:38,796 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 16:25:38,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:38,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:38,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:38,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.123s +2025-10-01 16:25:38,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.123s (avg: 0.123s/image) +2025-10-01 16:25:38,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:39,079 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:25:39,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:25:39,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:25:39,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-01 16:25:39,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.128s/image) +2025-10-01 16:25:39,337 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:25:42,359 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:25:42,373 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:25:42,451 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.378 +2025-10-01 16:25:42,452 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:25:42,452 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:25:42,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:42,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:42,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:42,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:25:42,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:25:42,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:43,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:43,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:43,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:43,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:25:43,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:25:43,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:44,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:44,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:44,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:45,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:25:45,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:25:45,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:46,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:46,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:46,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:46,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 16:25:46,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 16:25:46,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:46,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:46,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:46,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:47,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:25:47,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:25:47,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:47,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:47,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:47,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:47,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:25:47,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:25:47,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:47,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:47,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:47,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:47,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:25:47,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:25:47,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:50,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:50,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:50,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:50,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:25:50,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:25:50,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:51,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:51,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:52,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:52,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:25:52,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:25:52,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:52,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:52,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:52,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:52,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:25:52,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:25:52,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:54,947 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:25:54,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:25:54,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:25:55,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-01 16:25:55,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.131s/image) +2025-10-01 16:25:55,209 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:25:55,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:55,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:55,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:55,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:25:55,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:25:55,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:55,591 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:25:55,611 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:25:55,688 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.816 +2025-10-01 16:25:55,689 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:25:55,689 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:25:56,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:56,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:56,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:56,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:25:56,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:25:56,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:25:59,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:25:59,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:25:59,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:25:59,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:25:59,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:25:59,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:00,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:00,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:00,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:00,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:26:00,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:26:00,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:00,920 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:26:00,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:26:00,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:26:01,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 16:26:01,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 16:26:01,199 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:26:01,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:01,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:01,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:01,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:26:01,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:26:01,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:01,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:01,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:01,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:02,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:26:02,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:26:02,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:02,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:02,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:02,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:02,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 16:26:02,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 16:26:02,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:03,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:03,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:03,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:03,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:26:03,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:26:03,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:06,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:06,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:06,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:06,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 16:26:06,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 16:26:06,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:07,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:07,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:07,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:07,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:26:07,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:26:07,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:07,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:07,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:07,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:07,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:26:07,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:26:07,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:10,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:10,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:10,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:11,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 16:26:11,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 16:26:11,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:12,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:12,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:12,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:12,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:26:12,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:26:12,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:12,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:12,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:12,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:12,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:26:12,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:26:12,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:13,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:13,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:13,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:13,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:26:13,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:26:13,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:13,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:13,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:13,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:14,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:26:14,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:26:14,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:14,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:14,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:14,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:14,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:26:14,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:26:14,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:15,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:15,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:15,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:15,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:26:15,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:26:15,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:16,001 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:16,018 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(792, 792, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:16,089 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.438 +2025-10-01 16:26:16,090 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:26:16,090 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:26:16,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:16,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:16,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:16,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:26:16,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:26:16,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:17,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:17,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:17,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:17,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:26:17,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:26:17,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:18,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:18,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:18,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:18,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:26:18,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:26:18,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:18,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:18,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:18,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:18,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:26:18,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:26:18,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:20,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:20,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:20,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:20,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:26:20,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:26:20,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:23,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:23,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:23,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:23,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 16:26:23,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 16:26:23,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:23,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:23,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:23,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:23,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:26:23,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:26:23,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:23,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:23,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:23,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:24,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:26:24,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:26:24,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:24,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:24,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:24,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:24,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:26:24,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:26:24,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:25,084 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:26:25,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:26:25,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:26:25,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 16:26:25,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 16:26:25,376 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:26:26,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:26,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:26,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:26,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:26:26,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:26:26,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:26,601 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:26,640 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:26,727 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.725 +2025-10-01 16:26:26,727 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:26:26,729 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 16:26:27,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:27,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:27,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:27,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:26:27,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:26:27,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:27,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:27,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:27,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:27,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:26:27,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:26:27,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:28,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:28,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:28,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:28,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:26:28,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:26:28,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:30,562 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:30,582 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:30,670 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.261 +2025-10-01 16:26:30,670 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:26:30,670 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:26:30,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:30,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:30,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:31,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:26:31,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:26:31,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:31,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:31,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:31,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:31,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:26:31,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:26:31,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:32,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:32,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:32,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:32,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:26:32,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:26:32,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:32,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:32,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:33,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:33,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:26:33,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:26:33,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:33,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:33,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:33,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:34,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:26:34,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:26:34,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:34,648 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:34,671 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:34,746 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.085 +2025-10-01 16:26:34,746 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:26:34,746 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:26:36,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:36,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:36,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:36,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:26:36,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:26:36,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:37,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:37,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:37,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:37,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:26:37,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:26:37,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:37,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:37,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:37,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:37,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:26:37,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:26:37,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:40,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:40,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:40,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:41,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:26:41,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:26:41,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:42,599 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:42,645 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:42,722 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.519 +2025-10-01 16:26:42,722 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:26:42,722 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:26:43,124 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:26:43,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:26:43,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:26:43,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 16:26:43,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-01 16:26:43,410 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:26:43,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:43,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:43,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:43,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:26:43,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:26:43,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:43,958 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:43,980 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:44,069 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.909 +2025-10-01 16:26:44,070 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 16:26:44,071 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:26:44,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:44,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:44,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:44,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:26:44,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:26:44,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:45,836 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:45,865 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:45,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.654 +2025-10-01 16:26:45,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:26:45,946 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:26:46,366 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:46,408 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:46,490 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.578 +2025-10-01 16:26:46,490 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:26:46,490 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:26:46,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:46,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:46,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:46,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:26:46,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:26:46,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:47,445 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:47,468 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:47,547 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.650 +2025-10-01 16:26:47,547 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:26:47,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:26:47,752 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:47,776 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:47,861 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.526 +2025-10-01 16:26:47,861 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:26:47,861 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:26:49,596 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:49,623 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:49,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.520 +2025-10-01 16:26:49,708 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:26:49,709 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:26:50,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:50,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:50,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:50,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:26:50,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:26:50,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:50,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:50,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:50,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:50,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:26:50,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:26:50,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:51,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:51,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:51,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:51,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:26:51,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:26:51,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:51,459 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:51,483 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:51,573 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.709 +2025-10-01 16:26:51,574 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:26:51,575 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:26:51,613 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:51,634 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:51,721 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.322 +2025-10-01 16:26:51,721 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:26:51,722 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:26:51,927 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:51,945 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:52,014 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.442 +2025-10-01 16:26:52,014 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 16:26:52,014 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 16:26:53,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:53,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:53,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:53,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:26:53,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:26:53,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:54,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:54,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:54,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:54,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:26:54,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:26:54,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:54,605 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:26:54,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:26:54,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:26:54,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 16:26:54,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 16:26:54,898 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:26:55,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:55,503 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:55,578 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.359 +2025-10-01 16:26:55,579 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:26:55,579 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:26:57,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:57,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:57,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:57,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:26:57,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:26:57,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:58,283 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:26:58,305 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:26:58,382 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=171.373 +2025-10-01 16:26:58,383 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:26:58,383 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:26:59,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:59,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:59,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:59,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:26:59,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:26:59,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:26:59,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:26:59,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:26:59,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:26:59,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:26:59,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:26:59,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:00,029 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:27:00,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:27:00,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:27:00,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 16:27:00,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 16:27:00,307 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:27:00,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:00,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:00,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:00,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:27:00,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:27:00,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:02,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:02,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:02,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:02,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:27:02,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:27:02,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:04,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:04,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:04,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:04,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:27:04,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:27:04,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:05,334 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:27:05,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:27:05,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:27:05,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 16:27:05,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-01 16:27:05,615 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:27:05,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:05,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:05,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:06,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:27:06,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:27:06,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:06,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:06,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:06,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:06,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:27:06,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:27:06,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:07,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:07,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:07,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:07,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:27:07,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:27:07,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:09,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:09,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:09,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:09,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:27:09,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:27:09,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:09,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:09,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:10,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:10,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:27:10,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:27:10,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:10,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:27:10,526 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:27:10,616 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.522 +2025-10-01 16:27:10,616 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:27:10,618 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:27:11,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:11,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:11,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:11,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:27:11,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:27:11,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:12,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:12,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:12,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:12,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:27:12,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:27:12,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:12,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:12,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:12,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:13,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:27:13,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:27:13,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:13,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:13,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:13,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:14,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:27:14,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:27:14,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:14,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:14,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:14,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:14,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:27:14,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:27:14,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:14,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:14,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:15,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:15,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:27:15,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:27:15,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:15,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:15,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:15,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:15,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:27:15,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:27:15,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:16,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:16,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:16,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:16,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:27:16,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:27:16,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:16,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:16,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:16,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:16,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:27:16,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:27:16,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:16,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:16,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:16,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:16,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:27:16,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:27:16,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:19,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:19,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:19,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:19,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:27:19,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:27:19,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:20,045 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:27:20,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:27:20,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:27:20,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 16:27:20,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 16:27:20,319 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:27:21,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:21,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:21,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:21,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:27:21,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:27:21,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:23,041 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:27:23,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:27:23,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:27:23,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 16:27:23,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 16:27:23,324 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:27:23,818 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:27:23,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:27:23,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:27:24,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 16:27:24,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 16:27:24,108 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:27:24,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:24,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:24,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:24,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:27:24,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:27:24,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:24,788 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:27:24,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:27:24,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:27:25,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-01 16:27:25,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.131s/image) +2025-10-01 16:27:25,051 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:27:25,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:25,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:25,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:25,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:27:25,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:27:25,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:26,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:26,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:26,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:26,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:27:26,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:27:26,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:27,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:27,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:27,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:27,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:27:27,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:27:27,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:27,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:27,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:27,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:27,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:27:27,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:27:27,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:28,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:28,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:28,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:28,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:27:28,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:27:28,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:28,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:28,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:28,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:28,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:27:28,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:27:28,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:29,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:29,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:29,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:29,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:27:29,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:27:29,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:29,913 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:27:29,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:27:29,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:27:30,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 16:27:30,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +2025-10-01 16:27:30,221 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:27:30,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:30,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:30,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:30,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:27:30,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:27:30,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:31,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:31,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:31,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:31,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:27:31,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:27:31,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:32,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:32,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:32,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:32,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:27:32,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:27:32,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:32,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:32,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:32,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:32,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:27:32,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:27:32,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:32,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:32,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:32,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:33,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:27:33,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:27:33,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:33,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:33,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:33,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:33,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:27:33,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:27:33,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:33,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:33,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:33,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:33,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:27:33,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:27:33,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:34,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:34,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:34,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:34,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:27:34,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:27:34,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:34,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:34,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:34,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:34,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:27:34,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:27:34,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:34,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:34,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:34,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:35,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:27:35,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:27:35,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:37,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:37,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:37,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:38,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:27:38,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:27:38,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:38,268 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:27:38,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:27:38,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:27:38,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 16:27:38,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 16:27:38,562 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:27:38,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:38,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:38,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:39,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:27:39,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:27:39,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:40,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:40,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:40,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:40,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:27:40,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:27:40,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:41,239 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:27:41,279 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:27:41,362 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.354 +2025-10-01 16:27:41,362 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:27:41,362 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:27:42,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:42,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:42,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:42,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:27:42,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:27:42,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:42,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:42,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:42,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:42,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:27:42,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:27:42,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:42,802 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:27:42,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:27:42,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:27:43,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 16:27:43,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 16:27:43,094 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:27:43,527 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:27:43,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:27:43,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:27:43,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 16:27:43,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 16:27:43,803 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:27:45,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:45,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:45,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:45,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:27:45,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:27:45,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:46,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:46,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:46,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:46,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:27:46,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:27:46,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:47,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:47,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:47,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:47,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:27:47,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:27:47,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:48,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:48,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:48,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:48,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:27:48,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:27:48,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:49,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:49,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:49,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:49,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:27:49,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:27:49,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:49,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:49,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:49,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:49,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:27:49,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:27:49,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:51,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:51,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:51,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:52,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:27:52,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:27:52,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:52,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:52,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:52,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:53,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:27:53,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:27:53,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:53,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:53,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:53,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:53,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:27:53,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:27:53,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:53,553 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:27:53,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:27:53,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:27:53,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.256s +2025-10-01 16:27:53,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.256s (avg: 0.128s/image) +2025-10-01 16:27:53,810 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:27:55,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:55,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:55,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:55,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:27:55,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:27:55,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:57,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:57,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:57,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:57,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.206s +2025-10-01 16:27:57,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.206s (avg: 0.206s/image) +2025-10-01 16:27:57,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:57,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:57,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:58,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:58,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:27:58,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:27:58,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:27:58,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:27:58,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:27:58,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:27:58,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:27:58,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:27:58,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:00,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:00,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:00,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:00,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:28:00,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:28:00,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:00,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:00,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:00,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:00,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:28:00,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:28:00,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:01,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:01,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:01,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:01,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 16:28:01,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 16:28:01,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:02,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:02,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:02,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:02,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:28:02,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:28:02,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:02,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:02,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:02,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:02,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:28:02,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:28:02,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:03,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:03,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:03,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:03,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:28:03,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:28:03,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:06,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:06,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:06,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:06,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:28:06,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:28:06,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:09,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:09,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:09,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:09,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 16:28:09,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 16:28:09,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:09,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:09,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:09,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:09,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:28:09,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:28:09,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:11,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:11,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:11,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:11,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:28:11,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:28:11,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:11,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:11,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:11,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:12,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:28:12,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:28:12,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:13,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:13,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:13,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:13,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:28:13,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:28:13,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:14,449 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:28:14,490 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:28:14,579 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.019 +2025-10-01 16:28:14,579 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 16:28:14,581 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:28:15,745 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:28:15,766 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:28:15,855 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.104 +2025-10-01 16:28:15,855 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:28:15,855 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 16:28:15,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:15,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:15,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:16,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:28:16,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:28:16,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:16,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:16,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:16,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:16,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:28:16,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:28:16,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:17,091 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 16:28:17,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 16:28:17,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 16:28:17,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.394s +2025-10-01 16:28:17,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.394s (avg: 0.131s/image) +2025-10-01 16:28:17,487 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 16:28:18,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:18,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:18,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:18,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:28:18,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:28:18,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:20,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:20,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:20,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:20,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:28:20,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:28:20,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:23,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:23,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:23,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:23,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:28:23,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:28:23,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:25,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:25,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:25,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:25,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:28:25,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:28:25,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:27,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:27,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:27,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:27,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:28:27,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:28:27,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:28,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:28,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:28,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:28,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 16:28:28,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 16:28:28,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:29,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:29,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:29,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:29,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:28:29,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:28:29,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:31,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:31,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:31,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:32,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 16:28:32,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 16:28:32,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:32,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:32,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:32,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:32,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:28:32,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:28:32,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:32,599 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:28:32,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:28:32,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:28:32,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.234s +2025-10-01 16:28:32,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.234s (avg: 0.117s/image) +2025-10-01 16:28:32,834 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:28:32,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:32,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:33,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:33,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:28:33,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:28:33,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:34,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:34,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:34,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:34,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:28:34,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:28:34,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:36,757 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:28:36,774 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:28:36,856 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.707 +2025-10-01 16:28:36,856 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:28:36,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:28:37,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:37,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:37,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:37,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:28:37,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:28:37,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:37,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:37,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:37,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:37,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:28:37,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:28:37,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:37,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:37,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:37,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:37,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:28:37,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:28:37,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:39,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:39,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:39,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:39,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:28:39,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:28:39,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:40,268 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:28:40,298 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:28:40,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.270 +2025-10-01 16:28:40,380 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:28:40,380 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:28:41,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:41,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:41,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:41,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:28:41,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:28:41,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:43,666 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:28:43,690 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:28:43,769 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.743 +2025-10-01 16:28:43,769 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:28:43,769 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:28:45,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:45,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:45,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:45,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:28:45,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:28:45,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:46,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:46,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:46,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:46,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:28:46,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:28:46,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:47,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:47,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:47,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:47,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:28:47,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:28:47,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:48,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:48,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:48,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:48,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:28:48,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:28:48,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:49,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:49,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:49,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:49,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:28:49,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:28:49,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:49,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:49,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:49,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:49,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:28:49,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:28:49,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:53,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:53,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:53,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:53,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:28:53,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:28:53,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:55,741 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:28:55,762 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:28:55,855 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.120 +2025-10-01 16:28:55,855 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 16:28:55,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:28:56,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:56,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:56,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:56,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:28:56,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:28:56,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:58,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:58,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:58,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:28:58,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:28:58,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:28:58,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:28:59,038 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:28:59,065 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:28:59,147 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.929 +2025-10-01 16:28:59,148 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:28:59,149 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:28:59,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:28:59,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:28:59,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:00,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:29:00,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:29:00,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:00,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:00,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:00,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:00,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:29:00,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:29:00,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:01,707 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:29:01,738 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:29:01,837 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=182.354 +2025-10-01 16:29:01,837 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 16:29:01,838 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 16:29:02,547 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:29:02,572 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:29:02,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.106 +2025-10-01 16:29:02,669 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 16:29:02,670 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 16:29:03,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:03,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:03,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:03,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:29:03,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:29:03,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:03,644 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:29:03,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:29:03,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:29:03,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 16:29:03,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 16:29:03,937 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:29:04,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:04,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:04,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:04,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:29:04,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:29:04,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:04,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:04,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:04,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:05,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:29:05,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:29:05,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:05,876 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:29:05,901 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:29:05,989 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.472 +2025-10-01 16:29:05,989 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:29:05,991 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:29:07,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:07,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:07,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:07,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:29:07,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:29:07,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:09,461 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:29:09,493 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:29:09,596 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.014 +2025-10-01 16:29:09,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 16:29:09,597 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 16:29:11,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:11,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:11,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:11,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:29:11,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:29:11,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:13,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:13,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:13,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:13,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:29:13,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:29:13,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:13,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:13,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:13,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:14,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:29:14,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:29:14,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:15,610 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:29:15,637 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:29:15,721 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.101 +2025-10-01 16:29:15,722 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:29:15,722 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:29:15,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:15,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:15,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:15,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:29:15,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:29:15,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:16,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:16,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:16,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:16,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:29:16,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:29:16,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:17,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:17,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:17,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:17,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:29:17,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:29:17,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:19,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:19,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:19,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:19,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:29:19,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:29:19,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:19,717 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:29:19,738 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:29:19,807 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.892 +2025-10-01 16:29:19,807 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 16:29:19,808 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 16:29:20,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:20,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:20,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:20,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:29:20,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:29:20,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:21,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:21,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:21,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:21,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:29:21,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:29:21,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:23,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:23,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:23,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:23,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:29:23,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:29:23,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:23,648 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:29:23,675 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:29:23,753 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.283 +2025-10-01 16:29:23,753 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:29:23,753 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:29:24,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:24,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:24,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:24,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:29:24,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:29:24,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:29,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:29,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:29,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:29,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:29:29,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:29:29,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:29,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:29,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:29,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:29,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:29:29,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:29:29,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:29,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:29,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:30,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:30,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:29:30,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:29:30,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:31,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:31,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:31,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:31,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:29:31,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:29:31,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:32,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:32,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:32,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:32,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:29:32,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:29:32,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:33,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:33,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:33,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:34,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:29:34,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:29:34,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:34,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:34,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:34,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:34,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:29:34,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:29:34,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:36,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:36,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:37,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:37,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:29:37,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:29:37,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:37,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:37,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:37,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:37,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:29:37,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:29:37,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:38,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:38,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:38,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:38,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:29:38,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:29:38,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:39,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:39,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:39,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:39,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:29:39,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:29:39,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:39,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:39,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:39,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:39,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:29:39,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:29:39,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:40,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:40,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:40,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:40,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:29:40,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:29:40,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:43,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:43,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:43,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:43,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:29:43,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:29:43,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:43,942 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:29:43,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:29:44,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:29:44,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 16:29:44,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 16:29:44,243 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:29:44,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:44,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:44,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:44,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:29:44,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:29:44,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:45,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:45,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:45,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:45,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:29:45,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:29:45,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:48,563 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:29:48,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:29:48,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:29:48,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 16:29:48,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 16:29:48,845 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:29:49,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:49,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:49,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:49,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 16:29:49,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 16:29:49,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:49,894 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:29:49,915 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:29:49,994 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.149 +2025-10-01 16:29:49,994 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:29:49,994 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:29:51,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:51,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:51,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:51,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:29:51,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:29:51,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:53,088 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:29:53,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:29:53,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:29:53,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 16:29:53,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 16:29:53,369 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:29:53,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:53,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:53,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:53,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:29:53,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:29:53,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:53,961 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:29:53,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:29:54,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:29:54,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 16:29:54,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 16:29:54,256 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:29:55,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:55,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:55,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:55,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:29:55,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:29:55,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:56,249 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:29:56,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:29:56,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:29:56,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 16:29:56,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 16:29:56,553 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:29:58,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:58,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:58,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:58,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:29:58,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:29:58,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:58,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:58,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:58,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:58,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:29:58,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:29:58,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:58,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:58,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:58,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:59,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:29:59,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:29:59,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:29:59,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:29:59,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:29:59,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:29:59,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:29:59,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:29:59,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:01,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:01,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:01,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:01,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:30:01,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:30:01,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:02,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:02,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:02,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:02,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 16:30:02,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 16:30:02,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:02,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:02,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:02,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:02,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:30:02,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:30:02,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:03,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:03,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:03,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:03,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:30:03,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:30:03,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:03,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:03,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:03,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:04,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:30:04,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:30:04,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:04,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:04,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:04,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:04,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:30:04,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:30:04,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:04,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:04,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:04,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:05,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:30:05,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:30:05,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:05,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:05,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:05,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:05,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-01 16:30:05,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-01 16:30:05,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:05,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:05,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:05,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:05,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:30:05,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:30:05,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:07,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:07,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:07,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:07,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:30:07,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:30:07,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:08,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:08,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:08,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:08,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:30:08,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:30:08,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:10,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:10,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:10,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:10,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 16:30:10,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 16:30:10,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:10,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:10,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:10,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:10,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:30:10,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:30:10,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:11,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:11,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:11,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:11,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:30:11,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:30:11,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:11,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:11,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:11,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:11,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:30:11,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:30:11,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:12,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:12,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:12,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:12,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:30:12,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:30:12,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:18,146 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:30:18,177 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(720, 720, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:30:18,259 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.765 +2025-10-01 16:30:18,259 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:30:18,259 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:30:19,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:19,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:19,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:19,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:30:19,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:30:19,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:20,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:20,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:20,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:20,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:30:20,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:30:20,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:22,452 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:30:22,471 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:30:22,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.086 +2025-10-01 16:30:22,549 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:30:22,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:30:22,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:22,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:22,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:22,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:30:22,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:30:22,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:24,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:24,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:24,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:24,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:30:24,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:30:24,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:24,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:24,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:24,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:24,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:30:24,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:30:24,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:25,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:25,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:25,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:25,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:30:25,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:30:25,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:26,701 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:30:26,740 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(990, 990, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:30:26,830 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.089 +2025-10-01 16:30:26,831 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:30:26,832 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:30:28,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:28,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:28,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:28,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:30:28,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:30:28,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:29,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:29,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:29,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:29,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:30:29,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:30:29,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:30,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:30,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:30,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:30,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:30:30,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:30:30,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:30,448 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:30:30,468 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:30:30,557 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.389 +2025-10-01 16:30:30,557 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 16:30:30,557 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 16:30:30,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:30,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:30,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:31,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:30:31,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:30:31,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:32,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:32,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:32,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:32,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:30:32,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:30:32,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:33,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:33,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:33,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:33,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:30:33,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:30:33,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:33,757 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:30:33,778 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:30:33,854 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.309 +2025-10-01 16:30:33,855 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:30:33,855 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:30:36,834 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:30:36,856 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:30:36,932 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.596 +2025-10-01 16:30:36,933 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:30:36,933 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:30:38,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:38,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:38,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:38,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:30:38,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:30:38,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:38,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:38,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:38,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:38,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 16:30:38,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 16:30:38,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:38,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:38,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:38,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:39,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:30:39,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:30:39,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:43,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:43,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:43,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:43,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:30:43,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:30:43,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:43,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:43,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:43,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:43,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:30:43,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:30:43,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:44,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:44,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:44,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:44,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:30:44,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:30:44,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:45,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:45,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:45,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:45,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:30:45,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:30:45,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:49,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:49,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:49,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:49,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:30:49,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:30:49,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:50,081 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:30:50,105 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:30:50,183 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.660 +2025-10-01 16:30:50,184 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:30:50,184 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:30:50,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:50,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:50,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:50,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:30:50,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:30:50,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:53,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:53,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:53,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:53,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:30:53,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:30:53,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:53,938 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:30:53,961 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:30:54,038 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.433 +2025-10-01 16:30:54,039 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:30:54,039 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:30:55,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:55,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:55,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:56,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:30:56,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:30:56,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:57,337 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:30:57,357 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:30:57,430 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.217 +2025-10-01 16:30:57,430 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:30:57,430 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:30:57,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:57,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:57,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:57,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:30:57,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:30:57,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:57,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:57,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:57,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:57,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +2025-10-01 16:30:57,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image) +2025-10-01 16:30:57,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:58,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:58,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:58,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:58,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:30:58,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:30:58,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:58,344 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:30:58,365 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:30:58,441 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.043 +2025-10-01 16:30:58,441 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:30:58,442 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:30:58,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:30:58,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:30:59,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:30:59,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:30:59,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:30:59,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:30:59,168 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:30:59,189 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:30:59,276 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.134 +2025-10-01 16:30:59,276 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:30:59,276 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:31:00,978 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:31:01,000 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(766, 766, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:31:01,075 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.815 +2025-10-01 16:31:01,075 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:31:01,075 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:31:01,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:01,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:01,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:01,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:31:01,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:31:01,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:02,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:02,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:02,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:02,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 16:31:02,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 16:31:02,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:02,976 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:31:02,999 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:31:03,081 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.388 +2025-10-01 16:31:03,081 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:31:03,082 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:31:03,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:03,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:03,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:03,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:31:03,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:31:03,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:04,621 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:31:04,648 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(842, 842, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:31:04,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.852 +2025-10-01 16:31:04,735 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:31:04,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:31:05,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:05,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:05,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:05,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:31:05,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:31:05,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:05,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:05,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:05,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:06,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:31:06,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:31:06,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:06,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:31:06,627 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:31:06,720 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.256 +2025-10-01 16:31:06,720 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:31:06,721 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:31:07,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:07,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:07,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:07,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 16:31:07,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 16:31:07,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:08,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:08,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:08,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:08,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:31:08,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:31:08,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:09,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:09,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:09,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:09,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:31:09,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:31:09,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:10,790 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:31:10,816 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:31:10,907 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.554 +2025-10-01 16:31:10,908 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:31:10,909 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:31:13,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:13,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:13,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:13,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:31:13,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:31:13,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:13,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:13,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:13,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:13,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:31:13,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:31:13,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:14,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:14,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:14,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:14,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:31:14,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:31:14,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:14,534 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:31:14,555 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:31:14,647 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.739 +2025-10-01 16:31:14,648 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:31:14,649 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:31:15,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:15,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:15,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:15,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:31:15,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:31:15,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:17,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:17,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:17,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:17,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:31:17,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:31:17,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:18,017 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:31:18,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:31:18,142 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.487 +2025-10-01 16:31:18,142 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 16:31:18,142 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 16:31:20,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:20,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:20,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:20,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:31:20,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:31:20,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:20,846 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:31:20,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:31:20,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:31:21,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 16:31:21,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 16:31:21,144 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:31:25,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:25,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:25,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:25,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:31:25,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:31:25,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:25,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:25,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:25,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:25,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:31:25,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:31:25,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:27,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:27,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:27,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:27,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:31:27,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:31:27,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:28,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:28,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:28,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:28,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:31:28,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:31:28,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:30,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:30,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:30,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:30,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:31:30,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:31:30,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:31,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:31,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:31,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:31,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:31:31,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:31:31,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:33,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:33,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:33,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:33,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:31:33,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:31:33,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:35,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:35,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:35,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:35,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:31:35,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:31:35,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:36,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:36,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:36,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:36,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:31:36,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:31:36,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:38,927 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:31:38,951 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:31:39,030 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.617 +2025-10-01 16:31:39,030 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:31:39,030 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:31:39,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:39,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:39,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:39,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:31:39,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:31:39,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:40,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:40,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:40,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:40,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:31:40,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:31:40,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:42,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:42,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:42,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:42,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:31:42,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:31:42,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:43,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:43,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:43,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:43,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:31:43,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:31:43,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:44,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:44,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:44,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:44,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:31:44,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:31:44,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:44,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:44,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:44,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:45,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:31:45,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:31:45,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:47,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:47,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:47,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:47,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:31:47,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:31:47,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:48,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:48,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:48,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:48,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:31:48,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:31:48,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:49,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:49,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:49,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:49,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:31:49,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:31:49,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:49,872 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:31:49,900 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:31:49,979 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=186.587 +2025-10-01 16:31:49,980 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:31:49,981 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:31:50,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:50,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:50,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:50,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:31:50,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:31:50,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:52,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:52,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:52,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:52,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:31:52,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:31:52,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:53,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:53,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:53,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:53,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 16:31:53,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 16:31:53,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:53,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:53,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:53,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:53,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:31:53,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:31:53,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:54,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:31:54,101 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:31:54,191 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.033 +2025-10-01 16:31:54,191 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:31:54,192 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:31:55,276 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:31:55,299 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:31:55,384 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.189 +2025-10-01 16:31:55,384 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:31:55,384 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:31:57,609 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:31:57,638 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:31:57,719 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.833 +2025-10-01 16:31:57,719 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:31:57,720 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:31:58,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:58,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:58,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:58,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:31:58,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:31:58,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:58,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:58,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:58,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:59,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:31:59,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:31:59,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:31:59,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:31:59,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:31:59,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:31:59,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:31:59,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:31:59,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:00,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:00,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:00,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:00,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:32:00,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:32:00,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:01,049 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:32:01,070 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:32:01,154 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.900 +2025-10-01 16:32:01,155 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:32:01,155 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:32:03,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:03,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:03,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:03,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:32:03,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:32:03,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:06,432 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:32:06,462 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:32:06,542 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.736 +2025-10-01 16:32:06,542 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:32:06,542 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:32:07,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:07,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:07,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:07,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:32:07,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:32:07,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:09,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:09,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:09,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:09,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:32:09,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:32:09,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:10,328 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:32:10,371 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:32:10,465 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.431 +2025-10-01 16:32:10,465 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 16:32:10,467 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 16:32:12,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:12,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:12,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:12,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:32:12,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:32:12,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:14,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:14,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:14,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:14,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 16:32:14,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 16:32:14,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:14,287 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:32:14,311 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:32:14,411 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.454 +2025-10-01 16:32:14,411 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 16:32:14,412 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 16:32:19,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:19,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:19,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:19,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:32:19,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:32:19,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:20,195 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:32:20,223 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:32:20,305 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.111 +2025-10-01 16:32:20,305 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:32:20,305 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:32:21,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:21,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:21,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:21,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:32:21,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:32:21,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:22,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:22,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:22,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:22,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:32:22,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:32:22,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:22,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:22,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:23,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:23,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:32:23,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:32:23,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:24,754 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:32:24,778 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:32:24,850 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.782 +2025-10-01 16:32:24,851 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:32:24,851 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:32:25,288 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:32:25,312 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:32:25,386 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.145 +2025-10-01 16:32:25,386 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:32:25,386 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:32:25,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:25,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:25,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:25,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:32:25,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:32:25,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:26,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:26,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:26,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:26,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:32:26,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:32:26,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:29,645 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:32:29,675 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:32:29,754 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.359 +2025-10-01 16:32:29,755 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:32:29,755 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:32:30,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:30,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:30,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:30,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:32:30,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:32:30,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:30,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:30,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:30,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:31,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:32:31,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:32:31,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:31,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:31,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:31,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:31,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:32:31,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:32:31,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:31,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:31,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:31,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:31,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:32:31,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:32:31,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:34,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:34,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:34,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:34,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:32:34,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:32:34,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:35,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:35,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:35,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:35,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:32:35,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:32:35,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:36,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:36,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:36,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:36,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:32:36,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:32:36,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:37,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:37,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:37,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:37,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:32:37,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:32:37,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:41,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:41,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:41,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:41,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:32:41,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:32:41,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:42,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:42,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:42,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:42,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:32:42,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:32:42,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:43,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:43,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:43,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:43,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:32:43,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:32:43,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:44,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:44,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:44,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:44,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:32:44,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:32:44,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:46,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:46,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:46,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:46,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:32:46,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:32:46,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:47,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:47,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:47,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:47,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:32:47,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:32:47,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:48,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:48,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:48,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:48,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:32:48,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:32:48,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:48,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:48,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:48,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:48,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:32:48,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:32:48,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:50,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:50,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:50,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:50,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:32:50,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:32:50,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:52,792 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:32:52,813 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:32:52,898 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.791 +2025-10-01 16:32:52,898 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:32:52,898 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:32:53,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:53,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:53,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:54,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:32:54,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:32:54,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:54,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:54,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:54,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:54,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:32:54,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:32:54,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:54,367 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:32:54,389 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:32:54,468 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.165 +2025-10-01 16:32:54,468 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:32:54,470 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:32:54,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:54,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:54,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:54,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 16:32:54,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 16:32:54,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:57,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:57,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:57,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:57,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:32:57,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:32:57,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:57,422 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:32:57,442 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:32:57,530 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.883 +2025-10-01 16:32:57,530 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:32:57,531 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:32:57,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:57,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:57,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:58,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:32:58,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:32:58,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:32:59,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:32:59,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:32:59,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:32:59,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:32:59,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:32:59,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:00,586 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:33:00,615 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:33:00,710 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.342 +2025-10-01 16:33:00,711 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 16:33:00,712 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 16:33:02,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:02,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:02,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:02,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:33:02,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:33:02,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:02,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:02,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:02,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:02,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:33:02,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:33:02,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:03,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:03,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:03,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:03,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:33:03,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:33:03,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:04,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:04,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:04,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:04,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:33:04,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:33:04,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:07,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:07,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:07,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:08,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.212s +2025-10-01 16:33:08,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.212s (avg: 0.212s/image) +2025-10-01 16:33:08,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:08,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:08,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:08,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:08,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:33:08,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:33:08,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:08,548 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:33:08,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:33:08,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:33:08,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 16:33:08,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 16:33:08,853 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:33:09,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:09,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:09,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:09,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 16:33:09,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 16:33:09,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:10,031 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:33:10,062 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:33:10,150 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.260 +2025-10-01 16:33:10,150 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:33:10,150 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:33:11,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:11,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:11,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:11,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:33:11,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:33:11,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:12,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:12,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:12,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:12,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:33:12,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:33:12,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:12,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:12,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:12,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:12,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:33:12,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:33:12,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:13,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:13,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:13,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:13,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 16:33:13,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 16:33:13,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:15,000 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:33:15,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:33:15,105 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.261 +2025-10-01 16:33:15,105 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:33:15,106 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:33:16,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:16,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:16,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:16,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:33:16,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:33:16,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:16,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:16,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:16,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:16,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:33:16,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:33:16,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:18,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:18,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:18,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:18,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:33:18,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:33:18,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:19,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:19,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:19,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:19,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:33:19,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:33:19,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:19,703 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:33:19,724 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:33:19,817 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.673 +2025-10-01 16:33:19,818 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 16:33:19,818 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:33:22,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:22,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:22,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:22,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 16:33:22,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 16:33:22,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:22,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:22,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:22,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:23,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:33:23,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:33:23,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:23,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:23,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:23,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:23,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:33:23,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:33:23,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:24,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:24,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:24,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:24,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:33:24,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:33:24,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:26,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:26,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:26,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:26,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:33:26,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:33:26,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:27,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:27,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:27,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:27,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:33:27,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:33:27,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:29,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:29,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:29,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:29,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:33:29,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:33:29,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:29,618 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:33:29,640 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:33:29,719 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.730 +2025-10-01 16:33:29,719 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:33:29,720 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:33:31,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:31,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:31,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:31,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:33:31,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:33:31,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:32,228 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:33:32,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:33:32,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:33:32,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 16:33:32,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 16:33:32,519 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:33:32,931 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:33:32,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:33:32,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:33:33,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 16:33:33,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 16:33:33,210 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:33:33,401 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:33:33,420 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:33:33,492 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.048 +2025-10-01 16:33:33,492 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:33:33,492 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:33:36,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:36,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:36,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:36,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:33:36,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:33:36,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:36,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:36,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:37,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:37,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:33:37,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:33:37,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:37,460 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:33:37,489 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:33:37,563 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.482 +2025-10-01 16:33:37,563 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:33:37,564 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:33:39,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:39,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:39,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:39,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:33:39,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:33:39,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:40,184 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:33:40,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:33:40,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:33:40,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 16:33:40,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-01 16:33:40,470 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:33:43,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:43,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:43,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:43,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:33:43,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:33:43,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:43,957 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:33:43,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:33:44,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:33:44,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-01 16:33:44,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-01 16:33:44,228 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:33:49,065 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:33:49,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:33:49,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:33:49,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 16:33:49,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +2025-10-01 16:33:49,373 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:33:49,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:49,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:49,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:50,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:33:50,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:33:50,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:50,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:50,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:50,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:50,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:33:50,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:33:50,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:53,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:53,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:53,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:54,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:33:54,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:33:54,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:54,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:54,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:54,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:54,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:33:54,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:33:54,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:54,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:54,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:54,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:55,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:33:55,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:33:55,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:55,919 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:33:55,961 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:33:56,052 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.678 +2025-10-01 16:33:56,052 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:33:56,055 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:33:56,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:56,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:56,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:57,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:33:57,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:33:57,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:57,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:57,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:57,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:57,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:33:57,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:33:57,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:58,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:33:58,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:33:58,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:33:58,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:33:58,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:33:58,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:33:59,142 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:33:59,169 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:33:59,253 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.264 +2025-10-01 16:33:59,253 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:33:59,253 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:34:01,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:01,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:01,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:01,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:34:01,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:34:01,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:02,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:02,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:02,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:02,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:34:02,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:34:02,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:03,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:03,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:03,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:03,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:34:03,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:34:03,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:04,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:04,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:04,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:04,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:34:04,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:34:04,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:04,928 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:34:04,957 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:34:05,038 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.275 +2025-10-01 16:34:05,039 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:34:05,039 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:34:06,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:06,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:06,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:06,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:34:06,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:34:06,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:09,162 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:34:09,198 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:34:09,279 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=4.963 +2025-10-01 16:34:09,279 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:34:09,279 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:34:10,082 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:34:10,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:34:10,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:34:10,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 16:34:10,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 16:34:10,378 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:34:10,543 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:34:10,562 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:34:10,635 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.164 +2025-10-01 16:34:10,636 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:34:10,636 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:34:10,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:10,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:10,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:10,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 16:34:10,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 16:34:10,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:12,645 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:34:12,667 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:34:12,744 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.216 +2025-10-01 16:34:12,745 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:34:12,745 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:34:13,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:13,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:13,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:13,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:34:13,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:34:13,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:14,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:14,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:14,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:14,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:34:14,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:34:14,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:15,991 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:34:16,010 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:34:16,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.986 +2025-10-01 16:34:16,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:34:16,087 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:34:16,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:16,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:16,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:16,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:34:16,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:34:16,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:16,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:16,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:16,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:16,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:34:16,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:34:16,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:17,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:34:17,112 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:34:17,203 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.129 +2025-10-01 16:34:17,203 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:34:17,204 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:34:19,289 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:34:19,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:34:19,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:34:19,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 16:34:19,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 16:34:19,572 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:34:19,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:19,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:19,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:19,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 16:34:19,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 16:34:19,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:20,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:20,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:20,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:20,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:34:20,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:34:20,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:22,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:22,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:22,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:22,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:34:22,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:34:22,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:22,950 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:34:22,979 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:34:23,062 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.432 +2025-10-01 16:34:23,062 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:34:23,062 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:34:23,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:23,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:23,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:23,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:34:23,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:34:23,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:23,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:23,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:23,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:23,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 16:34:23,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 16:34:23,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:24,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:24,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:24,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:24,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.235s +2025-10-01 16:34:24,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.235s (avg: 0.235s/image) +2025-10-01 16:34:24,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:26,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:26,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:26,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:26,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:34:26,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:34:26,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:26,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:26,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:26,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:26,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:34:26,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:34:26,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:27,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:27,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:27,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:27,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:34:27,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:34:27,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:29,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:29,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:29,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:29,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:34:29,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:34:29,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:29,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:29,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:29,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:29,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 16:34:29,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 16:34:29,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:30,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:30,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:30,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:30,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:34:30,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:34:30,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:32,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:32,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:32,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:32,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 16:34:32,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 16:34:32,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:34,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:34,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:34,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:34,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 16:34:34,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 16:34:34,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:35,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:35,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:35,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:35,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 16:34:35,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 16:34:35,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:35,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:35,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:35,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:35,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 16:34:35,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 16:34:35,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:38,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:38,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:39,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:39,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:34:39,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:34:39,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:39,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:39,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:40,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:40,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:34:40,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:34:40,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:40,516 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:34:40,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:34:40,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:34:40,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-01 16:34:40,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-01 16:34:40,783 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:34:44,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:44,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:44,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:44,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:34:44,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:34:44,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:45,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:45,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:45,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:45,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:34:45,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:34:45,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:48,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:48,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:48,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:48,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:34:48,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:34:48,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:49,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:49,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:49,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:50,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:34:50,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:34:50,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:51,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:51,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:51,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:51,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 16:34:51,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 16:34:51,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:51,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:51,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:51,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:51,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:34:51,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:34:51,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:52,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:52,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:52,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:52,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:34:52,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:34:52,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:53,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:53,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:53,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:53,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:34:53,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:34:53,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:54,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:54,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:54,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:54,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:34:54,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:34:54,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:55,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:34:55,084 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:34:55,164 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.945 +2025-10-01 16:34:55,164 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:34:55,165 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:34:55,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:55,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:55,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:55,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:34:55,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:34:55,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:57,970 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:34:57,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:34:58,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:34:58,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 16:34:58,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 16:34:58,255 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:34:58,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:58,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:58,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:58,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 16:34:58,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 16:34:58,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:34:58,750 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:34:58,777 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:34:58,857 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.332 +2025-10-01 16:34:58,857 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:34:58,857 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:34:59,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:34:59,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:34:59,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:34:59,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:34:59,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:34:59,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:02,024 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:35:02,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:35:02,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:35:02,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 16:35:02,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 16:35:02,312 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:35:02,609 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:35:02,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:35:02,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:35:02,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 16:35:02,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 16:35:02,892 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:35:03,090 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:35:03,110 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:35:03,179 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.141 +2025-10-01 16:35:03,179 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 16:35:03,179 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 16:35:03,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:03,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:03,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:03,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:35:03,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:35:03,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:03,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:03,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:04,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:04,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:35:04,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:35:04,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:06,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:06,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:06,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:06,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:35:06,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:35:06,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:06,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:06,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:06,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:06,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:35:06,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:35:06,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:06,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:06,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:06,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:07,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:35:07,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:35:07,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:07,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:07,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:07,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:07,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 16:35:07,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 16:35:07,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:09,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:09,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:09,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:09,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:35:09,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:35:09,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:09,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:09,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:09,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:09,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:35:09,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:35:09,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:10,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:10,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:10,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:10,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:35:10,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:35:10,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:11,344 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:35:11,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:35:11,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:35:11,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 16:35:11,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 16:35:11,631 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:35:12,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:12,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:12,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:12,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:35:12,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:35:12,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:14,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:14,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:14,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:15,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:35:15,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:35:15,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:16,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:16,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:16,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:16,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:35:16,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:35:16,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:16,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:16,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:16,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:16,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:35:16,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:35:16,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:17,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:17,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:17,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:17,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:35:17,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:35:17,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:17,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:17,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:17,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:17,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:35:17,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:35:17,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:18,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:18,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:18,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:18,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 16:35:18,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 16:35:18,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:20,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:20,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:20,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:20,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:35:20,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:35:20,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:21,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:21,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:21,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:21,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:35:21,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:35:21,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:22,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:22,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:22,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:22,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:35:22,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:35:22,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:22,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:22,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:23,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:23,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:35:23,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:35:23,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:24,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:24,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:24,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:24,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:35:24,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:35:24,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:25,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:25,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:25,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:25,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:35:25,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:35:25,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:25,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:25,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:25,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:25,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:35:25,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:35:25,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:26,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:26,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:26,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:26,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:35:26,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:35:26,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:28,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:28,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:28,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:28,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:35:28,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:35:28,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:28,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:28,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:29,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:29,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:35:29,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:35:29,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:30,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:30,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:30,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:30,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:35:30,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:35:30,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:30,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:30,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:30,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:30,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:35:30,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:35:30,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:30,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:30,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:30,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:30,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:35:30,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:35:30,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:32,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:32,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:32,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:32,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:35:32,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:35:32,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:35,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:35,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:35,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:35,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 16:35:35,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 16:35:35,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:35,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:35,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:35,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:35,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:35:35,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:35:35,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:36,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:36,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:36,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:36,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:35:36,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:35:36,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:36,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:36,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:36,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:36,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:35:36,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:35:36,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:36,776 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:35:36,802 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:35:36,877 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.034 +2025-10-01 16:35:36,877 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:35:36,877 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:35:37,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:37,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:37,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:37,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:35:37,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:35:37,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:39,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:39,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:39,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:39,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:35:39,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:35:39,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:40,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:40,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:40,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:40,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:35:40,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:35:40,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:40,464 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:35:40,490 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:35:40,564 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.153 +2025-10-01 16:35:40,564 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:35:40,565 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:35:40,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:40,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:40,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:40,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:35:40,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:35:40,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:41,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:41,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:41,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:42,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:35:42,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:35:42,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:43,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:43,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:43,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:43,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:35:43,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:35:43,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:43,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:43,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:43,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:43,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:35:43,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:35:43,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:43,957 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:35:43,982 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:35:44,055 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.454 +2025-10-01 16:35:44,056 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:35:44,056 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:35:44,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:44,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:44,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:44,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:35:44,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:35:44,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:49,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:49,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:49,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:49,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:35:49,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:35:49,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:49,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:49,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:49,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:49,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:35:49,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:35:49,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:49,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:49,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:49,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:50,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:35:50,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:35:50,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:50,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:50,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:50,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:50,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:35:50,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:35:50,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:50,477 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:35:50,513 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:35:50,591 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.068 +2025-10-01 16:35:50,591 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:35:50,592 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:35:52,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:52,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:52,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:52,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:35:52,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:35:52,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:54,919 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:35:54,943 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:35:55,027 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.184 +2025-10-01 16:35:55,027 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:35:55,028 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:35:55,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:55,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:55,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:55,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:35:55,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:35:55,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:56,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:35:56,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:35:56,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:35:56,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:35:56,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:35:56,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:35:58,679 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:35:58,700 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:35:58,775 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=203.170 +2025-10-01 16:35:58,775 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:35:58,776 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:36:00,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:00,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:00,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:00,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:36:00,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:36:00,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:02,573 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:36:02,613 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:36:02,699 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.739 +2025-10-01 16:36:02,699 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:36:02,701 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:36:02,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:02,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:02,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:02,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:36:02,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:36:02,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:05,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:05,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:05,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:05,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:36:05,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:36:05,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:05,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:05,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:05,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:06,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:36:06,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:36:06,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:06,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:36:06,100 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:36:06,188 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.736 +2025-10-01 16:36:06,189 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:36:06,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:36:07,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:07,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:07,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:08,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:36:08,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:36:08,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:09,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:09,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:09,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:09,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:36:09,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:36:09,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:10,033 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:36:10,055 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:36:10,143 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.210 +2025-10-01 16:36:10,144 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:36:10,145 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:36:11,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:11,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:11,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:11,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:36:11,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:36:11,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:13,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:13,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:13,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:14,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:36:14,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:36:14,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:15,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:15,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:15,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:15,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:36:15,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:36:15,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:15,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:15,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:15,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:15,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:36:15,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:36:15,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:19,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:19,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:19,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:19,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 16:36:19,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 16:36:19,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:19,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:19,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:19,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:19,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:36:19,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:36:19,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:20,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:20,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:20,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:20,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:36:20,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:36:20,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:20,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:20,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:20,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:21,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:36:21,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:36:21,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:21,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:21,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:21,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:21,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:36:21,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:36:21,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:23,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:23,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:23,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:23,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 16:36:23,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 16:36:23,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:24,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:36:24,894 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:36:24,981 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.935 +2025-10-01 16:36:24,981 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:36:24,982 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:36:25,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:25,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:25,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:25,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:36:25,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:36:25,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:27,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:27,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:27,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:28,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:36:28,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:36:28,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:28,130 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:36:28,149 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:36:28,231 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.247 +2025-10-01 16:36:28,231 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:36:28,232 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:36:28,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:28,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:28,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:28,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:36:28,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:36:28,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:30,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:30,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:30,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:30,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:36:30,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:36:30,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:31,899 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:36:31,932 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:36:32,005 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.827 +2025-10-01 16:36:32,006 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:36:32,006 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:36:32,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:32,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:32,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:32,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:36:32,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:36:32,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:34,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:34,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:34,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:34,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:36:34,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:36:34,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:35,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:35,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:35,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:35,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:36:35,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:36:35,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:35,601 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:36:35,621 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:36:35,693 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.791 +2025-10-01 16:36:35,693 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:36:35,693 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:36:35,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:35,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:35,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:36,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:36:36,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:36:36,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:36,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:36,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:36,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:36,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:36:36,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:36:36,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:36,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:36,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:36,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:37,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:36:37,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:36:37,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:37,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:37,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:37,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:37,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:36:37,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:36:37,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:39,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:39,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:39,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:39,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:36:39,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:36:39,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:41,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:41,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:41,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:41,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:36:41,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:36:41,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:41,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:41,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:41,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:41,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:36:41,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:36:41,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:42,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:42,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:42,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:42,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:36:42,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:36:42,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:42,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:42,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:42,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:43,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:36:43,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:36:43,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:43,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:43,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:43,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:43,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:36:43,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:36:43,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:46,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:46,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:46,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:47,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:36:47,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:36:47,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:48,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:48,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:48,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:48,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:36:48,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:36:48,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:51,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:51,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:51,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:51,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:36:51,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:36:51,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:51,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:51,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:51,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:52,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:36:52,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:36:52,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:52,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:52,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:52,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:52,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:36:52,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:36:52,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:54,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:54,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:54,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:54,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:36:54,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:36:54,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:56,007 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:36:56,031 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:36:56,108 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.175 +2025-10-01 16:36:56,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:36:56,109 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:36:57,307 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:36:57,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:36:57,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:36:57,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 16:36:57,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 16:36:57,607 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:36:58,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:58,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:58,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:58,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:36:58,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:36:58,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:58,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:58,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:59,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:59,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:36:59,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:36:59,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:59,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:36:59,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:36:59,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:36:59,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:36:59,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:36:59,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:36:59,615 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:36:59,635 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:36:59,709 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.946 +2025-10-01 16:36:59,709 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:36:59,710 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:37:00,287 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:37:00,306 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:37:00,382 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.754 +2025-10-01 16:37:00,382 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:37:00,383 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:37:02,783 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:37:02,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:37:02,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:37:03,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 16:37:03,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 16:37:03,083 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:37:03,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:03,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:03,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:03,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-01 16:37:03,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-01 16:37:03,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:03,395 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:37:03,414 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:37:03,482 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.185 +2025-10-01 16:37:03,482 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 16:37:03,483 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 16:37:03,929 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:37:03,957 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:37:04,041 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.373 +2025-10-01 16:37:04,041 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:37:04,041 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:37:05,555 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 16:37:05,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 16:37:05,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 16:37:06,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.444s +2025-10-01 16:37:06,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.444s (avg: 0.148s/image) +2025-10-01 16:37:06,000 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 16:37:06,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:06,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:06,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:06,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:37:06,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:37:06,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:07,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:07,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:07,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:07,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:37:07,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:37:07,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:09,166 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:37:09,208 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:37:09,291 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.412 +2025-10-01 16:37:09,291 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:37:09,291 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:37:10,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:10,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:10,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:10,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:37:10,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:37:10,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:11,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:11,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:11,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:11,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-01 16:37:11,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-01 16:37:11,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:11,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:11,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:11,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:11,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:37:11,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:37:11,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:12,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:12,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:12,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:12,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:37:12,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:37:12,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:12,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:12,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:12,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:12,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:37:12,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:37:12,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:12,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:12,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:13,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:13,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:37:13,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:37:13,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:14,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:14,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:14,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:14,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:37:14,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:37:14,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:15,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:15,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:15,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:15,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:37:15,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:37:15,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:15,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:15,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:15,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:16,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:37:16,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:37:16,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:17,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:17,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:17,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:17,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:37:17,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:37:17,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:17,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:17,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:17,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:17,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:37:17,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:37:17,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:18,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:18,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:18,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:18,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:37:18,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:37:18,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:18,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:18,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:18,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:18,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:37:18,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:37:18,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:21,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:21,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:21,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:21,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:37:21,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:37:21,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:21,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:21,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:21,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:21,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +2025-10-01 16:37:21,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +2025-10-01 16:37:21,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:22,123 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:37:22,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:37:22,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:37:22,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 16:37:22,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 16:37:22,400 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:37:22,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:22,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:23,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:23,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:37:23,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:37:23,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:23,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:23,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:23,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:23,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:37:23,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:37:23,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:25,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:25,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:25,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:25,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:37:25,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:37:25,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:26,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:26,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:26,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:26,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:37:26,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:37:26,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:26,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:26,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:26,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:26,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:37:26,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:37:26,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:28,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:28,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:28,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:28,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:37:28,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:37:28,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:28,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:28,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:28,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:28,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:37:28,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:37:28,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:30,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:30,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:30,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:30,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:37:30,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:37:30,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:32,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:32,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:32,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:32,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:37:32,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:37:32,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:34,107 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:37:34,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:37:34,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:37:34,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 16:37:34,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 16:37:34,413 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:37:34,647 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:37:34,670 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:37:34,773 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.733 +2025-10-01 16:37:34,773 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 16:37:34,775 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 16:37:34,934 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:37:34,969 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:37:35,055 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.229 +2025-10-01 16:37:35,055 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:37:35,055 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:37:37,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:37,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:37,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:37,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:37:37,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:37:37,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:38,091 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:37:38,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:37:38,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:37:38,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 16:37:38,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 16:37:38,381 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:37:38,438 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:37:38,459 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:37:38,547 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.667 +2025-10-01 16:37:38,547 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:37:38,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 16:37:40,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:40,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:40,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:40,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:37:40,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:37:40,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:41,617 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:37:41,641 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:37:41,740 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.083 +2025-10-01 16:37:41,741 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 16:37:41,742 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 16:37:45,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:45,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:45,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:45,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:37:45,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:37:45,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:45,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:45,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:45,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:45,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:37:45,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:37:45,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:45,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:45,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:46,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:46,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:37:46,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:37:46,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:46,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:46,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:46,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:46,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:37:46,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:37:46,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:47,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:47,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:47,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:47,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:37:47,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:37:47,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:51,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:51,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:51,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:51,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:37:51,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:37:51,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:52,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:52,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:52,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:52,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:37:52,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:37:52,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:52,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:52,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:52,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:52,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:37:52,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:37:52,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:52,639 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:37:52,662 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:37:52,754 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.937 +2025-10-01 16:37:52,755 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:37:52,756 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:37:53,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:53,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:53,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:53,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:37:53,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:37:53,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:55,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:55,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:55,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:55,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:37:55,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:37:55,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:56,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:56,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:56,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:56,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:37:56,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:37:56,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:56,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:56,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:56,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:57,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:37:57,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:37:57,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:58,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:37:58,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:37:58,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:37:59,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:37:59,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:37:59,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:37:59,203 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:37:59,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:37:59,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:37:59,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-01 16:37:59,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-01 16:37:59,475 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:38:01,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:01,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:01,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:01,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:38:01,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:38:01,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:01,795 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:38:01,817 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:38:01,911 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.822 +2025-10-01 16:38:01,912 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 16:38:01,913 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 16:38:03,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:03,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:03,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:03,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:38:03,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:38:03,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:05,524 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:38:05,549 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:38:05,643 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.068 +2025-10-01 16:38:05,644 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 16:38:05,644 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:38:05,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:05,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:05,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:05,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:38:05,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:38:05,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:06,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:06,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:06,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:06,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:38:06,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:38:06,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:08,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:08,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:08,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:09,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:38:09,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:38:09,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:09,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:09,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:09,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:09,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:38:09,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:38:09,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:09,511 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:38:09,530 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:38:09,609 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.487 +2025-10-01 16:38:09,610 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:38:09,611 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:38:09,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:09,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:09,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:09,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 16:38:09,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 16:38:09,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:10,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:10,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:10,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:10,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 16:38:10,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 16:38:10,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:11,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:11,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:11,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:11,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:38:11,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:38:11,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:12,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:12,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:12,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:12,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:38:12,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:38:12,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:12,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:12,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:12,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:13,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:38:13,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:38:13,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:13,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:13,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:13,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:13,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:38:13,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:38:13,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:15,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:15,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:15,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:15,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:38:15,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:38:15,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:16,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:16,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:16,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:16,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:38:16,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:38:16,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:17,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:17,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:17,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:17,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:38:17,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:38:17,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:18,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:18,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:19,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:19,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:38:19,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:38:19,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:20,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:20,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:20,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:20,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:38:20,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:38:20,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:20,395 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:38:20,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:38:20,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:38:20,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 16:38:20,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-01 16:38:20,670 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:38:20,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:20,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:20,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:21,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:38:21,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:38:21,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:21,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:21,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:21,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:22,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:38:22,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:38:22,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:22,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:22,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:22,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:22,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:38:22,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:38:22,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:24,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:24,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:24,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:24,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:38:24,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:38:24,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:25,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:25,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:25,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:25,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:38:25,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:38:25,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:26,067 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:38:26,086 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:38:26,172 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.610 +2025-10-01 16:38:26,172 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:38:26,172 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:38:27,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:27,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:27,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:27,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:38:27,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:38:27,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:27,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:27,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:27,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:27,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:38:27,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:38:27,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:28,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:28,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:28,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:29,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:38:29,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:38:29,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:30,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:30,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:30,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:30,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:38:30,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:38:30,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:32,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:32,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:32,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:32,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:38:32,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:38:32,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:32,237 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:38:32,257 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:38:32,331 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.562 +2025-10-01 16:38:32,331 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:38:32,331 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:38:32,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:32,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:32,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:33,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:38:33,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:38:33,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:33,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:33,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:33,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:34,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:38:34,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:38:34,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:34,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:34,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:34,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:34,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:38:34,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:38:34,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:35,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:35,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:35,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:35,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:38:35,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:38:35,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:36,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:36,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:36,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:36,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:38:36,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:38:36,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:38,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:38,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:38,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:38,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:38:38,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:38:38,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:38,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:38,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:38,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:39,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:38:39,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:38:39,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:40,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:40,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:40,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:40,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:38:40,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:38:40,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:41,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:41,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:41,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:41,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:38:41,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:38:41,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:43,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:43,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:43,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:43,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:38:43,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:38:43,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:44,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:44,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:44,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:45,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:38:45,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:38:45,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:45,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:45,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:45,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:45,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:38:45,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:38:45,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:46,466 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:38:46,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:38:46,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:38:46,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 16:38:46,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 16:38:46,744 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:38:46,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:46,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:46,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:47,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:38:47,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:38:47,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:47,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:47,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:47,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:47,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:38:47,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:38:47,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:48,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:48,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:48,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:48,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:38:48,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:38:48,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:50,837 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:38:50,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:38:50,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:38:51,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 16:38:51,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 16:38:51,135 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:38:52,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:52,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:52,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:52,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:38:52,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:38:52,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:53,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:53,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:53,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:53,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:38:53,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:38:53,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:56,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:56,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:56,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:56,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:38:56,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:38:56,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:56,921 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:38:56,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:38:56,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:38:57,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 16:38:57,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 16:38:57,222 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:38:57,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:57,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:57,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:57,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:38:57,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:38:57,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:57,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:57,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:57,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:38:58,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:38:58,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:38:58,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:38:59,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:38:59,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:38:59,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:00,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:39:00,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:39:00,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:01,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:01,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:01,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:01,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:39:01,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:39:01,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:02,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:02,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:02,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:02,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:39:02,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:39:02,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:03,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:03,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:03,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:03,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:39:03,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:39:03,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:03,589 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:03,615 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:03,693 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=170.503 +2025-10-01 16:39:03,693 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:39:03,693 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:39:03,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:03,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:03,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:03,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:39:03,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:39:03,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:05,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:05,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:05,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:05,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:39:05,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:39:05,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:06,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:06,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:06,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:06,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:39:06,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:39:06,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:06,333 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:06,352 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:06,431 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.460 +2025-10-01 16:39:06,431 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:39:06,432 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:39:06,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:06,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:06,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:06,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:39:06,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:39:06,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:07,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:07,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:07,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:07,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:39:07,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:39:07,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:07,801 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:07,827 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:07,913 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.526 +2025-10-01 16:39:07,913 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:39:07,914 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:39:09,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:09,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:09,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:09,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:39:09,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:39:09,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:09,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:09,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:09,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:09,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 16:39:09,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 16:39:09,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:10,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:10,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:10,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:10,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:39:10,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:39:10,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:11,183 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:11,197 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:11,276 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.035 +2025-10-01 16:39:11,276 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:39:11,277 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:39:11,300 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:11,337 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:11,438 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.665 +2025-10-01 16:39:11,438 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 16:39:11,439 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 16:39:12,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:12,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:12,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:12,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:39:12,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:39:12,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:13,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:13,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:13,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:13,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:39:13,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:39:13,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:13,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:13,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:13,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:13,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:39:13,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:39:13,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:13,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:13,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:13,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:14,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +2025-10-01 16:39:14,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image) +2025-10-01 16:39:14,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:15,829 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:15,854 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:15,945 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=189.875 +2025-10-01 16:39:15,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:39:15,947 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:39:16,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:16,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:16,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:16,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:39:16,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:39:16,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:17,499 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:39:17,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:39:17,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:39:17,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 16:39:17,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 16:39:17,792 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:39:18,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:18,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:18,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:18,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:39:18,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:39:18,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:18,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:18,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:19,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:19,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:39:19,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:39:19,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:20,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:20,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:20,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:20,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:39:20,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:39:20,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:22,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:22,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:22,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:22,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:39:22,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:39:22,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:22,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:22,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:22,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:22,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:39:22,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:39:22,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:26,076 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:39:26,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:39:26,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:39:26,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 16:39:26,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 16:39:26,375 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:39:26,633 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:26,653 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:26,730 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.598 +2025-10-01 16:39:26,731 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:39:26,731 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:39:27,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:27,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:27,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:27,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:39:27,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:39:27,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:31,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:31,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:31,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:31,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:39:31,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:39:31,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:32,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:32,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:32,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:32,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:39:32,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:39:32,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:32,457 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:32,491 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:32,574 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.310 +2025-10-01 16:39:32,574 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:39:32,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:39:33,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:33,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:33,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:33,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:39:33,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:39:33,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:33,524 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:33,544 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:33,626 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.533 +2025-10-01 16:39:33,627 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:39:33,627 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:39:35,876 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:39:35,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:39:35,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:39:36,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 16:39:36,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 16:39:36,170 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:39:36,239 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:36,261 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:36,339 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.506 +2025-10-01 16:39:36,340 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:39:36,342 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:39:36,703 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:36,727 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:36,805 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.552 +2025-10-01 16:39:36,805 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:39:36,805 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:39:37,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:37,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:37,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:37,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:39:37,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:39:37,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:37,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:37,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:37,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:37,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:39:37,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:39:37,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:38,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:38,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:38,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:38,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:39:38,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:39:38,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:39,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:39,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:39,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:39,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:39:39,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:39:39,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:39,702 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:39,722 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:39,806 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.342 +2025-10-01 16:39:39,806 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:39:39,807 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:39:41,035 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:41,064 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:41,145 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.840 +2025-10-01 16:39:41,146 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:39:41,146 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:39:42,630 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:42,651 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:42,732 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.790 +2025-10-01 16:39:42,733 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:39:42,733 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:39:43,105 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:39:43,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:39:43,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:39:43,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s +2025-10-01 16:39:43,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.157s/image) +2025-10-01 16:39:43,420 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:39:43,599 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:39:43,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:39:43,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:39:43,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.253s +2025-10-01 16:39:43,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.253s (avg: 0.126s/image) +2025-10-01 16:39:43,853 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:39:45,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:45,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:45,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:45,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:39:45,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:39:45,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:45,905 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:45,925 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:45,992 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.400 +2025-10-01 16:39:45,992 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 16:39:45,992 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 16:39:46,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:46,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:46,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:46,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:39:46,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:39:46,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:47,888 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:47,908 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:47,983 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.180 +2025-10-01 16:39:47,984 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:39:47,984 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:39:48,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:48,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:48,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:48,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:39:48,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:39:48,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:48,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:48,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:48,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:49,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:39:49,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:39:49,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:49,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:49,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:49,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:49,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:39:49,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:39:49,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:49,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:49,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:49,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:50,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:39:50,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:39:50,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:50,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:50,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:50,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:50,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:39:50,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:39:50,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:51,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:51,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:51,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:51,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:39:51,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:39:51,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:52,080 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:52,098 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:52,169 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.075 +2025-10-01 16:39:52,170 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:39:52,170 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:39:52,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:52,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:52,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:52,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:39:52,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:39:52,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:52,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:52,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:52,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:52,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:39:52,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:39:52,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:53,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:53,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:53,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:53,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:39:53,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:39:53,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:53,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:53,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:53,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:54,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:39:54,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:39:54,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:54,666 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:54,692 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:54,784 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.122 +2025-10-01 16:39:54,784 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:39:54,786 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:39:56,400 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:56,416 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:56,500 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.989 +2025-10-01 16:39:56,501 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:39:56,501 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:39:56,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:56,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:56,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:56,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:39:56,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:39:56,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:58,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:58,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:58,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:58,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:39:58,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:39:58,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:58,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:58,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:58,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:58,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:39:58,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:39:58,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:39:58,966 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:39:58,986 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:39:59,079 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.827 +2025-10-01 16:39:59,080 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 16:39:59,081 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 16:39:59,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:39:59,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:39:59,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:39:59,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:39:59,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:39:59,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:00,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:00,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:00,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:00,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:40:00,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:40:00,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:01,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:01,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:01,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:01,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:40:01,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:40:01,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:02,667 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:40:02,688 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:40:02,791 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.003 +2025-10-01 16:40:02,792 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 16:40:02,793 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 16:40:02,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:02,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:02,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:02,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:40:02,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:40:02,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:03,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:03,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:03,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:03,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:40:03,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:40:03,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:05,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:05,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:05,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:05,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:40:05,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:40:05,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:05,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:05,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:05,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:05,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:40:05,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:40:05,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:06,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:06,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:06,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:06,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:40:06,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:40:06,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:07,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:07,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:07,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:08,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:40:08,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:40:08,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:08,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:08,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:08,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:08,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:40:08,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:40:08,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:09,281 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:40:09,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:40:09,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:40:09,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 16:40:09,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 16:40:09,572 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:40:09,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:09,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:09,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:09,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:40:09,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:40:09,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:10,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:10,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:10,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:10,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 16:40:10,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 16:40:10,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:10,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:10,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:10,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:10,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-01 16:40:10,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-01 16:40:10,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:11,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:11,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:11,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:11,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:40:11,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:40:11,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:14,350 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:40:14,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:40:14,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:40:14,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 16:40:14,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 16:40:14,654 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:40:15,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:15,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:15,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:15,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:40:15,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:40:15,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:15,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:15,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:15,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:16,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:40:16,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:40:16,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:16,428 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:40:16,461 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:40:16,548 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.104 +2025-10-01 16:40:16,548 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:40:16,548 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:40:18,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:18,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:18,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:18,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:40:18,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:40:18,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:19,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:19,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:19,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:19,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:40:19,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:40:19,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:19,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:19,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:19,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:20,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +2025-10-01 16:40:20,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +2025-10-01 16:40:20,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:20,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:20,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:20,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:20,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:40:20,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:40:20,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:20,556 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:40:20,577 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:40:20,654 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.968 +2025-10-01 16:40:20,654 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:40:20,654 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:40:21,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:21,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:21,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:21,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:40:21,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:40:21,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:23,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:23,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:23,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:23,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:40:23,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:40:23,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:24,233 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:40:24,256 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:40:24,328 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.840 +2025-10-01 16:40:24,328 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:40:24,328 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:40:25,434 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:40:25,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:40:25,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:40:25,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 16:40:25,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 16:40:25,725 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:40:26,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:26,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:26,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:26,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:40:26,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:40:26,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:29,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:29,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:29,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:29,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:40:29,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:40:29,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:29,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:29,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:29,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:29,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:40:29,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:40:29,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:30,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:30,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:30,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:30,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:40:30,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:40:30,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:31,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:31,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:31,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:31,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:40:31,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:40:31,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:32,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:32,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:32,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:32,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-01 16:40:32,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-01 16:40:32,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:32,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:32,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:32,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:32,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:40:32,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:40:32,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:33,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:33,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:33,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:33,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:40:33,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:40:33,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:35,663 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:40:35,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:40:35,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:40:35,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 16:40:35,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 16:40:35,961 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:40:37,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:37,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:37,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:37,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:40:37,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:40:37,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:37,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:37,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:37,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:37,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:40:37,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:40:37,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:39,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:39,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:39,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:39,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:40:39,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:40:39,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:39,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:39,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:39,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:40,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:40:40,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:40:40,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:40,363 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:40:40,383 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:40:40,456 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.700 +2025-10-01 16:40:40,456 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:40:40,456 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:40:40,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:40,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:40,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:40,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:40:40,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:40:40,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:41,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:41,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:41,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:41,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:40:41,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:40:41,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:42,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:42,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:42,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:42,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:40:42,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:40:42,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:44,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:44,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:44,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:44,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:40:44,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:40:44,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:45,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:45,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:45,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:45,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:40:45,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:40:45,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:46,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:46,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:46,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:46,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:40:46,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:40:46,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:47,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:47,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:47,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:47,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:40:47,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:40:47,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:47,875 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:40:47,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:40:47,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:40:48,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 16:40:48,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 16:40:48,185 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:40:48,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:48,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:48,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:48,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:40:48,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:40:48,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:49,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:49,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:49,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:49,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:40:49,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:40:49,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:52,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:52,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:52,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:52,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:40:52,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:40:52,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:53,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:53,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:53,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:53,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:40:53,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:40:53,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:54,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:54,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:54,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:55,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:40:55,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:40:55,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:55,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:55,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:55,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:55,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:40:55,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:40:55,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:56,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:56,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:56,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:57,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:40:57,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:40:57,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:57,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:57,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:57,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:57,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:40:57,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:40:57,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:40:59,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:40:59,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:40:59,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:40:59,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:40:59,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:40:59,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:00,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:00,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:00,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:00,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:41:00,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:41:00,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:01,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:01,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:01,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:01,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:41:01,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:41:01,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:02,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:02,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:02,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:02,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:41:02,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:41:02,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:04,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:04,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:04,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:04,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:41:04,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:41:04,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:04,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:04,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:04,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:05,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:41:05,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:41:05,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:10,116 - app.core.batch_manager - INFO - Creating a new batch with 4 jobs. +2025-10-01 16:41:10,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 4). VRAM: 0.0 GB +2025-10-01 16:41:10,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 4개 이미지 인페인팅 수행 +2025-10-01 16:41:10,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 4). VRAM: 0.0 GB | Duration: 0.547s +2025-10-01 16:41:10,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 4 processed in 0.547s (avg: 0.137s/image) +2025-10-01 16:41:10,665 - app.core.batch_manager - INFO - Successfully processed batch of 4 jobs. +2025-10-01 16:41:11,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:11,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:11,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:11,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:41:11,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:41:11,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:12,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:12,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:12,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:12,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:41:12,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:41:12,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:13,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:13,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:13,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:13,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:41:13,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:41:13,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:14,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:14,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:14,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:14,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:41:14,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:41:14,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:15,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:15,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:15,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:15,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:41:15,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:41:15,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:15,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:15,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:15,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:15,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:41:15,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:41:15,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:17,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:17,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:17,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:17,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:41:17,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:41:17,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:17,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:17,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:17,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:17,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:41:17,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:41:17,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:18,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:18,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:18,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:18,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:41:18,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:41:18,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:19,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:19,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:19,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:19,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:41:19,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:41:19,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:21,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:21,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:21,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:22,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:41:22,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:41:22,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:23,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:23,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:23,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:23,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:41:23,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:41:23,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:23,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:23,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:23,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:23,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:41:23,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:41:23,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:24,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:24,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:24,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:25,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:41:25,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:41:25,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:25,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:25,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:25,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:25,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:41:25,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:41:25,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:27,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:27,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:27,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:27,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:41:27,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:41:27,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:29,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:29,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:29,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:29,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:41:29,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:41:29,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:29,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:29,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:29,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:30,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:41:30,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:41:30,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:30,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:30,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:30,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:30,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-01 16:41:30,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-01 16:41:30,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:30,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:30,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:30,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:31,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:41:31,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:41:31,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:31,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:31,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:31,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:32,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:41:32,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:41:32,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:32,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:32,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:32,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:32,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:41:32,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:41:32,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:36,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:36,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:36,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:36,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:41:36,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:41:36,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:36,638 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:41:36,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:41:36,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:41:36,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 16:41:36,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 16:41:36,919 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:41:38,195 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:41:38,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:41:38,297 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.951 +2025-10-01 16:41:38,297 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:41:38,298 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:41:40,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:40,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:40,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:40,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:41:40,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:41:40,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:41,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:41,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:41,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:42,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:41:42,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:41:42,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:43,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:43,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:43,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:43,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:41:43,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:41:43,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:46,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:46,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:47,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:47,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:41:47,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:41:47,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:49,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:49,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:49,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:49,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:41:49,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:41:49,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:50,585 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:41:50,608 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:41:50,685 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.346 +2025-10-01 16:41:50,685 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:41:50,685 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:41:52,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:52,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:52,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:52,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:41:52,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:41:52,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:53,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:53,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:53,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:53,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:41:53,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:41:53,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:53,925 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:41:53,951 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:41:54,023 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.688 +2025-10-01 16:41:54,023 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:41:54,023 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:41:54,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:41:54,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:41:54,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:41:54,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:41:54,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:41:54,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:41:56,873 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:41:56,905 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:41:56,996 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=17.758 +2025-10-01 16:41:56,996 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:41:56,998 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:41:57,273 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:41:57,296 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:41:57,388 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.332 +2025-10-01 16:41:57,388 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:41:57,388 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:41:59,216 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:41:59,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:41:59,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:41:59,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 16:41:59,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 16:41:59,514 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:42:00,972 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:42:01,000 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:42:01,079 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.431 +2025-10-01 16:42:01,079 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:42:01,080 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:42:01,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:01,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:01,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:02,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:42:02,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:42:02,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:04,983 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:42:05,010 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:42:05,102 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.863 +2025-10-01 16:42:05,102 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:42:05,102 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:42:05,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:05,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:05,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:06,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:42:06,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:42:06,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:07,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:07,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:07,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:07,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:42:07,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:42:07,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:11,263 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:42:11,289 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:42:11,370 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=201.770 +2025-10-01 16:42:11,371 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:42:11,372 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:42:12,032 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:42:12,051 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:42:12,139 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.115 +2025-10-01 16:42:12,139 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:42:12,139 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:42:12,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:12,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:12,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:12,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:42:12,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:42:12,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:12,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:12,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:12,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:13,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:42:13,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:42:13,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:13,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:13,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:13,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:13,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:42:13,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:42:13,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:14,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:14,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:14,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:15,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:42:15,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:42:15,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:15,328 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:42:15,356 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:42:15,436 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=196.850 +2025-10-01 16:42:15,436 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:42:15,437 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:42:15,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:42:15,804 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:42:15,894 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.411 +2025-10-01 16:42:15,894 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:42:15,894 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:42:18,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:18,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:18,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:18,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:42:18,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:42:18,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:19,389 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:42:19,417 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:42:19,509 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=175.805 +2025-10-01 16:42:19,509 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:42:19,510 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:42:20,092 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:42:20,118 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:42:20,211 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.515 +2025-10-01 16:42:20,211 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 16:42:20,212 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:42:21,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:21,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:21,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:21,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:42:21,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:42:21,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:21,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:21,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:21,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:21,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:42:21,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:42:21,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:22,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:22,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:22,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:22,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:42:22,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:42:22,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:23,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:23,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:23,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:23,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:42:23,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:42:23,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:28,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:28,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:28,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:28,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:42:28,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:42:28,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:29,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:29,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:29,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:29,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:42:29,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:42:29,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:29,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:29,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:30,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:30,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:42:30,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:42:30,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:34,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:34,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:34,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:34,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:42:34,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:42:34,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:36,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:36,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:36,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:36,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:42:36,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:42:36,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:36,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:36,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:36,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:37,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:42:37,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:42:37,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:37,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:37,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:37,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:37,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:42:37,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:42:37,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:38,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:38,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:38,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:38,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:42:38,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:42:38,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:41,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:41,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:41,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:41,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 16:42:41,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 16:42:41,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:42,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:42,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:42,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:42,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:42:42,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:42:42,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:42,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:42,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:42,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:42,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:42:42,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:42:42,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:43,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:43,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:43,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:43,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:42:43,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:42:43,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:43,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:43,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:43,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:43,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:42:43,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:42:44,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:44,927 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:42:44,963 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:42:45,064 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.233 +2025-10-01 16:42:45,064 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 16:42:45,065 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 16:42:46,739 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:42:46,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:42:46,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:42:47,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-01 16:42:47,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +2025-10-01 16:42:47,061 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:42:49,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:49,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:49,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:49,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:42:49,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:42:49,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:49,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:49,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:49,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:50,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:42:50,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:42:50,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:50,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:50,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:50,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:51,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:42:51,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:42:51,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:51,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:51,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:51,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:51,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:42:51,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:42:51,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:52,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:52,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:52,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:52,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:42:52,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:42:52,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:52,654 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:42:52,676 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:42:52,758 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.176 +2025-10-01 16:42:52,758 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:42:52,758 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:42:55,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:55,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:55,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:55,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:42:55,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:42:55,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:56,252 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:42:56,280 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:42:56,353 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.889 +2025-10-01 16:42:56,353 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:42:56,353 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:42:57,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:57,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:57,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:57,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:42:57,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:42:57,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:58,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:42:58,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:42:58,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:42:58,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:42:58,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:42:58,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:42:59,985 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:43:00,007 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:43:00,079 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.965 +2025-10-01 16:43:00,079 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:43:00,079 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:43:00,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:00,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:00,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:00,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:43:00,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:43:00,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:00,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:00,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:00,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:00,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:43:00,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:43:00,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:01,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:01,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:01,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:01,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:43:01,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:43:01,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:01,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:01,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:01,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:01,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:43:01,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:43:01,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:02,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:02,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:02,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:02,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:43:02,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:43:02,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:02,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:02,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:02,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:02,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:43:02,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:43:02,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:06,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:06,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:06,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:06,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:43:06,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:43:06,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:08,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:08,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:08,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:08,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:43:08,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:43:08,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:10,470 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:43:10,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:43:10,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:43:10,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 16:43:10,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 16:43:10,768 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:43:11,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:11,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:11,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:11,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:43:11,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:43:11,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:11,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:11,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:11,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:11,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:43:11,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:43:11,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:12,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:12,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:12,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:12,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:43:12,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:43:12,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:12,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:12,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:12,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:13,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:43:13,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:43:13,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:16,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:16,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:16,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:17,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:43:17,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:43:17,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:17,159 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:43:17,179 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:43:17,251 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.558 +2025-10-01 16:43:17,251 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:43:17,251 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:43:17,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:17,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:17,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:17,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:43:17,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:43:17,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:19,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:19,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:19,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:19,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:43:19,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:43:19,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:19,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:19,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:19,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:20,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:43:20,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:43:20,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:21,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:21,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:21,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:21,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:43:21,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:43:21,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:21,849 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:43:21,891 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:43:21,972 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=205.770 +2025-10-01 16:43:21,973 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:43:21,973 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:43:22,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:22,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:22,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:22,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:43:22,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:43:22,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:23,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:23,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:23,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:23,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:43:23,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:43:23,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:25,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:25,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:25,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:25,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:43:25,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:43:25,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:26,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:26,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:26,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:26,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:43:26,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:43:26,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:26,376 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:43:26,401 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:43:26,481 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.614 +2025-10-01 16:43:26,482 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:43:26,482 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:43:26,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:26,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:26,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:26,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:43:26,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:43:26,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:28,128 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:43:28,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:43:28,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:43:28,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 16:43:28,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 16:43:28,415 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:43:28,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:28,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:28,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:29,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:43:29,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:43:29,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:30,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:30,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:30,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:30,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:43:30,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:43:30,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:32,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:32,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:32,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:32,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:43:32,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:43:32,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:32,519 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:43:32,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:43:32,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:43:32,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 16:43:32,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 16:43:32,820 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:43:33,005 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:43:33,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:43:33,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:43:33,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-01 16:43:33,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-01 16:43:33,276 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:43:33,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:33,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:33,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:34,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:43:34,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:43:34,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:35,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:35,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:36,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:36,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:43:36,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:43:36,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:36,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:36,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:36,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:36,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:43:36,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:43:36,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:36,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:36,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:36,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:37,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:43:37,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:43:37,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:37,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:37,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:37,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:37,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:43:37,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:43:37,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:37,577 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:43:37,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:43:37,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:43:37,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 16:43:37,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 16:43:37,858 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:43:40,076 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:43:40,097 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:43:40,178 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.307 +2025-10-01 16:43:40,178 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:43:40,178 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:43:40,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:40,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:40,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:41,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:43:41,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:43:41,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:42,865 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:43:42,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:43:42,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:43:43,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 16:43:43,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 16:43:43,154 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:43:44,133 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:43:44,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:43:44,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:43:44,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.316s +2025-10-01 16:43:44,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.316s (avg: 0.158s/image) +2025-10-01 16:43:44,450 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:43:44,502 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:43:44,511 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 745, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:43:44,581 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.692 +2025-10-01 16:43:44,582 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 16:43:44,582 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 16:43:45,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:45,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:45,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:45,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:43:45,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:43:45,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:46,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:46,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:46,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:46,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:43:46,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:43:46,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:47,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:47,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:47,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:47,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:43:47,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:43:47,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:47,659 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:43:47,668 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(616, 755, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:43:47,737 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.880 +2025-10-01 16:43:47,737 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 16:43:47,737 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 16:43:47,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:47,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:47,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:48,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:43:48,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:43:48,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:51,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:51,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:51,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:51,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:43:51,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:43:51,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:52,695 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:43:52,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:43:52,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:43:52,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 16:43:52,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 16:43:52,986 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:43:53,379 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:43:53,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:43:53,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:43:53,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 16:43:53,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 16:43:53,658 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:43:54,690 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:43:54,723 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:43:54,803 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.754 +2025-10-01 16:43:54,803 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:43:54,803 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:43:58,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:58,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:58,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:58,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:43:58,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:43:58,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:43:58,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:43:58,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:43:58,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:43:58,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:43:58,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:43:58,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:00,395 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:44:00,419 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:44:00,493 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.604 +2025-10-01 16:44:00,493 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:44:00,493 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:44:00,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:00,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:00,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:00,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:44:00,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:44:00,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:02,449 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:44:02,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:44:02,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:44:02,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 16:44:02,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 16:44:02,746 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:44:04,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:04,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:05,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:05,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:44:05,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:44:05,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:05,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:05,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:05,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:05,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:44:05,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:44:05,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:05,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:05,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:05,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:05,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:44:05,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:44:05,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:06,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:06,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:06,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:06,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:44:06,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:44:06,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:06,739 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:44:06,761 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(792, 792, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:44:06,836 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.433 +2025-10-01 16:44:06,836 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:44:06,836 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:44:07,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:07,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:07,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:08,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:44:08,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:44:08,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:08,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:08,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:08,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:08,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 16:44:08,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 16:44:08,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:08,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:08,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:08,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:08,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:44:08,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:44:08,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:10,106 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:44:10,130 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(792, 792, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:44:10,213 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.401 +2025-10-01 16:44:10,213 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:44:10,213 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:44:10,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:10,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:10,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:10,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:44:10,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:44:10,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:11,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:11,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:11,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:11,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:44:11,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:44:11,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:12,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:12,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:12,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:12,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:44:12,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:44:12,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:13,684 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:44:13,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:44:13,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:44:13,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 16:44:13,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 16:44:13,996 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:44:14,067 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:44:14,087 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(792, 792, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:44:14,169 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.013 +2025-10-01 16:44:14,169 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:44:14,169 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:44:15,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:15,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:15,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:15,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:44:15,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:44:15,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:16,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:16,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:16,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:16,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:44:16,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:44:16,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:17,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:17,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:17,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:17,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 16:44:17,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 16:44:17,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:19,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:19,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:19,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:19,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:44:19,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:44:19,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:20,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:20,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:20,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:20,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:44:20,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:44:20,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:20,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:20,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:20,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:20,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:44:20,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:44:20,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:20,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:20,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:20,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:21,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:44:21,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:44:21,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:21,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:21,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:21,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:21,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:44:21,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:44:21,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:24,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:24,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:24,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:24,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:44:24,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:44:24,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:24,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:24,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:24,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:24,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:44:24,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:44:24,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:27,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:27,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:27,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:28,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:44:28,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:44:28,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:30,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:30,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:30,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:30,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:44:30,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:44:30,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:31,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:31,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:31,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:31,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:44:31,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:44:31,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:31,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:31,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:31,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:31,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:44:31,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:44:31,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:34,902 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:44:34,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:44:34,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:44:35,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 16:44:35,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 16:44:35,212 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:44:35,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:35,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:35,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:35,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:44:35,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:44:35,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:35,883 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:44:35,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:44:35,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:44:36,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 16:44:36,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +2025-10-01 16:44:36,147 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:44:36,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:36,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:36,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:36,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:44:36,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:44:36,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:39,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:39,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:39,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:39,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:44:39,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:44:39,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:41,929 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:44:41,968 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:44:42,047 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.660 +2025-10-01 16:44:42,047 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:44:42,047 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:44:42,223 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:44:42,253 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:44:42,327 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.408 +2025-10-01 16:44:42,328 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:44:42,328 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:44:43,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:43,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:43,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:43,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:44:43,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:44:43,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:43,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:43,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:43,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:43,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 16:44:43,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 16:44:43,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:44,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:44,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:44,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:44,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:44:44,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:44:44,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:45,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:45,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:45,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:45,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:44:45,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:44:45,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:45,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:45,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:45,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:45,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:44:45,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:44:45,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:46,389 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:44:46,413 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:44:46,487 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.096 +2025-10-01 16:44:46,488 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:44:46,488 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:44:46,518 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:44:46,542 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:44:46,617 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.963 +2025-10-01 16:44:46,617 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:44:46,617 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:44:47,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:47,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:47,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:47,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:44:47,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:44:47,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:49,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:49,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:49,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:49,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:44:49,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:44:49,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:50,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:50,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:50,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:50,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:44:50,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:44:50,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:50,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:44:50,449 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:44:50,523 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.830 +2025-10-01 16:44:50,523 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:44:50,523 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:44:50,562 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:44:50,587 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:44:50,657 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.298 +2025-10-01 16:44:50,657 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 16:44:50,657 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 16:44:50,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:50,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:51,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:51,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:44:51,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:44:51,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:51,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:51,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:51,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:51,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:44:51,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:44:51,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:53,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:53,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:53,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:53,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:44:53,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:44:53,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:54,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:54,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:54,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:54,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:44:54,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:44:54,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:56,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:56,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:56,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:56,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:44:56,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:44:56,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:59,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:44:59,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:44:59,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:44:59,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:44:59,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:44:59,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:44:59,449 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:44:59,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:44:59,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:44:59,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-01 16:44:59,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-01 16:44:59,720 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:45:04,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:04,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:04,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:04,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:45:04,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:45:04,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:04,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:04,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:04,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:04,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:45:04,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:45:04,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:05,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:05,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:05,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:05,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:45:05,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:45:05,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:06,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:06,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:06,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:06,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:45:06,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:45:06,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:08,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:08,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:08,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:08,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:45:08,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:45:08,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:09,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:09,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:09,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:09,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:45:09,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:45:09,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:10,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:10,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:10,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:10,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:45:10,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:45:10,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:12,849 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:45:12,871 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:45:12,956 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.088 +2025-10-01 16:45:12,956 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:45:12,958 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:45:13,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:13,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:13,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:13,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:45:13,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:45:13,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:14,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:14,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:14,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:14,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:45:14,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:45:14,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:15,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:15,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:15,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:15,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:45:15,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:45:15,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:17,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:17,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:17,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:17,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 16:45:17,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 16:45:17,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:18,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:18,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:18,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:18,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:45:18,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:45:18,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:19,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:19,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:19,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:19,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:45:19,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:45:19,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:22,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:22,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:22,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:22,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:45:22,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:45:22,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:23,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:23,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:23,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:23,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:45:23,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:45:23,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:23,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:23,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:24,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:24,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:45:24,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:45:24,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:30,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:30,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:30,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:30,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:45:30,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:45:30,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:33,585 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:45:33,611 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:45:33,699 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.219 +2025-10-01 16:45:33,699 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:45:33,699 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:45:37,538 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:45:37,566 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:45:37,643 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.599 +2025-10-01 16:45:37,644 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:45:37,644 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:45:40,894 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:45:40,919 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:45:41,002 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.965 +2025-10-01 16:45:41,002 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:45:41,002 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:45:45,575 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:45:45,606 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:45:45,684 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.486 +2025-10-01 16:45:45,685 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:45:45,685 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:45:47,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:47,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:47,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:47,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:45:47,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:45:47,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:47,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:47,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:47,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:47,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:45:47,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:45:47,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:48,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:48,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:48,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:48,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 16:45:48,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 16:45:48,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:49,124 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:45:49,152 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:45:49,232 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.336 +2025-10-01 16:45:49,232 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:45:49,233 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:45:50,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:50,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:51,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:51,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:45:51,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:45:51,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:51,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:51,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:51,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:51,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:45:51,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:45:51,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:52,662 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:45:52,689 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:45:52,780 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.465 +2025-10-01 16:45:52,780 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:45:52,780 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:45:53,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:53,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:53,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:53,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:45:53,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:45:53,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:53,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:45:53,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:45:53,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:45:53,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:45:53,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:45:53,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:45:53,859 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:45:53,879 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:45:53,952 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.967 +2025-10-01 16:45:53,953 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:45:53,953 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:45:56,812 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:45:56,847 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:45:56,928 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.256 +2025-10-01 16:45:56,928 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:45:56,930 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:45:57,223 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:45:57,247 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:45:57,334 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.712 +2025-10-01 16:45:57,335 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:45:57,335 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:45:59,291 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:45:59,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:45:59,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:45:59,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 16:45:59,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 16:45:59,581 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:46:01,141 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:46:01,178 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:46:01,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=200.619 +2025-10-01 16:46:01,268 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:46:01,269 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:46:01,393 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:46:01,412 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:46:01,501 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.823 +2025-10-01 16:46:01,502 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:46:01,502 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:46:03,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:03,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:03,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:04,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:46:04,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:46:04,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:05,669 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:46:05,704 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:46:05,783 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.924 +2025-10-01 16:46:05,783 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:46:05,784 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:46:06,042 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:46:06,070 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:46:06,165 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.708 +2025-10-01 16:46:06,165 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 16:46:06,166 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 16:46:06,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:06,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:06,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:06,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:46:06,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:46:06,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:06,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:06,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:06,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:06,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:46:06,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:46:06,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:06,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:06,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:07,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:07,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:46:07,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:46:07,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:07,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:07,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:07,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:07,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:46:07,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:46:07,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:08,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:08,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:08,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:08,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:46:08,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:46:08,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:10,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:10,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:10,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:10,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:46:10,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:46:10,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:10,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:10,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:10,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:10,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:46:10,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:46:10,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:10,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:10,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:10,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:11,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:46:11,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:46:11,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:12,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:12,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:12,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:12,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:46:12,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:46:12,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:12,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:12,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:12,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:13,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:46:13,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:46:13,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:13,312 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:46:13,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:46:13,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:46:13,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-01 16:46:13,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-01 16:46:13,578 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:46:13,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:13,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:13,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:13,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:46:13,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:46:13,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:13,919 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:46:13,936 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:46:14,013 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.340 +2025-10-01 16:46:14,013 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:46:14,013 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:46:15,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:15,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:15,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:15,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:46:15,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:46:15,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:16,277 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:46:16,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:46:16,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:46:16,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.328s +2025-10-01 16:46:16,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.328s (avg: 0.164s/image) +2025-10-01 16:46:16,606 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:46:18,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:18,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:18,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:18,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:46:18,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:46:18,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:18,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:18,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:18,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:18,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:46:18,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:46:18,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:18,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:46:18,805 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 748, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:46:18,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.186 +2025-10-01 16:46:18,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:46:18,887 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:46:19,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:19,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:19,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:19,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:46:19,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:46:19,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:19,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:19,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:19,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:19,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:46:19,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:46:19,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:21,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:21,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:21,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:21,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:46:21,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:46:21,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:21,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:21,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:21,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:21,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:46:21,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:46:21,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:21,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:21,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:22,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:22,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:46:22,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:46:22,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:23,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:23,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:23,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:23,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:46:23,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:46:23,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:23,782 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:46:23,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:46:23,910 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.546 +2025-10-01 16:46:23,911 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 16:46:23,912 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 16:46:24,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:24,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:24,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:24,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:46:24,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:46:24,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:25,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:25,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:26,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:26,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:46:26,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:46:26,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:26,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:26,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:26,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:26,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:46:26,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:46:26,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:27,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:27,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:27,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:27,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:46:27,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:46:27,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:28,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:28,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:28,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:28,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:46:28,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:46:28,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:29,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:29,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:29,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:29,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:46:29,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:46:29,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:29,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:29,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:29,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:29,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:46:29,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:46:29,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:33,915 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:46:33,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:46:33,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:46:34,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 16:46:34,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 16:46:34,203 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:46:34,380 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:46:34,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:46:34,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:46:34,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 16:46:34,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 16:46:34,662 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:46:35,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:35,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:35,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:35,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:46:35,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:46:35,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:37,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:37,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:37,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:37,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:46:37,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:46:37,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:37,870 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:46:37,895 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:46:37,985 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.601 +2025-10-01 16:46:37,985 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:46:37,986 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:46:38,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:38,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:38,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:38,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:46:38,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:46:38,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:39,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:39,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:39,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:39,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:46:39,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:46:39,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:40,610 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:46:40,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:46:40,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:46:40,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 16:46:40,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 16:46:40,899 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:46:41,088 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:46:41,104 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:46:41,179 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.244 +2025-10-01 16:46:41,179 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:46:41,179 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:46:42,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:42,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:42,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:42,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:46:42,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:46:42,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:43,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:43,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:43,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:43,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:46:43,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:46:43,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:43,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:43,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:43,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:44,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:46:44,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:46:44,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:44,343 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:46:44,365 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 663, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:46:44,457 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.900 +2025-10-01 16:46:44,457 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:46:44,457 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:46:44,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:44,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:44,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:45,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:46:45,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:46:45,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:45,173 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:46:45,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:46:45,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:46:45,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 16:46:45,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 16:46:45,452 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:46:46,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:46,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:46,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:46,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:46:46,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:46:46,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:47,140 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:46:47,178 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:46:47,259 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.121 +2025-10-01 16:46:47,260 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:46:47,261 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:46:48,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:48,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:48,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:48,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:46:48,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:46:48,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:48,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:48,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:48,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:48,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:46:48,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:46:48,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:50,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:50,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:50,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:50,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:46:50,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:46:50,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:51,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:51,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:51,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:51,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:46:51,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:46:51,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:51,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:51,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:51,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:51,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:46:51,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:46:51,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:53,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:53,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:53,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:53,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:46:53,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:46:53,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:54,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:54,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:54,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:54,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:46:54,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:46:54,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:54,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:54,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:54,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:54,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:46:54,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:46:54,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:55,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:55,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:55,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:55,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:46:55,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:46:55,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:56,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:56,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:57,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:57,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:46:57,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:46:57,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:57,456 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:46:57,483 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:46:57,576 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=234.529 +2025-10-01 16:46:57,577 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 16:46:57,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:46:57,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:57,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:57,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:57,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:46:57,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:46:57,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:46:58,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:46:58,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:46:58,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:46:58,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:46:58,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:46:58,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:00,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:00,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:00,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:00,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s +2025-10-01 16:47:00,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image) +2025-10-01 16:47:00,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:01,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:01,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:01,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:01,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:47:01,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:47:01,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:03,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:03,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:03,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:03,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:47:03,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:47:03,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:03,427 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:03,456 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:03,540 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.244 +2025-10-01 16:47:03,540 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:47:03,541 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:47:03,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:03,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:03,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:03,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:47:03,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:47:03,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:04,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:04,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:04,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:04,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:47:04,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:47:04,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:04,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:04,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:04,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:04,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:47:04,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:47:04,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:05,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:05,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:05,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:05,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:47:05,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:47:05,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:05,257 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:05,276 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:05,359 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.166 +2025-10-01 16:47:05,359 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:47:05,360 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:47:06,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:06,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:06,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:06,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:47:06,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:47:06,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:08,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:08,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:08,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:08,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:47:08,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:47:08,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:08,917 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:08,955 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:09,035 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=205.252 +2025-10-01 16:47:09,035 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:47:09,036 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:47:09,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:09,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:09,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:10,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:47:10,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:47:10,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:10,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:10,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:10,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:10,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:47:10,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:47:10,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:10,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:10,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:10,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:10,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:47:10,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:47:10,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:14,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:14,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:14,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:14,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:47:14,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:47:14,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:14,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:14,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:14,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:15,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:47:15,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:47:15,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:15,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:15,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:15,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:15,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:47:15,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:47:15,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:15,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:15,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:15,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:15,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:47:15,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:47:15,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:17,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:17,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:17,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:17,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:47:17,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:47:17,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:17,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:17,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:17,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:17,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:47:17,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:47:17,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:17,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:17,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:17,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:18,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:47:18,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:47:18,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:19,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:19,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:19,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:19,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:47:19,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:47:19,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:20,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:20,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:20,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:20,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:47:20,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:47:20,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:21,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:21,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:21,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:21,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:47:21,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:47:21,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:22,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:22,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:22,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:22,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 16:47:22,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 16:47:22,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:23,695 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:47:23,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:47:23,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:47:23,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 16:47:23,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 16:47:23,991 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:47:24,443 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:47:24,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:47:24,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:47:24,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 16:47:24,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 16:47:24,731 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:47:25,233 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:25,271 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:25,366 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.242 +2025-10-01 16:47:25,367 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 16:47:25,369 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 16:47:25,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:25,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:25,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:26,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:47:26,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:47:26,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:27,176 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:47:27,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:47:27,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:47:27,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 16:47:27,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 16:47:27,466 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:47:27,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:27,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:27,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:28,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:47:28,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:47:28,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:29,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:29,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:29,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:29,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:47:29,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:47:29,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:29,582 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:29,597 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:29,679 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.256 +2025-10-01 16:47:29,679 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:47:29,679 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:47:31,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:31,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:31,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:31,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:47:31,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:47:31,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:31,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:31,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:31,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:31,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:47:31,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:47:31,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:33,352 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:33,373 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:33,454 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=13.247 +2025-10-01 16:47:33,454 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:47:33,454 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:47:33,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:33,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:33,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:33,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:47:33,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:47:33,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:34,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:34,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:34,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:34,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:47:34,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:47:34,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:34,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:34,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:34,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:35,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:47:35,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:47:35,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:36,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:36,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:36,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:36,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:47:36,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:47:36,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:36,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:36,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:36,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:36,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:47:36,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:47:36,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:38,143 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:47:38,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:47:38,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:47:38,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 16:47:38,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 16:47:38,442 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:47:38,859 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:38,882 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:38,957 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.091 +2025-10-01 16:47:38,957 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:47:38,957 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:47:39,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:39,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:39,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:39,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:47:39,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:47:39,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:41,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:41,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:41,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:41,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:47:41,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:47:41,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:41,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:41,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:41,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:41,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:47:41,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:47:41,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:42,128 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:42,145 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:42,220 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.278 +2025-10-01 16:47:42,220 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:47:42,220 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:47:42,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:42,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:42,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:43,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:47:43,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:47:43,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:43,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:43,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:43,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:43,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:47:43,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:47:43,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:43,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:43,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:44,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:44,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:47:44,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:47:44,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:44,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:44,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:44,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:44,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:47:44,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:47:44,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:44,462 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:44,479 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(786, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:44,551 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.560 +2025-10-01 16:47:44,551 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:47:44,551 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:47:45,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:45,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:45,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:45,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:47:45,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:47:45,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:45,674 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:45,693 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:45,765 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.741 +2025-10-01 16:47:45,766 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:47:45,766 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:47:46,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:46,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:46,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:46,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:47:46,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:47:46,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:47,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:47,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:47,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:47,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:47:47,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:47:47,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:47,768 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:47,783 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:47,858 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.072 +2025-10-01 16:47:47,859 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:47:47,859 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:47:48,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:48,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:48,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:48,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:47:48,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:47:48,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:48,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:48,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:48,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:48,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:47:48,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:47:48,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:48,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:48,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:49,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:49,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:47:49,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:47:49,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:50,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:50,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:50,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:50,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:47:50,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:47:50,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:50,966 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:50,983 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:51,058 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.744 +2025-10-01 16:47:51,058 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:47:51,058 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:47:51,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:51,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:51,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:51,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:47:51,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:47:51,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:51,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:51,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:52,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:52,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:47:52,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:47:52,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:52,438 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:47:52,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:47:52,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:47:52,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 16:47:52,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 16:47:52,720 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:47:53,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:53,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:53,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:53,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:47:53,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:47:53,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:53,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:53,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:53,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:53,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:47:53,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:47:53,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:54,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:54,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:54,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:54,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:47:54,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:47:54,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:55,375 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:47:55,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:47:55,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:47:55,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-01 16:47:55,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-01 16:47:55,642 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:47:55,860 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:47:55,884 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:47:55,957 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.684 +2025-10-01 16:47:55,958 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:47:55,959 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:47:56,276 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:47:56,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:47:56,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:47:56,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-01 16:47:56,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-01 16:47:56,548 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:47:56,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:56,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:56,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:57,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:47:57,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:47:57,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:57,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:57,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:57,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:57,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:47:57,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:47:57,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:58,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:58,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:58,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:58,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:47:58,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:47:58,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:47:59,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:47:59,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:47:59,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:47:59,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:47:59,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:47:59,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:00,001 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:48:00,023 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:48:00,110 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.146 +2025-10-01 16:48:00,110 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:48:00,111 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:48:00,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:00,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:00,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:00,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:48:00,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:48:00,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:00,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:00,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:00,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:01,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:48:01,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:48:01,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:01,250 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:48:01,286 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(989, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:48:01,387 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.949 +2025-10-01 16:48:01,387 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 16:48:01,388 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 16:48:01,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:01,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:01,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:01,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:48:01,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:48:01,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:03,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:03,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:03,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:03,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:48:03,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:48:03,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:04,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:04,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:04,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:04,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 16:48:04,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 16:48:04,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:05,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:05,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:05,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:05,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:48:05,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:48:05,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:05,371 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:48:05,394 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:48:05,478 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.673 +2025-10-01 16:48:05,479 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:48:05,480 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:48:05,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:05,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:05,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:05,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:48:05,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:48:05,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:05,815 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:48:05,845 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(998, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:48:05,945 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=250.015 +2025-10-01 16:48:05,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 16:48:05,946 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 16:48:06,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:06,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:06,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:06,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 16:48:06,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 16:48:06,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:08,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:08,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:08,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:08,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:48:08,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:48:08,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:08,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:08,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:08,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:08,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:48:08,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:48:08,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:10,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:10,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:10,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:10,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:48:10,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:48:10,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:10,986 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:48:11,016 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 986, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:48:11,116 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.235 +2025-10-01 16:48:11,116 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 16:48:11,117 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 16:48:11,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:11,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:11,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:11,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:48:11,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:48:11,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:12,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:12,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:12,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:12,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:48:12,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:48:12,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:12,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:12,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:12,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:12,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:48:12,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:48:12,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:13,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:13,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:13,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:13,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:48:13,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:48:13,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:15,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:15,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:15,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:15,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:48:15,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:48:15,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:16,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:16,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:16,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:16,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:48:16,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:48:16,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:17,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:17,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:17,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:17,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:48:17,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:48:17,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:17,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:17,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:17,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:17,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:48:17,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:48:17,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:18,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:18,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:18,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:18,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:48:18,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:48:18,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:18,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:18,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:18,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:18,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:48:18,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:48:18,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:20,346 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:48:20,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:48:20,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:48:20,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 16:48:20,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 16:48:20,630 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:48:20,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:20,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:20,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:21,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:48:21,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:48:21,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:21,596 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:48:21,615 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:48:21,691 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.738 +2025-10-01 16:48:21,692 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:48:21,692 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:48:21,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:21,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:21,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:21,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:48:21,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:48:21,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:23,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:23,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:23,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:23,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:48:23,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:48:23,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:23,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:23,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:24,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:24,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:48:24,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:48:24,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:24,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:24,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:24,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:24,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:48:24,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:48:24,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:26,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:26,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:26,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:26,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:48:26,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:48:26,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:27,917 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:48:27,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:48:27,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:48:28,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 16:48:28,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 16:48:28,215 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:48:29,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:29,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:29,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:29,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:48:29,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:48:29,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:32,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:32,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:32,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:32,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:48:32,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:48:32,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:33,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:33,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:33,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:33,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:48:33,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:48:33,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:36,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:36,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:36,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:36,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:48:36,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:48:36,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:37,781 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:48:37,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:48:37,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:48:38,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 16:48:38,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 16:48:38,069 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:48:39,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:39,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:39,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:39,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:48:39,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:48:39,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:40,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:40,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:40,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:40,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:48:40,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:48:40,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:41,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:41,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:41,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:41,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 16:48:41,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 16:48:41,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:41,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:41,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:41,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:41,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:48:41,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:48:41,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:43,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:43,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:43,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:43,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:48:43,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:48:43,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:46,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:46,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:46,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:46,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:48:46,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:48:46,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:47,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:47,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:47,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:47,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:48:47,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:48:47,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:50,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:50,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:50,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:50,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:48:50,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:48:50,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:51,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:51,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:51,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:51,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:48:51,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:48:51,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:54,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:54,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:54,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:54,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:48:54,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:48:54,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:56,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:56,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:56,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:56,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:48:56,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:48:56,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:58,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:58,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:58,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:58,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 16:48:58,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 16:48:58,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:48:59,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:48:59,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:48:59,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:48:59,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:48:59,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:48:59,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:00,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:00,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:00,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:00,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:49:00,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:49:00,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:03,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:03,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:03,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:03,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:49:03,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:49:03,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:05,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:05,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:05,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:05,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:49:05,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:49:05,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:05,766 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:49:05,793 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:49:05,868 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.339 +2025-10-01 16:49:05,868 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:49:05,868 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:49:07,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:07,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:07,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:07,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:49:07,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:49:07,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:09,512 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:49:09,537 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:49:09,616 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.970 +2025-10-01 16:49:09,616 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:49:09,616 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:49:09,766 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:49:09,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:49:09,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:49:10,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 16:49:10,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-01 16:49:10,069 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:49:11,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:11,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:11,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:11,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:49:11,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:49:11,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:12,735 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:49:12,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:49:12,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:49:13,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.324s +2025-10-01 16:49:13,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.324s (avg: 0.162s/image) +2025-10-01 16:49:13,061 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:49:14,232 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:49:14,265 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:49:14,358 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.999 +2025-10-01 16:49:14,358 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 16:49:14,359 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:49:14,381 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:49:14,398 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:49:14,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.833 +2025-10-01 16:49:14,470 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:49:14,470 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:49:15,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:15,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:15,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:15,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:49:15,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:49:15,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:15,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:15,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:15,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:15,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:49:15,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:49:15,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:15,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:15,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:16,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:16,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:49:16,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:49:16,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:16,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:16,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:16,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:16,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:49:16,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:49:16,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:18,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:18,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:18,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:18,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.215s +2025-10-01 16:49:18,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.215s (avg: 0.215s/image) +2025-10-01 16:49:18,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:18,615 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:49:18,636 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:49:18,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.266 +2025-10-01 16:49:18,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 16:49:18,736 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 16:49:21,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:21,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:21,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:21,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:49:21,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:49:21,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:22,365 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:49:22,403 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:49:22,512 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.159 +2025-10-01 16:49:22,512 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.108s +2025-10-01 16:49:22,514 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.111s +2025-10-01 16:49:23,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:23,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:23,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:23,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:49:23,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:49:23,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:23,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:23,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:23,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:24,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.211s +2025-10-01 16:49:24,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.211s (avg: 0.211s/image) +2025-10-01 16:49:24,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:26,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:26,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:26,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:26,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:49:26,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:49:26,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:27,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:27,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:27,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:27,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:49:27,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:49:27,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:28,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:28,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:28,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:28,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:49:28,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:49:28,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:30,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:30,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:30,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:30,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 16:49:30,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 16:49:30,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:33,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:33,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:33,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:33,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:49:33,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:49:33,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:34,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:34,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:34,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:34,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:49:34,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:49:34,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:36,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:36,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:36,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:36,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-01 16:49:36,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-01 16:49:36,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:37,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:37,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:37,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:37,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:49:37,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:49:37,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:39,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:39,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:39,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:40,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:49:40,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:49:40,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:41,148 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:49:41,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:49:41,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:49:41,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-01 16:49:41,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.156s/image) +2025-10-01 16:49:41,462 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:49:43,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:43,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:43,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:43,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:49:43,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:49:43,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:46,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:46,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:46,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:46,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:49:46,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:49:46,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:49,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:49,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:49,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:49,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:49:49,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:49:49,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:49,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:49,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:49,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:50,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 16:49:50,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 16:49:50,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:50,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:50,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:50,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:50,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:49:50,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:49:50,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:51,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:51,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:51,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:51,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:49:51,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:49:51,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:56,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:56,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:56,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:56,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:49:56,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:49:56,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:57,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:57,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:57,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:57,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:49:57,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:49:57,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:58,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:58,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:58,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:58,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:49:58,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:49:58,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:49:59,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:49:59,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:49:59,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:49:59,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:49:59,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:49:59,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:02,306 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:02,336 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:02,424 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.429 +2025-10-01 16:50:02,424 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:50:02,424 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 16:50:03,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:03,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:03,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:03,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:50:03,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:50:03,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:03,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:03,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:03,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:03,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:50:03,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:50:03,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:05,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:05,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:05,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:05,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:50:05,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:50:05,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:07,102 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:07,140 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:07,217 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.934 +2025-10-01 16:50:07,217 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:50:07,218 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:50:09,367 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:09,403 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:09,477 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.990 +2025-10-01 16:50:09,478 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:50:09,478 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:50:09,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:09,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:09,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:09,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:50:09,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:50:09,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:10,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:10,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:10,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:10,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:50:10,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:50:10,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:10,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:10,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:10,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:10,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:50:10,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:50:10,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:10,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:10,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:11,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:11,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:50:11,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:50:11,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:12,228 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:12,279 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:12,369 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.806 +2025-10-01 16:50:12,369 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:50:12,371 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:50:13,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:13,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:13,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:14,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:50:14,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:50:14,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:14,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:14,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:14,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:14,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:50:14,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:50:14,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:14,519 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:14,543 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:14,628 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.395 +2025-10-01 16:50:14,628 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:50:14,628 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:50:15,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:15,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:15,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:15,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:50:15,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:50:15,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:17,276 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:50:17,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:50:17,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:50:17,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 16:50:17,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 16:50:17,575 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:50:18,151 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:18,188 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:18,274 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=235.134 +2025-10-01 16:50:18,274 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:50:18,274 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 16:50:18,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:18,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:18,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:18,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:50:18,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:50:18,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:19,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:19,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:19,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:20,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:50:20,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:50:20,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:20,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:20,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:20,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:20,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:50:20,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:50:20,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:24,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:24,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:24,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:24,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:50:24,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:50:24,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:25,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:25,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:25,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:26,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:50:26,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:50:26,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:26,223 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:50:26,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:50:26,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:50:26,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 16:50:26,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 16:50:26,516 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:50:26,765 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:26,784 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:26,865 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.921 +2025-10-01 16:50:26,865 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:50:26,865 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:50:28,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:28,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:28,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:28,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:50:28,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:50:28,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:28,885 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:50:28,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:50:28,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:50:29,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 16:50:29,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-01 16:50:29,158 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:50:30,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:30,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:30,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:31,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:50:31,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:50:31,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:32,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:32,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:32,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:32,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:50:32,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:50:32,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:34,331 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:34,341 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:34,410 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.638 +2025-10-01 16:50:34,411 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 16:50:34,411 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 16:50:34,420 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 16:50:34,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 16:50:34,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 16:50:34,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.419s +2025-10-01 16:50:34,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.419s (avg: 0.140s/image) +2025-10-01 16:50:34,841 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 16:50:35,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:35,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:35,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:35,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:50:35,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:50:35,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:35,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:35,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:35,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:35,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 16:50:35,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 16:50:35,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:37,839 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:37,856 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 603, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:37,925 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.279 +2025-10-01 16:50:37,925 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 16:50:37,925 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 16:50:39,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:39,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:39,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:39,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:50:39,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:50:39,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:39,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:39,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:39,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:39,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:50:39,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:50:39,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:40,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:40,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:40,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:40,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:50:40,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:50:40,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:40,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:40,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:40,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:40,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:50:40,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:50:40,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:42,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:42,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:42,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:42,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:50:42,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:50:42,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:43,876 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:43,900 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:43,980 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.193 +2025-10-01 16:50:43,980 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:50:43,982 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:50:44,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:44,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:44,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:44,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:50:44,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:50:44,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:45,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:45,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:45,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:45,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:50:45,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:50:45,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:47,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:47,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:47,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:47,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:50:47,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:50:47,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:47,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:47,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:47,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:47,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:50:47,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:50:47,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:48,105 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:48,127 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:48,215 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.084 +2025-10-01 16:50:48,215 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:50:48,216 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 16:50:48,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:48,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:48,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:48,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:50:48,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:50:48,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:48,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:48,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:48,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:48,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:50:48,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:50:48,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:51,597 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:51,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:51,718 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.933 +2025-10-01 16:50:51,718 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 16:50:51,719 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 16:50:52,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:52,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:52,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:52,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:50:52,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:50:52,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:54,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:54,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:54,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:54,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:50:54,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:50:54,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:55,282 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:55,306 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:55,401 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.189 +2025-10-01 16:50:55,402 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 16:50:55,402 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 16:50:55,605 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:55,632 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:55,723 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.951 +2025-10-01 16:50:55,723 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 16:50:55,723 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:50:56,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:56,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:56,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:56,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:50:56,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:50:56,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:56,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:56,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:57,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:57,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:50:57,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:50:57,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:50:59,021 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:50:59,058 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:50:59,140 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=218.836 +2025-10-01 16:50:59,141 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:50:59,142 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:50:59,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:50:59,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:50:59,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:50:59,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:50:59,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:50:59,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:00,189 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:51:00,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:51:00,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:51:00,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 16:51:00,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-01 16:51:00,462 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:51:03,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:03,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:03,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:03,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:51:03,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:51:03,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:04,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:04,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:04,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:04,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:51:04,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:51:04,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:04,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:04,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:04,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:04,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:51:04,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:51:04,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:05,776 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:51:05,799 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:51:05,890 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.294 +2025-10-01 16:51:05,890 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:51:05,891 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 16:51:05,993 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:51:06,018 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:51:06,107 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.408 +2025-10-01 16:51:06,108 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:51:06,109 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:51:06,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:06,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:06,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:06,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:51:06,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:51:06,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:07,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:07,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:07,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:07,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:51:07,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:51:07,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:07,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:07,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:08,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:08,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:51:08,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:51:08,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:09,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:09,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:09,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:09,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:51:09,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:51:09,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:09,574 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:51:09,598 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:51:09,688 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.664 +2025-10-01 16:51:09,688 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:51:09,689 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:51:09,997 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:51:10,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:51:10,107 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.528 +2025-10-01 16:51:10,107 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:51:10,107 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:51:10,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:10,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:10,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:10,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 16:51:10,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 16:51:10,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:12,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:12,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:12,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:12,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:51:12,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:51:12,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:13,085 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:51:13,118 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:51:13,197 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.444 +2025-10-01 16:51:13,197 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:51:13,198 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:51:15,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:15,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:15,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:15,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:51:15,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:51:15,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:16,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:16,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:16,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:17,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:51:17,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:51:17,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:17,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:17,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:17,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:17,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:51:17,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:51:17,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:18,078 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:51:18,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:51:18,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:51:18,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 16:51:18,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 16:51:18,371 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:51:20,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:20,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:20,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:20,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:51:20,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:51:20,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:21,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:21,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:21,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:21,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:51:21,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:51:21,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:22,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:22,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:22,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:22,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:51:22,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:51:22,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:27,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:27,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:27,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:27,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 16:51:27,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 16:51:27,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:28,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:28,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:28,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:28,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:51:28,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:51:28,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:28,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:28,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:28,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:28,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:51:28,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:51:28,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:34,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:34,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:34,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:34,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:51:34,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:51:34,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:35,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:35,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:35,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:35,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:51:35,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:51:35,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:35,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:35,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:35,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:35,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:51:35,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:51:35,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:37,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:37,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:37,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:37,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:51:37,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:51:37,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:38,554 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:51:38,581 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:51:38,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.282 +2025-10-01 16:51:38,668 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:51:38,669 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:51:39,821 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:51:39,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:51:39,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:51:40,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 16:51:40,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 16:51:40,102 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:51:40,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:40,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:40,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:40,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:51:40,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:51:40,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:41,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:41,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:41,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:41,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:51:41,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:51:41,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:42,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:42,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:42,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:42,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:51:42,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:51:42,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:43,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:43,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:43,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:43,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:51:43,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:51:43,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:43,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:43,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:43,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:43,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:51:43,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:51:43,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:43,820 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:51:43,836 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:51:43,910 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.631 +2025-10-01 16:51:43,911 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:51:43,911 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:51:44,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:44,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:44,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:44,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:51:44,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:51:44,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:45,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:45,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:45,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:45,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:51:45,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:51:45,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:46,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:46,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:46,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:46,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:51:46,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:51:46,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:46,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:46,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:46,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:46,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:51:46,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:51:46,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:48,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:48,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:48,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:48,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:51:48,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:51:48,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:52,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:52,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:52,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:52,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:51:52,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:51:52,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:53,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:53,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:53,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:53,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:51:53,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:51:53,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:53,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:53,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:53,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:53,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 16:51:53,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 16:51:53,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:53,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:53,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:53,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:53,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:51:53,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:51:53,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:53,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:53,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:54,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:54,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 16:51:54,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 16:51:54,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:54,303 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:51:54,315 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(802, 802, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:51:54,387 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.210 +2025-10-01 16:51:54,388 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:51:54,388 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 16:51:54,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:54,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:54,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:54,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:51:54,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:51:54,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:57,013 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:51:57,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:51:57,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:51:57,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 16:51:57,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 16:51:57,318 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:51:57,923 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:51:57,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:51:57,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:51:58,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 16:51:58,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 16:51:58,219 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:51:58,755 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:51:58,784 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:51:58,864 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.084 +2025-10-01 16:51:58,865 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:51:58,866 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:51:59,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:59,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:59,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:59,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:51:59,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:51:59,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:51:59,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:51:59,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:51:59,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:51:59,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:51:59,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:51:59,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:00,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:00,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:00,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:00,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:52:00,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:52:00,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:01,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:01,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:01,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:01,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:52:01,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:52:01,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:02,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:02,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:02,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:02,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:52:02,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:52:02,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:03,081 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:03,111 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:03,203 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.534 +2025-10-01 16:52:03,203 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 16:52:03,204 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 16:52:03,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:03,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:03,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:03,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:52:03,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:52:03,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:05,097 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:05,130 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:05,233 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=216.802 +2025-10-01 16:52:05,233 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 16:52:05,234 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 16:52:05,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:05,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:05,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:05,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:52:05,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:52:05,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:05,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:05,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:05,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:05,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:52:05,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:52:05,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:06,360 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:06,384 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:06,484 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.877 +2025-10-01 16:52:06,484 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-01 16:52:06,485 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-01 16:52:06,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:06,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:06,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:06,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:52:06,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:52:06,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:07,420 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:07,457 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:07,553 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.441 +2025-10-01 16:52:07,553 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 16:52:07,554 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 16:52:08,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:08,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:08,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:08,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:52:08,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:52:08,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:08,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:08,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:08,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:08,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:52:08,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:52:08,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:09,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:09,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:09,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:09,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:52:09,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:52:09,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:09,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:09,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:09,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:09,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:52:09,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:52:09,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:10,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:10,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:10,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:10,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:52:10,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:52:10,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:12,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:12,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:12,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:12,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:52:12,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:52:12,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:13,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:13,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:13,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:13,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:52:13,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:52:13,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:14,248 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:14,263 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:14,337 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.769 +2025-10-01 16:52:14,337 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:52:14,337 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:52:14,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:14,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:14,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:14,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 16:52:14,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 16:52:14,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:15,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:15,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:15,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:15,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 16:52:15,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 16:52:15,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:15,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:15,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:15,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:16,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:52:16,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:52:16,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:16,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:16,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:16,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:16,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:52:16,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:52:16,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:17,992 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:18,017 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:18,093 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.426 +2025-10-01 16:52:18,094 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:52:18,094 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:52:18,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:18,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:18,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:18,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:52:18,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:52:18,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:18,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:18,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:18,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:18,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:52:18,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:52:18,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:19,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:19,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:19,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:19,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:52:19,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:52:19,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:19,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:19,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:19,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:19,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:52:19,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:52:19,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:21,096 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:21,115 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:21,185 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.205 +2025-10-01 16:52:21,186 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 16:52:21,186 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 16:52:22,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:22,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:22,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:22,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:52:22,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:52:22,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:23,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:23,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:23,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:23,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:52:23,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:52:23,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:25,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:25,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:25,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:25,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:52:25,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:52:25,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:26,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:26,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:26,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:26,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:52:26,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:52:26,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:28,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:28,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:28,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:28,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:52:28,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:52:28,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:29,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:29,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:29,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:29,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:52:29,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:52:29,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:32,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:32,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:32,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:32,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:52:32,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:52:32,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:33,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:33,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:33,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:33,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:52:33,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:52:33,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:33,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:33,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:33,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:33,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:52:33,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:52:33,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:36,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:36,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:36,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:36,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:52:36,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:52:36,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:38,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:38,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:38,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:38,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:52:38,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:52:38,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:38,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:38,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:38,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:38,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:52:38,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:52:38,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:42,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:42,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:42,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:42,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:52:42,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:52:42,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:42,562 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:42,575 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:42,648 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.787 +2025-10-01 16:52:42,648 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:52:42,649 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:52:42,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:42,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:42,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:42,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-01 16:52:42,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-01 16:52:42,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:43,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:43,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:43,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:43,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:52:43,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:52:43,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:43,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:43,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:43,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:43,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:52:43,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:52:43,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:43,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:43,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:43,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:43,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 16:52:43,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 16:52:43,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:44,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:44,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:44,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:44,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:52:44,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:52:44,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:45,706 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:45,729 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:45,803 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.659 +2025-10-01 16:52:45,803 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:52:45,803 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:52:46,004 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:46,037 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:46,116 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.669 +2025-10-01 16:52:46,116 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:52:46,118 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:52:46,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:46,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:46,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:46,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:52:46,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:52:46,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:48,504 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:52:48,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:52:48,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:52:48,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 16:52:48,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 16:52:48,784 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:52:49,133 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:49,142 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:49,215 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.145 +2025-10-01 16:52:49,215 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:52:49,215 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:52:49,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:49,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:49,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:49,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:52:49,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:52:49,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:49,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:49,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:49,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:49,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:52:49,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:52:49,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:50,158 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:50,177 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:50,249 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.242 +2025-10-01 16:52:50,249 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 16:52:50,251 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:52:50,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:50,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:50,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:50,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:52:50,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:52:50,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:53,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:53,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:53,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:54,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:52:54,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:52:54,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:54,056 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:52:54,080 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:52:54,169 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.570 +2025-10-01 16:52:54,170 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:52:54,170 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:52:54,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:54,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:54,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:54,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:52:54,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:52:54,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:55,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:55,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:55,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:55,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:52:55,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:52:55,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:55,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:55,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:55,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:55,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:52:55,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:52:55,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:57,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:57,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:57,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:57,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:52:57,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:52:57,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:58,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:58,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:58,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:58,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:52:58,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:52:58,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:58,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:58,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:58,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:58,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:52:58,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:52:58,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:58,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:58,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:58,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:59,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:52:59,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:52:59,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:52:59,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:52:59,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:52:59,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:52:59,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:52:59,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:52:59,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:00,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:00,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:00,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:00,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:53:00,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:53:00,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:00,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:00,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:00,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:00,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:53:00,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:53:00,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:01,469 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:53:01,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:53:01,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:53:01,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-01 16:53:01,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +2025-10-01 16:53:01,782 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:53:02,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:02,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:02,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:02,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:53:02,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:53:02,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:03,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:03,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:03,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:03,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:53:03,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:53:03,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:04,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:04,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:04,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:04,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:53:04,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:53:04,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:05,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:05,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:05,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:05,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:53:05,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:53:05,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:05,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:05,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:06,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:06,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:53:06,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:53:06,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:12,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:12,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:12,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:12,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:53:12,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:53:12,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:12,899 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:12,924 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:13,010 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.493 +2025-10-01 16:53:13,010 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:53:13,012 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:53:13,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:13,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:13,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:13,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:53:13,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:53:13,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:15,791 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:15,837 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:15,926 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.321 +2025-10-01 16:53:15,926 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 16:53:15,926 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 16:53:16,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:16,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:16,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:16,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:53:16,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:53:16,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:16,498 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:53:16,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:53:16,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:53:16,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 16:53:16,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 16:53:16,787 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:53:18,486 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:18,517 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:18,599 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.138 +2025-10-01 16:53:18,599 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:53:18,600 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:53:18,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:18,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:18,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:19,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 16:53:19,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 16:53:19,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:19,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:19,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:19,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:19,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:53:19,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:53:19,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:19,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:19,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:19,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:19,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:53:19,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:53:19,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:19,975 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:20,001 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:20,082 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.898 +2025-10-01 16:53:20,082 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:53:20,083 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:53:20,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:20,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:20,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:20,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:53:20,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:53:20,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:20,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:20,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:20,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:20,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:53:20,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:53:20,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:21,961 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:21,989 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:22,067 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.933 +2025-10-01 16:53:22,067 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:53:22,067 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:53:22,384 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:22,433 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:22,516 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.475 +2025-10-01 16:53:22,516 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:53:22,518 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:53:23,250 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:53:23,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:53:23,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:53:23,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 16:53:23,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 16:53:23,538 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:53:24,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:24,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:24,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:24,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:53:24,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:53:24,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:24,376 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:24,400 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:24,482 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.140 +2025-10-01 16:53:24,483 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 16:53:24,483 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 16:53:25,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:25,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:25,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:25,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:53:25,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:53:25,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:28,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:28,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:28,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:28,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:53:28,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:53:28,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:30,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:30,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:30,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:30,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:53:30,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:53:30,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:30,622 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:30,655 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:30,729 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.675 +2025-10-01 16:53:30,730 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:53:30,730 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:53:31,519 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 16:53:31,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 16:53:31,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 16:53:31,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.395s +2025-10-01 16:53:31,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.395s (avg: 0.132s/image) +2025-10-01 16:53:31,916 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 16:53:32,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:32,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:32,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:32,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:53:32,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:53:32,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:33,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:33,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:33,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:33,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:53:33,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:53:33,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:33,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:33,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:33,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:33,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:53:33,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:53:33,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:33,993 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:34,011 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:34,085 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.854 +2025-10-01 16:53:34,085 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:53:34,085 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:53:35,149 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:53:35,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:53:35,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:53:35,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-01 16:53:35,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-01 16:53:35,420 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:53:35,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:35,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:35,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:35,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:53:35,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:53:35,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:36,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:36,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:36,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:36,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:53:36,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:53:36,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:37,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:37,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:37,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:37,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:53:37,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:53:37,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:37,375 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:37,392 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:37,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.684 +2025-10-01 16:53:37,470 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:53:37,470 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:53:37,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:37,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:37,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:37,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:53:37,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:53:37,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:38,863 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:53:38,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:53:38,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:53:39,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 16:53:39,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 16:53:39,149 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:53:39,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:39,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:39,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:39,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:53:39,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:53:39,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:40,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:40,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:40,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:41,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:53:41,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:53:41,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:42,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:42,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:42,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:42,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:53:42,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:53:42,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:42,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:42,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:42,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:43,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:53:43,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:53:43,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:43,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:43,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:43,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:43,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:53:43,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:53:43,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:43,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:43,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:43,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:43,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:53:43,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:53:43,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:44,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:44,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:44,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:44,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:53:44,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:53:44,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:45,261 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:45,305 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:45,382 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.533 +2025-10-01 16:53:45,382 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:53:45,382 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:53:47,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:47,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:47,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:47,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:53:47,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:53:47,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:47,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:47,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:47,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:47,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:53:47,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:53:47,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:48,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:48,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:48,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:48,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:53:48,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:53:48,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:48,942 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:48,964 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:49,039 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=189.411 +2025-10-01 16:53:49,039 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:53:49,039 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:53:50,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:50,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:50,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:50,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:53:50,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:53:50,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:52,947 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:53:52,973 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:53:53,048 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.242 +2025-10-01 16:53:53,048 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:53:53,049 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:53:55,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:55,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:55,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:55,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:53:55,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:53:55,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:53:56,279 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:53:56,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:53:56,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:53:56,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 16:53:56,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 16:53:56,575 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:53:58,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:53:58,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:53:58,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:53:58,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:53:58,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:53:58,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:00,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:00,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:00,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:00,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:54:00,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:54:00,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:05,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:05,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:05,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:05,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:54:05,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:54:05,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:06,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:06,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:06,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:06,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 16:54:06,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 16:54:06,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:06,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:06,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:06,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:06,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:54:06,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:54:06,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:07,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:07,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:07,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:07,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:54:07,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:54:07,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:09,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:09,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:09,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:09,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:54:09,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:54:09,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:12,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:12,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:12,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:12,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:54:12,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:54:12,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:13,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:13,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:13,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:13,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:54:13,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:54:13,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:13,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:13,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:13,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:13,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:54:13,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:54:13,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:14,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:14,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:14,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:15,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:54:15,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:54:15,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:15,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:15,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:15,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:15,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:54:15,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:54:15,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:15,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:15,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:15,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:15,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:54:15,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:54:15,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:17,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:17,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:17,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:17,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 16:54:17,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 16:54:17,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:19,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:19,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:19,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:19,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:54:19,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:54:19,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:19,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:19,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:19,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:19,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:54:19,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:54:19,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:20,172 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:54:20,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:54:20,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:54:20,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 16:54:20,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 16:54:20,461 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:54:20,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:20,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:20,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:20,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:54:20,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:54:20,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:22,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:22,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:22,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:22,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:54:22,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:54:22,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:22,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:22,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:22,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:22,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:54:22,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:54:22,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:23,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:23,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:23,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:24,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:54:24,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:54:24,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:25,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:25,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:25,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:25,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:54:25,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:54:25,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:26,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:26,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:26,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:26,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:54:26,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:54:26,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:26,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:26,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:26,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:27,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:54:27,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:54:27,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:27,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:27,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:27,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:27,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:54:27,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:54:27,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:33,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:33,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:33,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:33,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 16:54:33,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 16:54:33,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:33,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:33,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:33,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:33,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:54:33,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:54:33,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:34,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:34,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:34,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:34,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:54:34,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:54:34,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:34,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:34,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:34,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:34,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:54:34,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:54:34,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:35,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:35,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:35,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:35,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:54:35,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:54:35,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:37,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:37,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:37,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:38,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 16:54:38,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 16:54:38,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:39,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:39,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:39,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:39,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:54:39,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:54:39,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:41,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:41,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:41,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:42,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:54:42,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:54:42,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:42,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:42,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:42,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:42,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:54:42,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:54:42,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:45,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:45,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:45,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:45,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:54:45,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:54:45,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:45,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:45,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:45,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:45,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:54:45,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:54:45,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:47,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:47,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:47,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:47,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:54:47,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:54:47,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:50,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:50,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:50,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:50,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:54:50,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:54:50,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:52,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:52,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:52,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:52,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:54:52,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:54:52,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:53,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:53,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:53,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:53,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:54:53,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:54:53,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:54,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:54,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:54,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:54,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:54:54,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:54:54,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:54,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:54,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:54,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:54,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:54:54,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:54:54,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:57,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:57,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:57,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:57,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:54:57,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:54:57,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:57,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:57,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:58,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:58,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:54:58,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:54:58,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:54:59,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:54:59,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:54:59,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:54:59,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 16:54:59,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 16:54:59,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:02,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:02,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:02,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:02,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 16:55:02,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 16:55:02,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:03,943 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:55:03,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:55:03,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:55:04,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 16:55:04,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 16:55:04,232 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:55:06,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:06,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:07,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:07,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:55:07,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:55:07,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:10,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:10,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:10,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:10,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:55:10,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:55:10,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:12,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:12,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:12,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:12,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:55:12,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:55:12,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:13,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:13,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:13,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:13,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:55:13,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:55:13,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:16,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:16,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:16,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:16,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:55:16,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:55:16,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:18,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:18,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:18,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:18,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:55:18,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:55:18,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:21,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:21,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:21,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:21,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:55:21,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:55:21,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:23,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:23,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:23,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:23,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:55:23,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:55:23,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:24,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:24,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:24,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:24,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:55:24,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:55:24,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:28,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:28,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:28,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:28,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:55:28,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:55:28,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:29,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:29,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:29,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:29,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:55:29,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:55:29,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:31,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:31,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:32,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:32,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:55:32,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:55:32,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:33,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:33,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:33,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:33,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:55:33,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:55:33,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:33,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:33,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:33,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:33,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:55:33,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:55:33,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:33,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:33,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:33,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:33,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:55:33,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:55:33,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:33,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:33,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:34,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:34,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:55:34,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:55:34,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:35,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:35,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:36,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:36,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:55:36,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:55:36,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:36,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:36,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:36,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:36,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:55:36,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:55:36,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:36,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:36,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:36,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:36,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:55:36,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:55:36,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:39,223 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:55:39,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:55:39,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:55:39,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 16:55:39,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 16:55:39,513 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:55:39,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:39,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:39,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:40,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:55:40,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:55:40,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:43,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:43,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:43,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:43,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:55:43,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:55:43,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:44,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:44,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:44,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:44,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:55:44,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:55:44,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:46,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:46,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:46,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:46,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:55:46,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:55:46,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:47,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:47,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:47,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:47,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:55:47,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:55:47,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:49,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:49,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:49,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:49,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:55:49,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:55:49,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:49,735 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:55:49,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:55:49,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:55:49,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-01 16:55:49,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-01 16:55:49,999 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:55:50,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:50,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:50,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:51,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:55:51,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:55:51,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:52,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:52,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:52,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:52,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:55:52,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:55:52,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:56,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:56,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:57,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:57,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:55:57,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:55:57,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:57,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:57,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:57,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:55:57,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:55:57,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:55:57,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:55:59,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:55:59,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:55:59,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:00,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:56:00,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:56:00,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:00,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:00,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:00,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:00,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:56:00,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:56:00,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:02,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:02,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:02,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:02,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:56:02,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:56:02,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:02,443 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:02,470 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:02,556 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.112 +2025-10-01 16:56:02,556 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:56:02,558 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:56:02,675 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:02,695 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:02,780 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.589 +2025-10-01 16:56:02,780 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 16:56:02,781 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 16:56:02,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:02,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:03,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:03,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:56:03,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:56:03,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:03,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:03,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:03,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:03,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:56:03,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:56:03,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:04,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:04,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:04,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:04,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:56:04,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:56:04,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:04,984 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:05,001 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:05,075 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.654 +2025-10-01 16:56:05,075 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:56:05,075 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:56:05,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:05,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:06,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:06,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:56:06,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:56:06,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:07,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:07,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:07,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:07,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:56:07,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:56:07,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:08,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:08,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:08,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:08,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:56:08,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:56:08,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:08,698 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:08,720 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:08,793 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.113 +2025-10-01 16:56:08,794 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:56:08,794 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:56:12,869 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:12,898 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:12,974 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.137 +2025-10-01 16:56:12,974 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:56:12,974 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:56:13,274 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:56:13,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:56:13,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:56:13,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 16:56:13,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-01 16:56:13,542 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:56:13,575 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:13,592 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:13,665 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.833 +2025-10-01 16:56:13,665 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:56:13,665 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 16:56:14,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:14,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:14,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:15,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:56:15,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:56:15,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:16,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:16,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:16,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:16,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 16:56:16,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 16:56:16,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:17,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:17,583 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:17,662 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.522 +2025-10-01 16:56:17,663 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:56:17,663 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:56:18,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:18,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:18,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:18,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:56:18,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:56:18,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:18,956 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:18,983 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:19,056 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.357 +2025-10-01 16:56:19,056 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:56:19,057 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:56:19,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:19,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:19,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:19,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:56:19,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:56:19,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:19,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:19,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:19,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:19,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:56:19,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:56:19,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:19,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:19,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:19,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:20,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:56:20,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:56:20,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:21,305 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:21,328 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:21,402 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.454 +2025-10-01 16:56:21,402 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:56:21,403 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:56:23,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:23,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:23,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:23,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:56:23,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:56:23,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:24,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:24,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:24,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:24,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:56:24,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:56:24,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:24,581 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:24,605 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:24,680 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.645 +2025-10-01 16:56:24,680 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:56:24,680 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:56:26,126 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:56:26,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:56:26,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:56:26,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 16:56:26,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-01 16:56:26,395 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:56:26,888 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:26,923 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:26,997 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.806 +2025-10-01 16:56:26,997 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:56:26,997 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:56:27,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:27,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:27,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:27,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:56:27,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:56:27,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:28,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:28,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:28,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:28,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:56:28,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:56:28,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:29,010 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:29,046 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:29,124 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.483 +2025-10-01 16:56:29,125 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 16:56:29,125 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 16:56:30,543 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:30,568 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:30,643 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.798 +2025-10-01 16:56:30,643 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:56:30,643 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:56:33,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:33,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:33,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:33,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:56:33,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:56:33,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:33,249 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:33,275 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:33,364 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=175.500 +2025-10-01 16:56:33,364 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 16:56:33,365 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:56:33,871 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:56:33,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:56:33,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:56:34,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-01 16:56:34,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-01 16:56:34,141 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:56:34,189 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:34,211 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:34,294 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.398 +2025-10-01 16:56:34,295 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 16:56:34,295 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 16:56:34,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:34,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:34,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:34,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:56:34,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:56:34,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:35,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:35,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:35,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:35,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:56:35,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:56:35,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:36,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:36,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:36,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:36,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:56:36,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:56:36,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:39,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:39,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:39,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:39,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:56:39,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:56:39,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:40,823 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:56:40,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:56:40,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:56:41,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 16:56:41,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +2025-10-01 16:56:41,088 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:56:41,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:41,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:41,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:41,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:56:41,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:56:41,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:41,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:41,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:41,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:41,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:56:41,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:56:41,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:42,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:42,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:42,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:42,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:56:42,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:56:42,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:43,984 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:44,012 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:44,089 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.259 +2025-10-01 16:56:44,089 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:56:44,090 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 16:56:45,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:45,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:45,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:45,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:56:45,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:56:45,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:46,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:46,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:46,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:46,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 16:56:46,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 16:56:46,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:46,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:46,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:46,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:46,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:56:46,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:56:46,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:46,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:46,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:46,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:47,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:56:47,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:56:47,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:47,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:47,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:47,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:47,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 16:56:47,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 16:56:47,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:47,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:47,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:47,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:47,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:56:47,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:56:47,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:47,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:47,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:48,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:48,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:56:48,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:56:48,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:48,286 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:48,301 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:48,370 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.462 +2025-10-01 16:56:48,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 16:56:48,370 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 16:56:49,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:49,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:49,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:49,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:56:49,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:56:49,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:50,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:50,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:50,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:50,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:56:50,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:56:50,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:50,914 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:50,939 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:51,029 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.003 +2025-10-01 16:56:51,030 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 16:56:51,031 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 16:56:51,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:51,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:51,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:51,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:56:51,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:56:51,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:51,829 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:51,849 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:51,930 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.848 +2025-10-01 16:56:51,930 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:56:51,930 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:56:52,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:52,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:52,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:52,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 16:56:52,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 16:56:52,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:53,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:53,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:53,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:53,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 16:56:53,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 16:56:53,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:53,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:53,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:53,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:53,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:56:53,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:56:53,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:54,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:54,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:54,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:54,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:56:54,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:56:54,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:55,508 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:55,555 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:55,654 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.142 +2025-10-01 16:56:55,654 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 16:56:55,655 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 16:56:56,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:56,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:56,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:56,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 16:56:56,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 16:56:56,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:56,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:56,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:56,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:56,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:56:56,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:56:56,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:58,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:58,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:58,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:58,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:56:58,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:56:58,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:58,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:58,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:58,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:59,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 16:56:59,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 16:56:59,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:59,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:59,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:59,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:59,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:56:59,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:56:59,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:59,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:59,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:59,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:56:59,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:56:59,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:56:59,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:56:59,748 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:56:59,770 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:56:59,856 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.570 +2025-10-01 16:56:59,856 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:56:59,857 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:56:59,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:56:59,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:56:59,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:00,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.125s +2025-10-01 16:57:00,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.125s (avg: 0.125s/image) +2025-10-01 16:57:00,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:00,313 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:57:00,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:57:00,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:57:00,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.248s +2025-10-01 16:57:00,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.248s (avg: 0.124s/image) +2025-10-01 16:57:00,562 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:57:00,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:00,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:00,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:01,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:57:01,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:57:01,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:01,080 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:57:01,098 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:57:01,184 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=12.116 +2025-10-01 16:57:01,185 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:57:01,185 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:57:04,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:04,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:04,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:04,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 16:57:04,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 16:57:04,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:04,458 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:57:04,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:57:04,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:57:04,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 16:57:04,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 16:57:04,750 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:57:05,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:05,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:05,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:05,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 16:57:05,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 16:57:05,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:05,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:05,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:05,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:05,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:57:05,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:57:05,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:05,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:05,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:05,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:06,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:57:06,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:57:06,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:07,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:07,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:07,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:07,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:57:07,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:57:07,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:08,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:08,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:08,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:08,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 16:57:08,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 16:57:08,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:09,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:09,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:09,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:09,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 16:57:09,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 16:57:09,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:09,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:09,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:09,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:09,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:57:09,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:57:09,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:10,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:10,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:10,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:10,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:57:10,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:57:10,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:11,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:11,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:11,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:11,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 16:57:11,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 16:57:11,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:11,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:11,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:11,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:12,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:57:12,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:57:12,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:12,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:12,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:12,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:12,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:57:12,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:57:12,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:14,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:14,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:14,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:14,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:57:14,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:57:14,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:14,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:14,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:14,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:14,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:57:14,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:57:14,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:15,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:15,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:15,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:15,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:57:15,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:57:15,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:17,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:17,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:17,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:18,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:57:18,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:57:18,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:18,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:18,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:18,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:18,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 16:57:18,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 16:57:18,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:18,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:18,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:18,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:18,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:57:18,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:57:18,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:19,360 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:57:19,383 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:57:19,457 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.117 +2025-10-01 16:57:19,457 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:57:19,457 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:57:19,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:19,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:19,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:19,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:57:19,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:57:19,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:19,950 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:57:19,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:57:20,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:57:20,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 16:57:20,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 16:57:20,249 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:57:20,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:20,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:20,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:20,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:57:20,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:57:20,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:23,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:23,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:23,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:23,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:57:23,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:57:23,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:24,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:24,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:24,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:24,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:57:24,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:57:24,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:24,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:24,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:24,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:24,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:57:24,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:57:24,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:24,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:24,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:24,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:25,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 16:57:25,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 16:57:25,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:25,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:25,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:25,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:25,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:57:25,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:57:25,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:25,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:25,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:25,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:26,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:57:26,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:57:26,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:27,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:27,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:27,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:27,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:57:27,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:57:27,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:28,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:28,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:28,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:28,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:57:28,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:57:28,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:30,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:30,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:30,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:30,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 16:57:30,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 16:57:30,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:30,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:30,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:30,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:30,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 16:57:30,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 16:57:30,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:31,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:31,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:31,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:31,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:57:31,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:57:31,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:31,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:31,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:31,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:32,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 16:57:32,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 16:57:32,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:32,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:32,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:32,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:32,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:57:32,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:57:32,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:34,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:34,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:34,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:34,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:57:34,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:57:34,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:34,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:34,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:34,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:34,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:57:34,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:57:34,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:35,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:35,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:35,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:35,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:57:35,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:57:35,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:37,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:37,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:37,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:37,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 16:57:37,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 16:57:37,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:37,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:37,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:37,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:37,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:57:37,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:57:37,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:38,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:38,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:38,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:38,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:57:38,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:57:38,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:38,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:38,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:38,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:38,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 16:57:38,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 16:57:38,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:39,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:39,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:39,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:39,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:57:39,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:57:39,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:40,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:40,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:40,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:40,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 16:57:40,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 16:57:40,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:40,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:40,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:40,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:40,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 16:57:40,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 16:57:40,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:41,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:41,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:41,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:42,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:57:42,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:57:42,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:42,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:42,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:42,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:42,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:57:42,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:57:42,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:43,242 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:57:43,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:57:43,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:57:43,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-01 16:57:43,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-01 16:57:43,557 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:57:45,311 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:57:45,330 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:57:45,410 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.721 +2025-10-01 16:57:45,410 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:57:45,410 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:57:45,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:45,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:45,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:45,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:57:45,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:57:45,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:46,786 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:57:46,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:57:46,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:57:47,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 16:57:47,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 16:57:47,073 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:57:47,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:47,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:47,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:47,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 16:57:47,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 16:57:47,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:47,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:47,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:47,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:48,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:57:48,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:57:48,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:48,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:48,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:48,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:49,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:57:49,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:57:49,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:49,124 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:57:49,143 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:57:49,231 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.737 +2025-10-01 16:57:49,231 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:57:49,231 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:57:49,511 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:57:49,546 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:57:49,634 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.734 +2025-10-01 16:57:49,634 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 16:57:49,636 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 16:57:51,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:51,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:51,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:51,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:57:51,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:57:51,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:51,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:51,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:51,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:51,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:57:51,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:57:51,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:52,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:52,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:52,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:52,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 16:57:52,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 16:57:52,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:52,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:52,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:52,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:52,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 16:57:52,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 16:57:52,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:53,230 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:57:53,257 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:57:53,340 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.924 +2025-10-01 16:57:53,340 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 16:57:53,341 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:57:53,569 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:57:53,589 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:57:53,662 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.883 +2025-10-01 16:57:53,662 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 16:57:53,663 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:57:53,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:53,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:53,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:53,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 16:57:53,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 16:57:53,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:57,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:57,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:57,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:57,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 16:57:57,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 16:57:57,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:57:57,884 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:57:57,907 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:57:57,988 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.060 +2025-10-01 16:57:57,988 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:57:57,988 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 16:57:58,150 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:57:58,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:57:58,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:57:58,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 16:57:58,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 16:57:58,448 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:57:58,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:57:58,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:57:58,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:57:58,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:57:58,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:57:58,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:01,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:01,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:01,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:01,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 16:58:01,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 16:58:01,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:02,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:02,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:02,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:02,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:58:02,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:58:02,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:02,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:02,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:02,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:02,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:58:02,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:58:02,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:04,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:04,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:04,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:04,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:58:04,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:58:04,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:06,520 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:58:06,542 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 710, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:58:06,622 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.299 +2025-10-01 16:58:06,622 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 16:58:06,622 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 16:58:09,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:09,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:09,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:09,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:58:09,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:58:09,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:09,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:09,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:09,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:10,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:58:10,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:58:10,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:12,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:12,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:12,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:12,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:58:12,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:58:12,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:13,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:13,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:13,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:13,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 16:58:13,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 16:58:13,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:14,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:14,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:14,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:14,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 16:58:14,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 16:58:14,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:14,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:14,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:14,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:14,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:58:14,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:58:14,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:15,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:15,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:15,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:15,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 16:58:15,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 16:58:15,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:15,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:15,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:15,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:16,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:58:16,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:58:16,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:20,509 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:58:20,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:58:20,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:58:20,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-01 16:58:20,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-01 16:58:20,824 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:58:24,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:24,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:24,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:24,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:58:24,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:58:24,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:25,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:25,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:25,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:25,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:58:25,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:58:25,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:26,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:26,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:26,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:26,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:58:26,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:58:26,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:28,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:28,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:28,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:28,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:58:28,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:58:28,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:29,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:29,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:29,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:29,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:58:29,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:58:29,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:33,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:33,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:33,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:33,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:58:33,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:58:33,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:36,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:36,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:36,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:36,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:58:36,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:58:36,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:37,969 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:58:38,011 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:58:38,098 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.914 +2025-10-01 16:58:38,098 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 16:58:38,099 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 16:58:38,124 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:58:38,143 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:58:38,217 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.450 +2025-10-01 16:58:38,217 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:58:38,217 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 16:58:40,903 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:58:40,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:58:40,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:58:41,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 16:58:41,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 16:58:41,188 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:58:41,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:41,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:41,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:41,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:58:41,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:58:41,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:41,929 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:58:41,951 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:58:42,025 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.108 +2025-10-01 16:58:42,025 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 16:58:42,026 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:58:42,290 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:58:42,317 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:58:42,395 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.277 +2025-10-01 16:58:42,395 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:58:42,395 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:58:45,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:45,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:45,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:45,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:58:45,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:58:45,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:45,667 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:58:45,683 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:58:45,753 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.877 +2025-10-01 16:58:45,754 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 16:58:45,754 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 16:58:45,775 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:58:45,793 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:58:45,862 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.718 +2025-10-01 16:58:45,863 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 16:58:45,863 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 16:58:46,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:46,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:46,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:46,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:58:46,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:58:46,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:46,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:46,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:46,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:46,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:58:46,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:58:46,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:47,136 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:58:47,160 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:58:47,235 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.432 +2025-10-01 16:58:47,236 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:58:47,236 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:58:49,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:49,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:49,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:49,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 16:58:49,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 16:58:49,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:49,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:49,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:49,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:50,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:58:50,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:58:50,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:50,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:50,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:50,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:50,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:58:50,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:58:50,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:50,392 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:58:50,408 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:58:50,483 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.856 +2025-10-01 16:58:50,483 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:58:50,483 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:58:50,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:50,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:50,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:50,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 16:58:50,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 16:58:50,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:51,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:51,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:51,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:52,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:58:52,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:58:52,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:53,751 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:58:53,777 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:58:53,852 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.637 +2025-10-01 16:58:53,852 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:58:53,852 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:58:54,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:54,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:54,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:54,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 16:58:54,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 16:58:54,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:55,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:55,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:55,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:55,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:58:55,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:58:55,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:55,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:55,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:55,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:56,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:58:56,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:58:56,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:57,835 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:58:57,865 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:58:57,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.872 +2025-10-01 16:58:57,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:58:57,948 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:58:58,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:58,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:58,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:58,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:58:58,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:58:58,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:58:59,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:58:59,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:58:59,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:58:59,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 16:58:59,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 16:58:59,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:01,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:01,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:01,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:01,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:59:01,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:59:01,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:04,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:04,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:04,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:04,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:59:04,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:59:04,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:06,373 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:59:06,416 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:59:06,520 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.981 +2025-10-01 16:59:06,520 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 16:59:06,521 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 16:59:07,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:07,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:07,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:07,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:59:07,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:59:07,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:07,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:07,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:07,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:08,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 16:59:08,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 16:59:08,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:09,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:09,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:09,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:09,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:59:09,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:59:09,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:10,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:10,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:10,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:10,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 16:59:10,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 16:59:10,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:10,728 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:59:10,768 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:59:10,874 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.704 +2025-10-01 16:59:10,874 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s +2025-10-01 16:59:10,875 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-01 16:59:12,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:12,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:12,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:12,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 16:59:12,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 16:59:12,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:13,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:13,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:13,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:13,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:59:13,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:59:13,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:14,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:14,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:14,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:14,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 16:59:14,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 16:59:14,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:15,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:15,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:15,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:15,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:59:15,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:59:15,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:15,185 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:59:15,204 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:59:15,305 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.567 +2025-10-01 16:59:15,305 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 16:59:15,306 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-01 16:59:15,862 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:59:15,886 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:59:15,973 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.117 +2025-10-01 16:59:15,973 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 16:59:15,973 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 16:59:17,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:17,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:17,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:17,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:59:17,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:59:17,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:18,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:18,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:18,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:18,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:59:18,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:59:18,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:18,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:18,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:18,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:18,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:59:18,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:59:18,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:19,623 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:59:19,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:59:19,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:59:19,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 16:59:19,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 16:59:19,918 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:59:20,222 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:59:20,246 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:59:20,323 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.241 +2025-10-01 16:59:20,324 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 16:59:20,324 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:59:23,333 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:59:23,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:59:23,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:59:23,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 16:59:23,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-01 16:59:23,606 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:59:23,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:23,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:23,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:23,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 16:59:23,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 16:59:23,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:24,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:24,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:24,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:24,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 16:59:24,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 16:59:24,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:24,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:24,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:24,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:24,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 16:59:24,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 16:59:24,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:24,682 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:59:24,703 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:59:24,779 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.006 +2025-10-01 16:59:24,779 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 16:59:24,779 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 16:59:25,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:25,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:25,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:25,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:59:25,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:59:25,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:27,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:27,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:27,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:27,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 16:59:27,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 16:59:27,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:27,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:27,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:27,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:28,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:59:28,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:59:28,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:29,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:29,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:29,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:29,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:59:29,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:59:29,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:31,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:31,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:31,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:31,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 16:59:31,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 16:59:31,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:32,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:32,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:32,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:32,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 16:59:32,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 16:59:32,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:32,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:32,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:32,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:33,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 16:59:33,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 16:59:33,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:33,190 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:59:33,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:59:33,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:59:33,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 16:59:33,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 16:59:33,477 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:59:33,530 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:59:33,552 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:59:33,626 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.345 +2025-10-01 16:59:33,627 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 16:59:33,627 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 16:59:34,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:34,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:34,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:34,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:59:34,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:59:34,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:36,945 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:59:36,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:59:36,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:59:37,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 16:59:37,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 16:59:37,232 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:59:37,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:37,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:37,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:37,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:59:37,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:59:37,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:38,086 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:59:38,115 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:59:38,193 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.460 +2025-10-01 16:59:38,194 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 16:59:38,194 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 16:59:38,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:38,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:38,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:38,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 16:59:38,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 16:59:38,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:39,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:39,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:39,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:39,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 16:59:39,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 16:59:39,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:40,897 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:59:40,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:59:40,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:59:41,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 16:59:41,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 16:59:41,200 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:59:42,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:42,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:42,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:43,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 16:59:43,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 16:59:43,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:43,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:43,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:43,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:43,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 16:59:43,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 16:59:43,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:43,394 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 16:59:43,420 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 16:59:43,501 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.060 +2025-10-01 16:59:43,501 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 16:59:43,502 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 16:59:44,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:44,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:44,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:44,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 16:59:44,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 16:59:44,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:45,200 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:59:45,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:59:45,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:59:45,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 16:59:45,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 16:59:45,481 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:59:45,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:45,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:45,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:45,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 16:59:45,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 16:59:45,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:46,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:46,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:46,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:47,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 16:59:47,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 16:59:47,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:47,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:47,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:47,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:47,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 16:59:47,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 16:59:47,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:49,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:49,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:49,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:49,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 16:59:49,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 16:59:49,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:49,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:49,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:49,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:49,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 16:59:49,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 16:59:49,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:49,942 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:59:49,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:59:49,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:59:50,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 16:59:50,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.131s/image) +2025-10-01 16:59:50,206 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:59:50,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:50,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:50,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:50,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 16:59:50,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 16:59:50,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:53,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:53,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:53,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:53,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 16:59:53,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 16:59:53,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:53,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:53,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:53,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:53,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 16:59:53,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 16:59:53,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:54,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:54,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:54,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:54,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 16:59:54,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 16:59:54,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:54,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:54,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:54,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:55,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:59:55,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:59:55,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:55,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:55,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:55,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:55,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 16:59:55,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 16:59:55,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:56,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:56,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:56,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:56,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 16:59:56,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 16:59:56,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:56,967 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 16:59:56,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 16:59:57,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 16:59:57,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-01 16:59:57,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.129s/image) +2025-10-01 16:59:57,227 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 16:59:57,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:57,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:57,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:57,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 16:59:57,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 16:59:57,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:58,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:58,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:58,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 16:59:58,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-01 16:59:58,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-01 16:59:58,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 16:59:59,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 16:59:59,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 16:59:59,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:00,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:00:00,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:00:00,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:00,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:00,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:00,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:01,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:00:01,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:00:01,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:01,382 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:00:01,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:00:01,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:00:01,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 17:00:01,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 17:00:01,664 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:00:02,006 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:00:02,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:00:02,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:00:02,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.377s +2025-10-01 17:00:02,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.377s (avg: 0.126s/image) +2025-10-01 17:00:02,385 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:00:02,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:02,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:02,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:02,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:00:02,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:00:02,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:03,142 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:00:03,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:00:03,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:00:03,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 17:00:03,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 17:00:03,436 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:00:06,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:06,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:06,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:06,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 17:00:06,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 17:00:06,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:06,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:06,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:06,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:07,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:00:07,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:00:07,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:07,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:07,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:07,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:07,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:00:07,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:00:07,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:08,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:08,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:08,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:08,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:00:08,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:00:08,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:08,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:08,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:08,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:08,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:00:08,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:00:08,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:09,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:09,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:09,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:09,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:00:09,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:00:09,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:10,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:10,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:10,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:10,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:00:10,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:00:10,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:10,762 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:00:10,784 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:00:10,863 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.894 +2025-10-01 17:00:10,863 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:00:10,864 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:00:11,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:11,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:11,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:11,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:00:11,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:00:11,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:13,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:13,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:13,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:13,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:00:13,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:00:13,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:14,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:14,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:14,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:14,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:00:14,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:00:14,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:15,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:15,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:15,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:15,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:00:15,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:00:15,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:17,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:17,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:17,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:17,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 17:00:17,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 17:00:17,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:18,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:18,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:18,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:18,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:00:18,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:00:18,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:18,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:18,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:18,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:18,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:00:18,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:00:18,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:18,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:18,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:18,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:18,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:00:18,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:00:18,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:19,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:19,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:19,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:19,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:00:19,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:00:19,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:19,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:19,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:19,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:19,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:00:20,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:00:20,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:20,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:20,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:20,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:20,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:00:20,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:00:20,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:24,142 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:00:24,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:00:24,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:00:24,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 17:00:24,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-01 17:00:24,428 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:00:24,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:24,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:24,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:24,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:00:24,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:00:24,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:24,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:24,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:24,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:25,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:00:25,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:00:25,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:26,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:26,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:26,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:26,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:00:26,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:00:26,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:27,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:27,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:27,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:27,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:00:27,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:00:27,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:28,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:28,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:28,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:28,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:00:28,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:00:28,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:28,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:28,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:28,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:28,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:00:28,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:00:28,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:29,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:29,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:29,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:29,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:00:29,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:00:29,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:29,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:29,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:29,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:29,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:00:29,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:00:29,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:30,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:30,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:30,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:30,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:00:30,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:00:30,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:30,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:30,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:30,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:31,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:00:31,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:00:31,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:31,556 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:00:31,588 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:00:31,682 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=200.309 +2025-10-01 17:00:31,683 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 17:00:31,686 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 17:00:32,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:32,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:32,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:32,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:00:32,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:00:32,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:32,310 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:00:32,332 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:00:32,418 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.204 +2025-10-01 17:00:32,418 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:00:32,418 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:00:32,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:32,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:32,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:32,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 17:00:32,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 17:00:32,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:33,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:33,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:33,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:33,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:00:33,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:00:33,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:34,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:34,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:34,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:34,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:00:34,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:00:34,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:34,844 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:00:34,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:00:34,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:00:35,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 17:00:35,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 17:00:35,122 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:00:36,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:36,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:36,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:36,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:00:36,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:00:36,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:36,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:36,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:36,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:37,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:00:37,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:00:37,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:37,467 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:00:37,503 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:00:37,582 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.303 +2025-10-01 17:00:37,582 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:00:37,582 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:00:37,745 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:00:37,794 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:00:37,888 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.213 +2025-10-01 17:00:37,888 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 17:00:37,889 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 17:00:39,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:39,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:39,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:39,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:00:39,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:00:39,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:40,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:40,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:40,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:40,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:00:40,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:00:40,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:40,954 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:00:40,976 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:00:41,063 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.034 +2025-10-01 17:00:41,063 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:00:41,063 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:00:41,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:41,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:41,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:41,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 17:00:41,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 17:00:41,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:41,433 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:00:41,460 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:00:41,552 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.201 +2025-10-01 17:00:41,552 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 17:00:41,553 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 17:00:42,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:42,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:42,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:42,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:00:42,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:00:42,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:43,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:43,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:43,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:43,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:00:43,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:00:43,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:43,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:43,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:43,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:43,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:00:43,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:00:43,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:45,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:45,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:45,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:45,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:00:45,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:00:45,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:45,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:45,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:45,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:45,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:00:45,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:00:45,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:47,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:47,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:47,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:47,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:00:47,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:00:47,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:47,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:47,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:48,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:48,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:00:48,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:00:48,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:49,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:49,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:49,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:49,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:00:49,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:00:49,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:50,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:50,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:50,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:50,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:00:50,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:00:50,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:50,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:50,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:50,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:50,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:00:50,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:00:50,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:50,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:50,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:50,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:51,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:00:51,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:00:51,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:52,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:52,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:52,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:52,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:00:52,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:00:52,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:53,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:53,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:53,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:53,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:00:53,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:00:53,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:54,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:54,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:54,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:54,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:00:54,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:00:54,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:54,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:54,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:54,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:55,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:00:55,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:00:55,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:56,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:56,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:56,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:56,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:00:56,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:00:56,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:57,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:57,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:57,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:57,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-01 17:00:57,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-01 17:00:57,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:58,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:58,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:58,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:58,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:00:58,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:00:58,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:00:58,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:00:58,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:00:58,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:00:59,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:00:59,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:00:59,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:00,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:00,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:00,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:00,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:01:00,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:01:00,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:01,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:01,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:01,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:02,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:01:02,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:01:02,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:04,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:04,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:04,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:04,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:01:04,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:01:04,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:05,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:05,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:05,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:05,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:01:05,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:01:05,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:06,466 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:01:06,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:01:06,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:01:06,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 17:01:06,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 17:01:06,761 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:01:07,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:07,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:07,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:07,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:01:07,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:01:07,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:09,441 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:01:09,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:01:09,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:01:09,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 17:01:09,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 17:01:09,729 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:01:12,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:12,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:12,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:12,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:01:12,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:01:12,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:14,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:14,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:14,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:14,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:01:14,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:01:14,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:16,205 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:01:16,234 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:01:16,322 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.776 +2025-10-01 17:01:16,322 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 17:01:16,324 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 17:01:16,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:16,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:16,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:16,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:01:16,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:01:16,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:17,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:17,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:17,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:17,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:01:17,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:01:17,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:17,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:17,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:17,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:17,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:01:17,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:01:17,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:21,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:21,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:21,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:21,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:01:21,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:01:21,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:22,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:22,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:22,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:22,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:01:22,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:01:22,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:23,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:23,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:23,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:23,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:01:23,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:01:23,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:26,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:26,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:26,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:27,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:01:27,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:01:27,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:27,680 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:01:27,708 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:01:27,811 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.840 +2025-10-01 17:01:27,811 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 17:01:27,812 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 17:01:27,996 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:01:27,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:01:28,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:01:28,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 17:01:28,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 17:01:28,292 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:01:32,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:01:32,955 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:01:33,057 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.890 +2025-10-01 17:01:33,058 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-01 17:01:33,059 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 17:01:33,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:33,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:34,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:34,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:01:34,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:01:34,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:34,683 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:01:34,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:01:34,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:01:34,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 17:01:34,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 17:01:34,960 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:01:35,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:35,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:35,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:35,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:01:35,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:01:35,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:36,389 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:01:36,420 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:01:36,514 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.829 +2025-10-01 17:01:36,514 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 17:01:36,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 17:01:37,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:37,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:37,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:37,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:01:37,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:01:37,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:39,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:39,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:39,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:39,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:01:39,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:01:39,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:40,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:40,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:40,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:40,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:01:40,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:01:40,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:41,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:41,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:41,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:41,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:01:41,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:01:41,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:46,403 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:01:46,435 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:01:46,522 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.144 +2025-10-01 17:01:46,522 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:01:46,522 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:01:47,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:47,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:47,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:47,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:01:47,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:01:47,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:47,410 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:01:47,441 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:01:47,528 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.087 +2025-10-01 17:01:47,528 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:01:47,530 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 17:01:50,158 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:01:50,183 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:01:50,271 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=171.907 +2025-10-01 17:01:50,271 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 17:01:50,271 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:01:51,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:51,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:51,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:51,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:01:51,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:01:51,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:51,811 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:01:51,842 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:01:51,935 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.391 +2025-10-01 17:01:51,935 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 17:01:51,937 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 17:01:54,127 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:01:54,147 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(709, 710, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:01:54,230 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.537 +2025-10-01 17:01:54,230 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:01:54,230 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:01:55,441 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:01:55,470 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:01:55,563 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.942 +2025-10-01 17:01:55,563 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 17:01:55,564 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 17:01:57,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:01:57,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:01:57,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:01:57,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:01:57,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:01:57,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:01:58,498 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:01:58,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:01:58,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:01:58,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 17:01:58,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-01 17:01:58,802 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:02:01,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:01,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:01,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:01,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:02:01,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:02:01,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:01,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:01,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:01,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:01,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:02:01,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:02:01,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:02,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:02,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:02,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:02,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:02:02,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:02:02,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:03,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:03,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:03,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:03,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:02:03,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:02:03,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:05,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:05,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:05,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:05,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:02:05,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:02:05,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:05,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:05,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:05,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:05,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:02:05,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:02:05,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:07,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:07,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:07,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:07,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:02:07,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:02:07,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:07,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:07,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:07,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:07,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:02:07,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:02:07,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:08,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:08,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:08,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:08,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:02:08,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:02:08,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:10,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:10,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:10,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:10,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:02:10,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:02:10,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:13,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:13,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:13,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:13,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:02:13,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:02:13,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:13,716 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:02:13,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:02:13,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:02:14,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 17:02:14,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 17:02:14,011 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:02:14,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:14,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:14,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:14,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:02:14,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:02:14,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:14,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:14,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:14,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:15,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:02:15,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:02:15,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:15,721 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:02:15,761 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:02:15,849 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.817 +2025-10-01 17:02:15,850 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 17:02:15,851 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 17:02:18,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:18,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:18,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:18,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:02:18,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:02:18,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:20,345 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:02:20,381 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:02:20,473 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.571 +2025-10-01 17:02:20,473 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 17:02:20,474 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 17:02:20,835 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:02:20,863 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(868, 868, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:02:20,954 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.246 +2025-10-01 17:02:20,954 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 17:02:20,956 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 17:02:20,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:20,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:21,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:21,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:02:21,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:02:21,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:21,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:21,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:21,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:21,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:02:21,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:02:21,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:23,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:23,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:23,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:23,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:02:23,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:02:23,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:24,488 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:02:24,517 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(868, 868, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:02:24,609 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.568 +2025-10-01 17:02:24,610 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 17:02:24,611 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 17:02:24,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:24,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:24,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:25,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:02:25,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:02:25,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:25,419 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:02:25,461 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:02:25,548 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.826 +2025-10-01 17:02:25,548 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:02:25,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:02:27,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:27,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:27,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:27,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:02:27,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:02:27,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:29,375 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:02:29,403 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(868, 868, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:02:29,495 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.884 +2025-10-01 17:02:29,495 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 17:02:29,496 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 17:02:29,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:29,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:29,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:29,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:02:29,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:02:29,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:29,823 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:02:29,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:02:29,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:02:30,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.328s +2025-10-01 17:02:30,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.328s (avg: 0.164s/image) +2025-10-01 17:02:30,153 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:02:35,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:35,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:35,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:35,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:02:35,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:02:35,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:36,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:36,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:36,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:36,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:02:36,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:02:36,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:38,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:38,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:38,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:38,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:02:38,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:02:38,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:38,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:38,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:38,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:38,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:02:38,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:02:38,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:39,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:39,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:39,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:39,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:02:39,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:02:39,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:39,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:39,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:39,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:40,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 17:02:40,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 17:02:40,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:42,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:42,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:42,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:43,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:02:43,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:02:43,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:44,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:44,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:44,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:44,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:02:44,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:02:44,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:44,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:44,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:44,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:44,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:02:44,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:02:44,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:46,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:46,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:46,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:46,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:02:46,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:02:46,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:46,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:46,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:46,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:47,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:02:47,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:02:47,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:49,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:49,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:49,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:49,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:02:49,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:02:49,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:49,575 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:02:49,604 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:02:49,699 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=175.344 +2025-10-01 17:02:49,700 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 17:02:49,702 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 17:02:52,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:52,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:52,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:52,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:02:52,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:02:52,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:53,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:53,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:53,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:53,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 17:02:53,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 17:02:53,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:54,057 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:02:54,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:02:54,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:02:54,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-01 17:02:54,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +2025-10-01 17:02:54,374 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:02:54,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:54,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:54,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:54,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:02:54,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:02:54,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:55,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:55,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:55,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:55,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:02:55,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:02:55,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:57,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:57,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:57,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:57,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:02:57,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:02:57,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:58,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:58,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:58,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:58,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:02:58,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:02:58,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:02:59,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:02:59,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:02:59,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:02:59,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:02:59,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:02:59,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:00,029 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:03:00,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:03:00,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:03:00,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 17:03:00,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 17:03:00,327 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:03:02,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:02,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:02,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:02,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:03:02,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:03:02,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:02,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:02,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:02,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:03,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:03:03,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:03:03,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:03,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:03,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:03,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:03,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:03:03,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:03:03,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:03,979 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:03:03,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:03:04,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:03:04,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 17:03:04,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 17:03:04,264 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:03:06,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:06,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:06,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:06,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:03:06,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:03:06,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:07,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:07,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:07,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:07,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 17:03:07,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 17:03:07,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:09,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:09,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:09,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:09,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:03:09,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:03:09,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:10,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:10,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:10,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:10,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:03:10,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:03:10,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:12,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:12,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:12,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:12,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:03:12,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:03:12,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:12,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:12,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:12,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:12,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s +2025-10-01 17:03:12,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +2025-10-01 17:03:12,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:13,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:13,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:13,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:13,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:03:13,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:03:13,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:14,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:14,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:14,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:14,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:03:14,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:03:14,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:15,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:15,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:15,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:15,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:03:15,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:03:15,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:15,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:15,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:15,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:15,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:03:15,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:03:15,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:17,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:17,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:17,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:18,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 17:03:18,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 17:03:18,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:18,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:18,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:18,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:19,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:03:19,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:03:19,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:20,311 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:03:20,332 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:03:20,418 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.350 +2025-10-01 17:03:20,419 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:03:20,419 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:03:21,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:21,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:21,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:22,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:03:22,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:03:22,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:23,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:23,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:23,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:23,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:03:23,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:03:23,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:23,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:23,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:23,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:24,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:03:24,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:03:24,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:24,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:24,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:24,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:24,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:03:24,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:03:24,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:24,726 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:03:24,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:03:24,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:03:25,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 17:03:25,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 17:03:25,018 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:03:25,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:25,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:25,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:25,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:03:25,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:03:25,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:25,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:25,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:25,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:25,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:03:25,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:03:25,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:28,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:28,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:28,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:28,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:03:28,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:03:28,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:29,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:29,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:29,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:29,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:03:29,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:03:29,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:29,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:29,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:29,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:29,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:03:29,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:03:29,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:32,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:32,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:32,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:32,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:03:32,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:03:32,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:33,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:33,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:33,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:33,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:03:33,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:03:33,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:35,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:35,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:35,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:35,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:03:35,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:03:35,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:36,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:36,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:36,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:36,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:03:36,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:03:36,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:37,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:37,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:37,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:37,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:03:37,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:03:37,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:40,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:40,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:40,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:40,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:03:40,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:03:40,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:41,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:41,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:41,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:41,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:03:41,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:03:41,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:41,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:41,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:41,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:41,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:03:41,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:03:41,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:42,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:42,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:42,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:42,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:03:42,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:03:42,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:44,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:44,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:44,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:44,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:03:44,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:03:44,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:45,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:45,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:45,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:45,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:03:45,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:03:45,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:46,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:46,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:46,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:46,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:03:46,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:03:46,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:48,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:48,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:48,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:48,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:03:48,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:03:48,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:49,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:49,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:50,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:50,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:03:50,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:03:50,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:51,908 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:03:51,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:03:51,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:03:52,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 17:03:52,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-01 17:03:52,211 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:03:54,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:54,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:54,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:54,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:03:54,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:03:54,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:03:58,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:03:58,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:03:58,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:03:58,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:03:58,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:03:58,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:00,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:00,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:00,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:00,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:04:00,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:04:00,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:03,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:03,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:03,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:03,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:04:03,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:04:03,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:04,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:04,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:04,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:04,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:04:04,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:04:04,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:05,669 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:04:05,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:04:05,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:04:05,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 17:04:05,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 17:04:05,967 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:04:06,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:06,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:06,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:06,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:04:06,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:04:06,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:09,725 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:04:09,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:04:09,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:04:10,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 17:04:10,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-01 17:04:10,028 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:04:10,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:10,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:10,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:10,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:04:10,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:04:10,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:11,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:11,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:11,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:11,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:04:11,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:04:11,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:11,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:11,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:11,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:11,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:04:11,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:04:11,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:12,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:12,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:12,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:12,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:04:12,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:04:12,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:13,198 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:04:13,225 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:04:13,311 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.728 +2025-10-01 17:04:13,312 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:04:13,313 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:04:13,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:13,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:13,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:13,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 17:04:13,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 17:04:13,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:14,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:14,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:14,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:14,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:04:14,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:04:14,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:14,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:14,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:14,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:15,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:04:15,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:04:15,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:15,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:15,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:15,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:15,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:04:15,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:04:15,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:17,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:17,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:17,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:17,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:04:17,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:04:17,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:17,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:17,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:17,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:18,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:04:18,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:04:18,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:18,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:18,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:18,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:18,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:04:18,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:04:18,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:18,614 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:04:18,643 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:04:18,733 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.864 +2025-10-01 17:04:18,733 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 17:04:18,734 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 17:04:19,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:19,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:19,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:19,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:04:19,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:04:19,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:21,535 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:04:21,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:04:21,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:04:21,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-01 17:04:21,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-01 17:04:21,805 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:04:22,152 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:04:22,181 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:04:22,271 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.156 +2025-10-01 17:04:22,271 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 17:04:22,273 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 17:04:22,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:22,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:22,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:22,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:04:22,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:04:22,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:23,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:23,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:23,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:23,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:04:23,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:04:23,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:23,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:23,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:23,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:23,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:04:23,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:04:23,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:25,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:25,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:25,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:25,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:04:25,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:04:25,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:25,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:25,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:25,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:26,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:04:26,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:04:26,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:28,234 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:04:28,262 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:04:28,351 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.411 +2025-10-01 17:04:28,351 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 17:04:28,352 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 17:04:29,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:29,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:29,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:29,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:04:29,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:04:29,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:31,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:31,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:31,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:31,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:04:31,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:04:31,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:31,902 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:04:31,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:04:31,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:04:32,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 17:04:32,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 17:04:32,202 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:04:33,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:33,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:33,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:33,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:04:33,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:04:33,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:36,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:36,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:36,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:36,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:04:36,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:04:36,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:36,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:36,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:37,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:37,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:04:37,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:04:37,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:37,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:37,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:37,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:37,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:04:37,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:04:37,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:38,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:38,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:38,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:38,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:04:38,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:04:38,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:40,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:40,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:40,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:40,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:04:40,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:04:40,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:41,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:41,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:41,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:41,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:04:41,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:04:41,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:41,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:41,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:41,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:41,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:04:41,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:04:41,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:42,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:42,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:42,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:42,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:04:42,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:04:42,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:42,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:42,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:42,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:43,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:04:43,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:04:43,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:43,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:43,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:43,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:43,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:04:43,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:04:43,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:45,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:45,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:45,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:45,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:04:45,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:04:45,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:46,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:46,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:46,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:46,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:04:46,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:04:46,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:47,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:47,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:47,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:47,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:04:47,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:04:47,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:47,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:47,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:47,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:47,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:04:47,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:04:47,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:49,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:49,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:49,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:49,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:04:49,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:04:49,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:50,655 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:04:50,690 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:04:50,786 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.371 +2025-10-01 17:04:50,786 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 17:04:50,787 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 17:04:51,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:51,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:51,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:51,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:04:51,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:04:51,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:52,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:52,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:52,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:52,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:04:52,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:04:52,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:52,288 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:04:52,314 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:04:52,401 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.993 +2025-10-01 17:04:52,401 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:04:52,401 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:04:52,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:52,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:52,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:52,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:04:52,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:04:52,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:55,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:55,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:55,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:55,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:04:55,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:04:55,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:55,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:55,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:55,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:55,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:04:55,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:04:55,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:56,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:56,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:56,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:56,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:04:56,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:04:56,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:59,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:59,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:59,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:04:59,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:04:59,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:04:59,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:04:59,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:04:59,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:04:59,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:00,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:05:00,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:05:00,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:01,044 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:05:01,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:05:01,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:05:01,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 17:05:01,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 17:05:01,327 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:05:05,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:05,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:05,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:05,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:05:05,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:05:05,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:06,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:06,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:06,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:06,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:05:06,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:05:06,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:08,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:08,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:08,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:08,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:05:08,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:05:08,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:09,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:09,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:09,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:09,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:05:09,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:05:09,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:09,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:09,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:09,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:09,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:05:09,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:05:09,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:10,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:10,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:10,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:10,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:05:10,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:05:10,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:10,430 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:05:10,455 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:05:10,536 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.368 +2025-10-01 17:05:10,536 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:05:10,537 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:05:13,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:13,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:13,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:13,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:05:13,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:05:13,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:13,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:13,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:14,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:14,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:05:14,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:05:14,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:14,795 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:05:14,827 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:05:14,925 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.160 +2025-10-01 17:05:14,925 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 17:05:14,926 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 17:05:15,136 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:05:15,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:05:15,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:05:15,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 17:05:15,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 17:05:15,428 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:05:16,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:16,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:16,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:16,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:05:16,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:05:16,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:17,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:17,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:18,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:18,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:05:18,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:05:18,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:18,255 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:05:18,276 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:05:18,366 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.215 +2025-10-01 17:05:18,366 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 17:05:18,368 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 17:05:18,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:18,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:18,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:18,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:05:18,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:05:18,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:19,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:19,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:19,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:19,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:05:19,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:05:19,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:20,710 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:05:20,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:05:20,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:05:21,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 17:05:21,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 17:05:21,007 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:05:21,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:21,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:21,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:21,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:05:21,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:05:21,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:22,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:22,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:22,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:23,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:05:23,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:05:23,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:23,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:23,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:23,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:23,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:05:23,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:05:23,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:25,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:25,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:25,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:25,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:05:25,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:05:25,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:26,831 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:05:26,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:05:26,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:05:27,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 17:05:27,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 17:05:27,110 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:05:27,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:27,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:27,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:27,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:05:27,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:05:27,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:29,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:29,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:29,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:29,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:05:29,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:05:29,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:34,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:34,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:34,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:34,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:05:34,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:05:34,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:35,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:35,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:35,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:35,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:05:35,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:05:35,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:36,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:36,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:37,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:37,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:05:37,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:05:37,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:39,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:39,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:39,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:39,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:05:39,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:05:39,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:43,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:43,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:43,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:43,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:05:43,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:05:43,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:48,821 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:05:48,845 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(875, 875, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:05:48,932 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.239 +2025-10-01 17:05:48,932 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:05:48,933 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:05:49,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:49,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:49,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:49,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:05:49,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:05:49,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:49,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:49,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:49,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:49,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:05:49,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:05:49,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:50,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:50,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:51,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:51,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:05:51,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:05:51,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:51,397 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:05:51,417 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:05:51,502 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.884 +2025-10-01 17:05:51,502 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:05:51,502 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:05:52,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:52,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:52,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:52,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:05:52,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:05:52,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:52,624 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:05:52,651 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(933, 933, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:05:52,742 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=179.917 +2025-10-01 17:05:52,742 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 17:05:52,744 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 17:05:55,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:55,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:55,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:55,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:05:55,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:05:55,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:55,587 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:05:55,613 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:05:55,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=230.647 +2025-10-01 17:05:55,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:05:55,695 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:05:56,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:56,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:56,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:56,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:05:56,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:05:56,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:05:56,605 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:05:56,639 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(933, 933, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:05:56,721 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.375 +2025-10-01 17:05:56,721 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:05:56,723 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:05:59,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:05:59,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:05:59,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:05:59,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:05:59,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:05:59,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:00,242 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:00,276 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:00,364 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=228.917 +2025-10-01 17:06:00,364 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 17:06:00,364 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 17:06:01,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:01,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:01,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:01,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:06:01,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:06:01,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:01,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:01,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:01,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:01,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:06:01,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:06:01,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:02,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:02,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:02,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:02,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:06:02,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:06:02,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:03,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:03,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:03,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:03,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:06:03,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:06:03,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:05,633 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:06:05,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:06:05,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:06:05,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 17:06:05,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +2025-10-01 17:06:05,938 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:06:08,988 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:06:08,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:06:09,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:06:09,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 17:06:09,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 17:06:09,281 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:06:09,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:09,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:09,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:10,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:06:10,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:06:10,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:10,302 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:10,334 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:10,408 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.938 +2025-10-01 17:06:10,408 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:06:10,409 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:06:10,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:10,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:10,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:10,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:06:10,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:06:10,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:10,768 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:10,793 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:10,873 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.804 +2025-10-01 17:06:10,874 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:06:10,875 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:06:11,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:11,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:11,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:11,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:06:11,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:06:11,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:12,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:12,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:12,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:12,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:06:12,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:06:12,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:13,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:13,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:13,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:13,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:06:13,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:06:13,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:16,900 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:16,935 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:17,029 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.316 +2025-10-01 17:06:17,030 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 17:06:17,030 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 17:06:19,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:19,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:19,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:19,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:06:19,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:06:19,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:20,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:20,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:20,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:20,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:06:20,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:06:20,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:20,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:20,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:20,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:20,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:06:20,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:06:20,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:21,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:21,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:21,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:21,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:06:21,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:06:21,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:21,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:21,602 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:21,681 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.079 +2025-10-01 17:06:21,682 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:06:21,683 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:06:22,064 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:22,096 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:22,194 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.079 +2025-10-01 17:06:22,194 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 17:06:22,195 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 17:06:22,910 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:06:22,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:06:22,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:06:23,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-01 17:06:23,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-01 17:06:23,226 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:06:23,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:23,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:23,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:23,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:06:23,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:06:23,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:25,611 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:25,653 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:25,739 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.187 +2025-10-01 17:06:25,740 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:06:25,741 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:06:26,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:26,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:26,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:26,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:06:26,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:06:26,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:27,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:27,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:27,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:28,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:06:28,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:06:28,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:28,219 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:06:28,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:06:28,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:06:28,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 17:06:28,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 17:06:28,516 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:06:28,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:28,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:28,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:29,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:06:29,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:06:29,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:30,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:30,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:30,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:30,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:06:30,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:06:30,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:31,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:31,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:31,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:31,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:06:31,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:06:31,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:35,113 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:35,143 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:35,237 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.624 +2025-10-01 17:06:35,237 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 17:06:35,237 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 17:06:35,375 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:06:35,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:06:35,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:06:35,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 17:06:35,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 17:06:35,656 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:06:35,884 - app.core.batch_manager - INFO - Creating a new batch with 4 jobs. +2025-10-01 17:06:35,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 4). VRAM: 0.0 GB +2025-10-01 17:06:35,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 4개 이미지 인페인팅 수행 +2025-10-01 17:06:36,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 4). VRAM: 0.0 GB | Duration: 0.659s +2025-10-01 17:06:36,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 4 processed in 0.659s (avg: 0.165s/image) +2025-10-01 17:06:36,544 - app.core.batch_manager - INFO - Successfully processed batch of 4 jobs. +2025-10-01 17:06:36,731 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:06:36,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:06:36,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:06:37,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 17:06:37,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 17:06:37,015 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:06:37,070 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:37,086 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:37,156 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.804 +2025-10-01 17:06:37,157 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 17:06:37,157 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 17:06:37,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:37,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:37,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:37,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:06:37,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:06:37,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:39,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:39,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:39,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:39,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:06:39,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:06:39,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:39,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:39,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:39,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:40,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:06:40,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:06:40,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:40,810 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:06:40,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:06:40,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:06:41,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.258s +2025-10-01 17:06:41,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.258s (avg: 0.129s/image) +2025-10-01 17:06:41,070 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:06:41,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:41,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:41,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:41,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:06:41,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:06:41,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:41,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:41,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:41,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:41,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:06:41,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:06:41,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:41,870 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:41,887 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:41,968 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.165 +2025-10-01 17:06:41,968 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:06:41,968 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:06:42,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:42,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:42,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:42,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:06:42,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:06:42,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:42,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:42,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:42,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:42,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:06:42,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:06:42,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:43,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:43,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:43,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:43,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:06:43,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:06:43,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:43,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:43,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:43,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:43,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:06:43,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:06:43,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:44,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:44,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:44,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:45,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:06:45,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:06:45,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:45,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:45,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:45,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:45,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:06:45,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:06:45,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:46,487 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:46,524 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:46,599 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.964 +2025-10-01 17:06:46,599 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:06:46,599 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:06:47,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:47,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:47,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:47,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:06:47,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:06:47,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:49,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:49,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:49,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:49,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:06:49,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:06:49,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:49,378 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:49,397 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:49,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.947 +2025-10-01 17:06:49,471 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:06:49,471 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:06:49,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:50,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:50,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:50,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:06:50,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:06:50,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:53,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:53,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:53,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:53,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:06:53,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:06:53,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:53,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:53,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:53,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:53,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:06:53,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:06:53,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:53,741 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:53,759 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:53,831 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.240 +2025-10-01 17:06:53,831 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 17:06:53,832 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:06:54,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:54,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:54,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:54,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:06:54,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:06:54,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:55,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:55,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:55,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:56,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:06:56,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:06:56,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:56,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:56,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:56,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:56,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:06:56,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:06:56,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:57,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:57,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:57,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:57,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-01 17:06:57,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-01 17:06:57,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:58,399 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:06:58,437 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:06:58,520 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.188 +2025-10-01 17:06:58,520 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:06:58,520 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:06:59,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:59,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:06:59,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:06:59,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:06:59,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:06:59,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:06:59,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:06:59,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:00,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:00,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:07:00,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:07:00,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:01,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:01,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:01,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:01,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:07:01,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:07:01,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:04,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:04,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:04,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:04,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:07:04,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:07:04,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:04,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:04,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:05,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:05,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:07:05,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:07:05,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:10,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:10,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:10,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:10,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:07:10,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:07:10,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:11,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:11,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:11,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:11,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:07:11,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:07:11,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:11,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:11,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:11,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:12,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:07:12,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:07:12,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:12,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:12,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:12,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:12,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:07:12,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:07:12,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:13,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:13,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:13,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:13,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:07:13,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:07:13,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:15,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:15,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:15,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:16,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:07:16,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:07:16,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:18,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:18,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:18,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:19,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:07:19,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:07:19,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:22,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:22,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:22,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:22,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:07:22,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:07:22,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:22,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:22,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:22,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:22,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:07:22,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:07:22,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:23,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:23,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:23,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:23,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-01 17:07:23,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-01 17:07:23,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:23,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:23,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:23,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:23,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:07:23,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:07:23,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:25,299 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:07:25,328 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:07:25,431 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.160 +2025-10-01 17:07:25,431 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 17:07:25,431 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-01 17:07:26,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:26,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:26,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:26,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:07:26,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:07:26,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:26,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:26,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:26,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:27,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:07:27,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:07:27,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:27,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:27,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:27,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:27,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:07:27,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:07:27,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:29,591 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:07:29,624 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:07:29,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.474 +2025-10-01 17:07:29,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:07:29,707 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:07:29,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:29,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:29,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:30,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:07:30,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:07:30,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:31,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:31,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:31,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:31,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:07:31,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:07:31,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:32,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:32,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:32,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:32,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:07:32,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:07:32,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:33,200 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:07:33,234 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 731, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:07:33,316 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.033 +2025-10-01 17:07:33,316 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:07:33,317 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:07:33,702 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:07:33,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:07:33,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:07:33,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 17:07:33,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 17:07:33,996 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:07:34,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:34,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:34,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:34,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:07:34,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:07:34,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:36,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:36,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:36,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:36,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 17:07:36,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 17:07:36,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:36,461 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:07:36,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:07:36,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:07:36,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 17:07:36,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 17:07:36,760 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:07:36,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:36,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:36,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:37,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:07:37,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:07:37,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:38,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:38,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:39,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:39,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 17:07:39,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 17:07:39,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:39,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:39,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:39,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:39,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:07:39,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:07:39,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:40,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:40,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:40,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:40,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:07:40,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:07:40,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:41,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:41,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:41,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:41,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 17:07:41,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 17:07:41,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:42,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:42,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:42,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:43,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:07:43,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:07:43,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:43,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:43,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:43,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:43,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:07:43,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:07:43,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:44,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:44,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:44,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:44,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:07:44,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:07:44,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:44,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:44,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:44,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:44,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 17:07:44,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 17:07:44,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:44,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:44,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:44,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:44,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:07:44,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:07:44,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:45,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:45,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:45,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:45,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:07:45,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:07:45,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:45,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:45,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:45,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:46,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:07:46,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:07:46,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:46,592 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:07:46,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:07:46,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:07:46,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 17:07:46,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 17:07:46,870 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:07:47,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:47,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:47,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:47,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:07:47,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:07:47,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:48,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:48,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:48,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:48,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:07:48,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:07:48,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:48,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:48,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:48,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:49,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:07:49,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:07:49,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:49,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:49,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:49,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:49,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:07:49,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:07:49,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:51,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:51,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:51,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:52,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:07:52,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:07:52,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:52,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:52,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:52,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:52,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:07:52,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:07:52,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:53,298 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:07:53,327 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:07:53,411 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=156.708 +2025-10-01 17:07:53,412 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:07:53,414 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:07:53,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:53,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:53,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:53,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:07:53,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:07:53,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:53,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:53,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:53,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:54,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:07:54,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:07:54,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:56,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:56,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:56,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:56,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:07:56,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:07:56,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:56,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:56,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:56,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:56,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:07:56,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:07:56,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:58,352 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:07:58,372 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(640, 640, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:07:58,450 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.468 +2025-10-01 17:07:58,450 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:07:58,451 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:07:59,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:59,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:59,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:59,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:07:59,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:07:59,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:59,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:07:59,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:07:59,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:07:59,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:07:59,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:07:59,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:07:59,742 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:07:59,763 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:07:59,840 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.678 +2025-10-01 17:07:59,840 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:07:59,840 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:08:00,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:00,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:00,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:00,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:08:00,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:08:00,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:00,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:00,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:00,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:00,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:08:00,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:08:00,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:01,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:01,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:01,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:01,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:08:01,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:08:01,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:01,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:01,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:01,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:01,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:08:01,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:08:01,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:01,551 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:08:01,562 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:08:01,624 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.940 +2025-10-01 17:08:01,624 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.062s +2025-10-01 17:08:01,624 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.063s +2025-10-01 17:08:04,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:04,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:04,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:04,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-01 17:08:04,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-01 17:08:04,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:04,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:04,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:04,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:05,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:08:05,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:08:05,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:05,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:05,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:05,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:05,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:08:05,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:08:05,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:05,481 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:08:05,495 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(760, 760, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:08:05,568 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.569 +2025-10-01 17:08:05,568 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:08:05,568 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:08:05,719 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:08:05,737 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:08:05,814 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.925 +2025-10-01 17:08:05,815 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:08:05,815 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:08:06,239 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:08:06,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:08:06,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:08:06,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.408s +2025-10-01 17:08:06,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.408s (avg: 0.136s/image) +2025-10-01 17:08:06,647 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:08:06,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:06,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:06,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:06,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:08:06,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:08:06,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:07,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:07,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:07,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:07,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:08:07,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:08:07,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:08,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:08,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:08,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:08,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:08:08,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:08:08,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:09,510 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:08:09,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:08:09,605 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.853 +2025-10-01 17:08:09,606 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:08:09,606 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:08:09,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:09,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:09,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:10,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:08:10,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:08:10,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:10,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:10,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:10,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:10,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:08:10,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:08:10,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:11,404 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:08:11,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:08:11,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:08:11,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 17:08:11,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 17:08:11,687 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:08:11,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:11,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:11,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:12,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:08:12,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:08:12,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:12,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:12,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:12,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:12,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 17:08:12,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 17:08:12,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:14,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:14,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:14,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:14,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:08:14,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:08:14,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:15,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:15,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:15,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:15,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:08:15,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:08:15,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:16,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:16,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:16,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:16,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:08:16,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:08:16,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:18,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:18,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:18,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:18,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:08:18,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:08:18,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:19,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:19,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:19,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:19,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:08:19,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:08:19,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:20,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:20,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:20,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:20,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:08:20,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:08:20,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:21,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:21,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:21,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:21,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:08:21,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:08:21,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:21,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:21,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:21,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:21,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:08:21,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:08:21,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:23,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:23,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:23,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:23,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:08:23,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:08:23,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:25,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:25,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:25,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:25,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:08:25,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:08:25,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:25,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:25,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:25,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:25,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:08:25,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:08:25,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:25,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:25,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:25,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:26,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:08:26,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:08:26,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:26,172 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:08:26,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:08:26,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:08:26,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-01 17:08:26,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-01 17:08:26,438 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:08:26,729 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:08:26,758 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:08:26,830 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.991 +2025-10-01 17:08:26,830 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:08:26,831 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:08:28,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:28,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:29,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:29,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:08:29,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:08:29,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:29,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:29,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:29,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:29,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:08:29,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:08:29,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:29,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:08:29,446 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:08:29,526 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.444 +2025-10-01 17:08:29,526 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:08:29,527 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:08:30,222 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:08:30,247 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:08:30,335 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.460 +2025-10-01 17:08:30,335 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 17:08:30,335 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:08:31,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:31,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:31,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:31,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:08:31,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:08:31,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:32,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:32,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:32,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:32,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:08:32,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:08:32,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:33,954 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:08:33,981 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:08:34,064 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.981 +2025-10-01 17:08:34,064 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:08:34,065 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:08:34,119 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:08:34,139 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:08:34,223 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.954 +2025-10-01 17:08:34,223 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:08:34,223 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:08:34,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:34,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:34,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:34,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:08:34,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:08:34,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:36,307 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:08:36,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:08:36,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:08:36,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 17:08:36,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 17:08:36,612 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:08:37,346 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:08:37,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:08:37,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:08:37,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 17:08:37,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 17:08:37,644 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:08:37,908 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:08:37,924 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:08:38,004 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.095 +2025-10-01 17:08:38,004 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:08:38,005 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:08:38,194 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:08:38,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:08:38,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:08:38,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 17:08:38,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 17:08:38,470 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:08:39,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:39,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:39,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:39,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:08:39,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:08:39,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:41,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:41,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:41,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:41,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:08:41,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:08:41,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:42,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:42,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:42,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:42,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:08:42,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:08:42,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:43,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:43,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:43,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:43,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 17:08:43,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 17:08:43,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:44,250 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:08:44,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:08:44,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:08:44,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 17:08:44,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 17:08:44,534 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:08:44,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:44,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:45,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:45,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:08:45,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:08:45,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:45,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:45,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:45,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:45,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:08:45,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:08:45,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:48,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:48,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:48,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:48,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:08:48,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:08:48,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:51,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:51,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:51,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:51,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:08:51,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:08:51,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:51,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:51,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:51,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:51,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:08:51,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:08:51,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:52,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:52,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:52,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:52,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:08:52,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:08:52,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:52,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:52,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:52,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:52,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:08:52,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:08:52,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:55,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:55,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:55,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:55,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:08:55,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:08:55,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:56,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:56,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:56,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:56,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 17:08:56,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 17:08:56,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:08:58,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:08:58,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:08:58,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:08:59,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:08:59,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:08:59,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:00,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:00,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:00,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:00,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:09:00,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:09:00,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:01,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:01,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:01,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:01,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:09:01,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:09:01,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:02,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:02,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:02,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:02,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:09:02,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:09:02,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:05,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:05,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:05,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:05,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:09:05,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:09:05,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:07,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:07,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:07,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:07,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:09:07,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:09:07,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:08,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:08,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:08,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:08,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:09:08,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:09:08,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:10,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:10,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:10,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:11,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:09:11,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:09:11,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:12,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:12,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:12,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:12,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:09:12,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:09:12,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:13,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:13,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:13,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:13,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:09:13,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:09:13,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:13,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:13,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:13,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:14,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 17:09:14,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 17:09:14,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:14,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:14,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:14,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:14,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:09:14,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:09:14,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:17,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:17,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:17,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:17,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 17:09:17,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 17:09:17,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:19,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:19,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:19,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:19,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:09:19,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:09:19,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:22,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:22,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:22,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:22,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:09:22,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:09:22,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:23,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:23,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:23,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:23,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:09:23,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:09:23,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:23,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:23,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:23,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:23,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:09:23,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:09:23,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:24,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:24,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:24,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:25,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 17:09:25,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 17:09:25,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:28,838 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:09:28,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:09:28,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:09:29,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-01 17:09:29,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +2025-10-01 17:09:29,154 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:09:29,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:29,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:29,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:30,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:09:30,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:09:30,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:30,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:30,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:30,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:30,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:09:30,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:09:30,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:35,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:35,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:35,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:35,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:09:35,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:09:35,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:35,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:35,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:35,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:35,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 17:09:35,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 17:09:35,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:39,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:39,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:39,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:39,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:09:39,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:09:39,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:42,106 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:09:42,131 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:09:42,223 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.391 +2025-10-01 17:09:42,224 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 17:09:42,224 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 17:09:43,997 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:09:44,017 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:09:44,094 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.943 +2025-10-01 17:09:44,094 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:09:44,094 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:09:46,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:46,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:46,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:46,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:09:46,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:09:46,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:46,947 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:09:46,965 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:09:47,036 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=211.610 +2025-10-01 17:09:47,036 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 17:09:47,036 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 17:09:47,473 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:09:47,498 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:09:47,573 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.578 +2025-10-01 17:09:47,574 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:09:47,574 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:09:47,855 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:09:47,878 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:09:47,951 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.648 +2025-10-01 17:09:47,952 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:09:47,952 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:09:50,755 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:09:50,776 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:09:50,853 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.634 +2025-10-01 17:09:50,854 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:09:50,854 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:09:51,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:51,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:51,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:51,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:09:51,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:09:51,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:51,599 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:09:51,621 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:09:51,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.862 +2025-10-01 17:09:51,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:09:51,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:09:52,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:09:52,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:09:52,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:09:52,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:09:52,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:09:52,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:09:52,399 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:09:52,420 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:09:52,496 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.969 +2025-10-01 17:09:52,496 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:09:52,496 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:09:54,839 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:09:54,863 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:09:54,939 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.493 +2025-10-01 17:09:54,939 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:09:54,939 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:10:03,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:03,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:03,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:04,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:10:04,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:10:04,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:06,911 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:10:06,932 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:10:07,009 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.483 +2025-10-01 17:10:07,010 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:10:07,010 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:10:10,717 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:10:10,739 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:10:10,816 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.952 +2025-10-01 17:10:10,816 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:10:10,816 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:10:10,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:10,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:11,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:11,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:10:11,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:10:11,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:11,353 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:10:11,373 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:10:11,453 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.432 +2025-10-01 17:10:11,454 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:10:11,456 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:10:12,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:12,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:12,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:12,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:10:12,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:10:12,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:12,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:12,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:13,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:13,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:10:13,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:10:13,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:14,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:14,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:14,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:14,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:10:14,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:10:14,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:14,540 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:10:14,566 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:10:14,657 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.943 +2025-10-01 17:10:14,658 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 17:10:14,658 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 17:10:16,610 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:10:16,634 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:10:16,715 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.944 +2025-10-01 17:10:16,716 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:10:16,717 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:10:18,587 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:10:18,606 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 694, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:10:18,693 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.187 +2025-10-01 17:10:18,694 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:10:18,694 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:10:19,324 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:10:19,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:10:19,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:10:19,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 17:10:19,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 17:10:19,631 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:10:20,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:20,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:20,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:20,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:10:20,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:10:20,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:21,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:21,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:21,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:21,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:10:21,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:10:21,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:21,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:21,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:21,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:21,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:10:21,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:10:21,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:24,319 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:10:24,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:10:24,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:10:24,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 17:10:24,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 17:10:24,604 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:10:25,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:25,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:25,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:25,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:10:25,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:10:25,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:27,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:27,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:27,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:27,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:10:27,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:10:27,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:27,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:27,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:27,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:27,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:10:27,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:10:27,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:28,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:28,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:28,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:28,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:10:28,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:10:28,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:29,249 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:10:29,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:10:29,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:10:29,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 17:10:29,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-01 17:10:29,522 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:10:29,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:29,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:29,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:30,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:10:30,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:10:30,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:30,515 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:10:30,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:10:30,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:10:30,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 17:10:30,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 17:10:30,794 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:10:31,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:31,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:31,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:31,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:10:31,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:10:31,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:32,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:32,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:32,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:32,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:10:32,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:10:32,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:34,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:34,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:34,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:34,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:10:34,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:10:34,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:35,853 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:10:35,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:10:35,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:10:36,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 17:10:36,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 17:10:36,162 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:10:36,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:36,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:36,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:36,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:10:36,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:10:36,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:38,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:38,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:38,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:38,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:10:38,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:10:38,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:38,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:38,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:38,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:38,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:10:38,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:10:38,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:39,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:39,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:39,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:39,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:10:39,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:10:39,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:39,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:39,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:39,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:39,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:10:39,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:10:39,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:42,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:42,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:42,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:42,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:10:42,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:10:42,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:42,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:42,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:42,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:42,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:10:42,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:10:42,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:43,191 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:10:43,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:10:43,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:10:43,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 17:10:43,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 17:10:43,494 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:10:46,073 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:10:46,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:10:46,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:10:46,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 17:10:46,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 17:10:46,372 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:10:46,747 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:10:46,775 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:10:46,855 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.737 +2025-10-01 17:10:46,856 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:10:46,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:10:47,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:47,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:47,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:47,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:10:47,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:10:47,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:48,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:48,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:48,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:48,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:10:48,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:10:48,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:48,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:48,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:48,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:49,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:10:49,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:10:49,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:50,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:50,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:50,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:50,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:10:50,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:10:50,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:50,815 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:10:50,837 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:10:50,912 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.946 +2025-10-01 17:10:50,912 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:10:50,912 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:10:51,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:51,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:51,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:51,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:10:51,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:10:51,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:52,483 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:10:52,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:10:52,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:10:52,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.316s +2025-10-01 17:10:52,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.316s (avg: 0.158s/image) +2025-10-01 17:10:52,801 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:10:53,199 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:10:53,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:10:53,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:10:53,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-01 17:10:53,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-01 17:10:53,465 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:10:54,536 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:10:54,557 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:10:54,630 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.594 +2025-10-01 17:10:54,630 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:10:54,630 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:10:56,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:56,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:56,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:56,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:10:56,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:10:56,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:57,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:57,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:57,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:57,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:10:57,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:10:57,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:57,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:57,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:57,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:58,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:10:58,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:10:58,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:10:59,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:10:59,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:10:59,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:10:59,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:10:59,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:10:59,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:00,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:00,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:00,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:00,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:11:00,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:11:00,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:00,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:00,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:00,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:00,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:11:00,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:11:00,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:00,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:00,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:00,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:01,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:11:01,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:11:01,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:01,091 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:11:01,112 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:11:01,185 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.815 +2025-10-01 17:11:01,185 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:11:01,185 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:11:01,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:01,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:01,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:01,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:11:01,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:11:01,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:02,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:02,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:02,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:02,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:11:02,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:11:02,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:02,544 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:11:02,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:11:02,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:11:02,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 17:11:02,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 17:11:02,847 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:11:02,988 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:11:03,008 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:11:03,081 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.684 +2025-10-01 17:11:03,081 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:11:03,081 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:11:03,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:03,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:03,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:03,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:11:03,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:11:03,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:04,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:04,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:04,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:04,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:11:04,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:11:04,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:05,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:05,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:05,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:05,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:11:05,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:11:05,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:05,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:05,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:05,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:06,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:11:06,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:11:06,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:06,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:06,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:06,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:06,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:11:06,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:11:06,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:06,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:06,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:06,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:06,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:11:06,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:11:06,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:07,094 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:11:07,113 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:11:07,186 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.473 +2025-10-01 17:11:07,186 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:11:07,186 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:11:07,554 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:11:07,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:11:07,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:11:07,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 17:11:07,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 17:11:07,837 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:11:08,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:08,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:08,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:08,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:11:08,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:11:08,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:12,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:12,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:12,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:12,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:11:12,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:11:12,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:13,049 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:11:13,083 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:11:13,161 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.182 +2025-10-01 17:11:13,162 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:11:13,162 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:11:16,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:16,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:16,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:16,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:11:16,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:11:16,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:18,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:18,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:18,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:18,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:11:18,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:11:18,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:18,509 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:11:18,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:11:18,607 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.256 +2025-10-01 17:11:18,607 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:11:18,607 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:11:20,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:20,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:21,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:21,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:11:21,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:11:21,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:21,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:21,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:21,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:21,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:11:21,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:11:21,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:24,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:24,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:24,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:25,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:11:25,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:11:25,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:25,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:25,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:25,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:25,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:11:25,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:11:25,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:28,406 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:11:28,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:11:28,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:11:28,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 17:11:28,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 17:11:28,702 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:11:28,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:28,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:28,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:29,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:11:29,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:11:29,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:31,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:31,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:31,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:31,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:11:31,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:11:31,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:32,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:32,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:32,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:32,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:11:32,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:11:32,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:32,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:32,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:32,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:32,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:11:32,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:11:32,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:33,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:33,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:33,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:33,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:11:33,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:11:33,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:37,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:37,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:37,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:37,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:11:37,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:11:37,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:37,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:37,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:37,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:37,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:11:37,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:11:37,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:37,743 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:11:37,767 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:11:37,842 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=175.506 +2025-10-01 17:11:37,843 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:11:37,843 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:11:39,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:39,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:39,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:39,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:11:39,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:11:39,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:39,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:39,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:39,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:39,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:11:39,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:11:39,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:39,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:39,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:39,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:39,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:11:39,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:11:39,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:40,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:40,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:40,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:40,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:11:40,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:11:40,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:41,849 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:11:41,874 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:11:41,955 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.600 +2025-10-01 17:11:41,955 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:11:41,956 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:11:43,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:43,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:43,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:43,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:11:43,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:11:43,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:44,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:44,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:44,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:44,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:11:44,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:11:44,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:44,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:44,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:44,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:44,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:11:44,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:11:44,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:45,436 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:11:45,461 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:11:45,538 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.989 +2025-10-01 17:11:45,539 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:11:45,539 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:11:45,806 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:11:45,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:11:45,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:11:46,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 17:11:46,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 17:11:46,098 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:11:46,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:46,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:46,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:46,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:11:46,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:11:46,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:49,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:49,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:50,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:50,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:11:50,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:11:50,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:50,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:50,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:50,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:50,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:11:50,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:11:50,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:50,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:50,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:50,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:51,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:11:51,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:11:51,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:51,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:51,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:51,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:51,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:11:51,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:11:51,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:52,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:52,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:52,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:52,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:11:52,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:11:52,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:52,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:52,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:52,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:52,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:11:52,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:11:52,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:53,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:53,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:53,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:53,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:11:53,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:11:53,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:53,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:53,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:53,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:53,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:11:53,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:11:53,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:57,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:57,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:57,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:57,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:11:57,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:11:57,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:57,772 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:11:57,793 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:11:57,868 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.317 +2025-10-01 17:11:57,868 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:11:57,868 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:11:58,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:11:58,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:11:58,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:11:58,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:11:58,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:11:58,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:11:58,337 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:11:58,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:11:58,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:11:58,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.381s +2025-10-01 17:11:58,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.381s (avg: 0.127s/image) +2025-10-01 17:11:58,720 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:12:00,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:00,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:00,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:00,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:12:00,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:12:00,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:01,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:01,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:01,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:01,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:12:01,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:12:01,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:01,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:01,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:01,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:02,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:12:02,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:12:02,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:02,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:02,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:02,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:02,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:12:02,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:12:02,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:03,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:03,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:03,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:03,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:12:03,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:12:03,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:06,538 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:06,564 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:06,644 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.842 +2025-10-01 17:12:06,644 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:12:06,644 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:12:07,653 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:12:07,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:12:07,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:12:07,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-01 17:12:07,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.161s/image) +2025-10-01 17:12:07,976 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:12:08,503 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:08,526 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:08,608 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.161 +2025-10-01 17:12:08,608 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:12:08,609 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:12:09,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:09,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:09,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:09,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:12:09,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:12:09,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:09,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:09,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:09,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:09,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:12:09,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:12:09,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:11,486 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:11,512 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:11,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.262 +2025-10-01 17:12:11,595 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:12:11,595 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:12:12,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:12,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:12,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:12,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:12:12,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:12:12,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:13,081 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:13,112 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:13,190 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.818 +2025-10-01 17:12:13,190 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:12:13,191 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:12:13,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:13,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:13,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:13,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:12:13,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:12:13,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:14,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:14,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:14,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:14,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:12:14,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:12:14,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:14,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:14,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:14,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:14,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:12:14,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:12:14,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:15,103 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:15,127 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:15,202 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.882 +2025-10-01 17:12:15,202 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:12:15,203 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:12:15,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:15,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:15,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:15,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:12:15,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:12:15,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:17,130 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:17,153 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:17,226 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.518 +2025-10-01 17:12:17,226 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:12:17,226 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:12:17,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:17,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:17,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:18,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:12:18,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:12:18,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:19,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:19,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:19,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:19,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:12:19,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:12:19,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:19,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:19,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:19,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:19,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:12:19,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:12:19,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:20,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:20,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:20,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:20,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:12:20,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:12:20,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:21,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:21,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:21,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:21,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:12:21,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:12:21,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:21,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:21,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:21,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:21,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:12:21,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:12:21,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:22,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:22,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:22,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:23,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:12:23,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:12:23,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:23,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:23,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:23,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:23,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:12:23,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:12:23,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:25,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:25,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:25,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:25,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:12:25,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:12:25,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:26,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:26,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:26,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:26,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:12:26,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:12:26,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:29,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:29,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:29,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:29,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:12:29,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:12:29,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:30,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:30,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:30,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:30,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:12:30,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:12:30,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:30,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:30,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:30,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:30,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:12:30,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:12:30,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:35,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:35,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:35,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:35,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:12:35,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:12:35,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:37,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:37,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:37,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:38,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:12:38,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:12:38,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:39,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:39,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:39,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:39,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:12:39,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:12:39,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:40,145 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:12:40,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:12:40,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:12:40,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 17:12:40,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 17:12:40,429 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:12:40,606 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:40,621 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:40,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.291 +2025-10-01 17:12:40,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:12:40,707 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:12:42,764 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:42,792 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:42,876 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.780 +2025-10-01 17:12:42,877 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:12:42,878 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:12:43,894 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:43,916 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:44,002 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.899 +2025-10-01 17:12:44,002 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:12:44,002 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:12:45,804 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:12:45,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:12:45,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:12:46,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 17:12:46,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 17:12:46,115 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:12:46,532 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:46,549 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:46,628 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.964 +2025-10-01 17:12:46,628 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:12:46,629 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:12:46,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:46,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:46,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:46,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:12:46,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:12:46,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:46,960 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:12:46,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:12:47,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:12:47,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 17:12:47,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 17:12:47,236 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:12:47,609 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:47,633 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:47,713 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.550 +2025-10-01 17:12:47,713 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:12:47,713 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:12:49,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:49,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:50,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:50,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:12:50,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:12:50,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:50,412 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:50,436 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:50,519 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=197.387 +2025-10-01 17:12:50,519 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:12:50,520 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:12:50,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:50,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:51,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:51,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:12:51,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:12:51,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:52,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:52,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:52,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:52,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:12:52,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:12:52,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:52,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:52,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:52,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:52,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:12:52,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:12:52,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:54,022 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:54,045 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:54,127 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=168.052 +2025-10-01 17:12:54,127 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:12:54,127 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:12:54,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:54,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:54,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:54,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:12:54,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:12:54,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:54,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:54,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:54,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:55,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:12:55,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:12:55,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:55,416 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:55,437 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:55,518 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.098 +2025-10-01 17:12:55,519 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:12:55,519 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:12:56,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:56,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:56,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:56,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:12:56,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:12:56,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:56,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:56,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:56,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:56,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:12:56,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:12:56,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:58,150 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:12:58,186 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:12:58,282 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.485 +2025-10-01 17:12:58,282 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 17:12:58,283 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 17:12:58,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:58,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:58,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:58,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:12:58,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:12:58,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:59,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:59,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:59,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:59,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:12:59,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:12:59,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:12:59,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:12:59,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:12:59,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:12:59,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:12:59,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:12:59,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:00,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:00,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:00,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:00,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:13:00,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:13:00,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:01,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:01,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:01,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:01,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:13:01,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:13:01,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:03,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:03,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:03,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:03,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:13:03,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:13:03,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:03,983 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:13:04,011 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:13:04,107 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.954 +2025-10-01 17:13:04,108 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 17:13:04,109 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 17:13:04,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:04,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:04,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:05,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:13:05,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:13:05,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:05,624 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:13:05,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:13:05,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:13:05,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 17:13:05,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 17:13:05,897 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:13:06,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:06,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:06,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:07,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:13:07,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:13:07,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:07,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:07,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:07,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:07,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:13:07,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:13:07,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:09,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:09,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:09,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:10,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:13:10,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:13:10,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:11,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:11,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:11,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:11,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:13:11,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:13:11,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:12,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:12,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:12,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:12,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:13:12,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:13:12,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:14,248 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:13:14,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:13:14,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:13:14,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.405s +2025-10-01 17:13:14,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.405s (avg: 0.135s/image) +2025-10-01 17:13:14,655 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:13:15,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:15,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:15,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:15,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:13:15,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:13:15,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:15,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:15,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:15,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:16,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:13:16,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:13:16,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:16,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:16,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:16,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:16,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:13:16,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:13:16,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:16,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:16,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:16,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:16,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:13:16,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:13:16,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:19,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:19,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:19,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:19,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:13:19,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:13:19,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:19,446 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:13:19,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:13:19,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:13:19,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 17:13:19,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 17:13:19,733 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:13:20,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:20,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:20,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:20,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:13:20,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:13:20,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:20,628 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:13:20,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:13:20,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:13:20,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-01 17:13:20,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +2025-10-01 17:13:20,888 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:13:21,912 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:13:21,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:13:21,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:13:22,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 17:13:22,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 17:13:22,207 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:13:23,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:23,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:23,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:23,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:13:23,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:13:23,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:23,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:23,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:23,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:23,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-01 17:13:23,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-01 17:13:23,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:23,945 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:13:23,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:13:23,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:13:24,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 17:13:24,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 17:13:24,221 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:13:24,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:24,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:24,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:24,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-01 17:13:24,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-01 17:13:24,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:25,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:25,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:25,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:25,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:13:25,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:13:25,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:26,929 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:13:26,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:13:26,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:13:27,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 17:13:27,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 17:13:27,198 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:13:28,092 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:13:28,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:13:28,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:13:28,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 17:13:28,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 17:13:28,367 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:13:28,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:28,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:28,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:28,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:13:28,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:13:28,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:28,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:28,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:29,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:29,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:13:29,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:13:29,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:29,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:29,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:29,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:29,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:13:29,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:13:29,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:29,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:29,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:29,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:30,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:13:30,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:13:30,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:30,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:30,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:30,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:30,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +2025-10-01 17:13:30,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +2025-10-01 17:13:30,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:33,065 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:13:33,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:13:33,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:13:33,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 17:13:33,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 17:13:33,346 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:13:33,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:33,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:33,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:33,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:13:33,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:13:33,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:34,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:34,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:34,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:34,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:13:34,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:13:34,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:34,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:34,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:34,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:34,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:13:34,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:13:34,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:34,940 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:13:34,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:13:34,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:13:35,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 17:13:35,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-01 17:13:35,209 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:13:36,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:36,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:36,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:36,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:13:36,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:13:36,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:37,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:37,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:37,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:37,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-01 17:13:37,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-01 17:13:37,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:37,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:37,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:37,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:37,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:13:37,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:13:37,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:37,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:37,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:37,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:38,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:13:38,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:13:38,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:38,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:38,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:38,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:38,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:13:38,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:13:38,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:39,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:39,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:39,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:40,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 17:13:40,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 17:13:40,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:41,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:41,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:41,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:41,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-01 17:13:41,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-01 17:13:41,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:42,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:42,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:42,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:42,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:13:42,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:13:42,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:45,169 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:13:45,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:13:45,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:13:45,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 17:13:45,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 17:13:45,460 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:13:45,637 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:13:45,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:13:45,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:13:46,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.378s +2025-10-01 17:13:46,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.378s (avg: 0.126s/image) +2025-10-01 17:13:46,016 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:13:46,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:46,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:46,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:46,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 17:13:46,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 17:13:46,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:47,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:47,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:47,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:47,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:13:47,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:13:47,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:48,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:48,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:48,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:48,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:13:48,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:13:48,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:49,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:49,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:49,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:49,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:13:49,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:13:49,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:49,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:49,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:49,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:50,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:13:50,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:13:50,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:50,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:50,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:50,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:50,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:13:50,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:13:50,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:50,761 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:13:50,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:13:50,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:13:51,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.379s +2025-10-01 17:13:51,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.379s (avg: 0.126s/image) +2025-10-01 17:13:51,141 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:13:54,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:54,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:54,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:54,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:13:54,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:13:54,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:54,945 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:13:54,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:13:54,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:13:55,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.255s +2025-10-01 17:13:55,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.255s (avg: 0.127s/image) +2025-10-01 17:13:55,201 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:13:55,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:55,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:55,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:55,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:13:55,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:13:55,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:55,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:55,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:55,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:55,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:13:55,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:13:55,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:56,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:56,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:56,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:56,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 17:13:56,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 17:13:56,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:56,444 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:13:56,463 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:13:56,539 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.871 +2025-10-01 17:13:56,539 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:13:56,539 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:13:56,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:56,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:57,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:57,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:13:57,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:13:57,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:57,143 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:13:57,176 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:13:57,262 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.911 +2025-10-01 17:13:57,262 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:13:57,265 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 17:13:57,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:57,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:57,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:57,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:13:57,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:13:57,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:59,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:59,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:59,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:59,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:13:59,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:13:59,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:13:59,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:13:59,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:13:59,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:13:59,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:13:59,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:13:59,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:00,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:00,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:00,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:00,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:14:00,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:14:00,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:00,852 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:14:00,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:14:00,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:14:01,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 17:14:01,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 17:14:01,136 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:14:01,412 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:14:01,430 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:14:01,505 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.065 +2025-10-01 17:14:01,505 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:14:01,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:14:01,526 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:14:01,542 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:14:01,621 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.780 +2025-10-01 17:14:01,621 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:14:01,623 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:14:01,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:01,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:01,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:02,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:14:02,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:14:02,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:03,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:03,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:03,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:03,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:14:03,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:14:03,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:03,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:03,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:03,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:03,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:14:03,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:14:03,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:03,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:03,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:03,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:03,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:14:03,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:14:03,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:04,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:04,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:04,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:04,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:14:04,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:14:04,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:04,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:04,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:04,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:04,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:14:04,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:14:04,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:05,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:05,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:05,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:05,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:14:05,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:14:05,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:06,020 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:14:06,048 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:14:06,147 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.293 +2025-10-01 17:14:06,147 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 17:14:06,148 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 17:14:07,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:07,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:07,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:07,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:14:07,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:14:07,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:08,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:08,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:08,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:08,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:14:08,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:14:08,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:09,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:09,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:09,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:09,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:14:09,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:14:09,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:09,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:09,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:09,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:09,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:14:09,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:14:09,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:10,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:10,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:10,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:10,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:14:10,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:14:10,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:11,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:11,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:11,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:12,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:14:12,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:14:12,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:12,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:12,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:12,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:12,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:14:12,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:14:12,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:12,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:12,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:12,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:13,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:14:13,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:14:13,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:13,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:13,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:13,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:13,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:14:13,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:14:13,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:14,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:14,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:14,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:14,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:14:14,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:14:14,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:15,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:15,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:15,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:15,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:14:15,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:14:15,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:16,572 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:14:16,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:14:16,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:14:16,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 17:14:16,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-01 17:14:16,847 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:14:17,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:17,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:17,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:17,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:14:17,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:14:17,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:17,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:17,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:17,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:17,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:14:17,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:14:17,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:18,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:18,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:18,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:18,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:14:18,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:14:18,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:19,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:19,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:19,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:19,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:14:19,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:14:19,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:20,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:20,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:20,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:20,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:14:20,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:14:20,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:21,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:21,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:21,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:21,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 17:14:21,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 17:14:21,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:21,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:21,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:21,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:21,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:14:21,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:14:21,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:21,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:21,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:21,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:21,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:14:21,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:14:21,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:23,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:23,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:23,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:23,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:14:23,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:14:23,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:24,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:24,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:25,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:25,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:14:25,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:14:25,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:25,414 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:14:25,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:14:25,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:14:25,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 17:14:25,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 17:14:25,693 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:14:26,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:26,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:26,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:26,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:14:26,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:14:26,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:28,539 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:14:28,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:14:28,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:14:28,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 17:14:28,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 17:14:28,833 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:14:29,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:29,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:29,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:29,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:14:29,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:14:29,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:29,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:29,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:29,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:29,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:14:29,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:14:29,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:30,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:30,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:30,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:30,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:14:30,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:14:30,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:31,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:31,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:31,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:31,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 17:14:31,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 17:14:31,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:31,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:31,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:31,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:31,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:14:31,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:14:31,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:34,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:34,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:34,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:34,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:14:34,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:14:34,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:35,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:35,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:35,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:35,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:14:35,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:14:35,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:37,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:37,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:37,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:38,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:14:38,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:14:38,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:41,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:41,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:41,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:41,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:14:41,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:14:41,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:42,222 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:14:42,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:14:42,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:14:42,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 17:14:42,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-01 17:14:42,494 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:14:43,246 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:14:43,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:14:43,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:14:43,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-01 17:14:43,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +2025-10-01 17:14:43,558 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:14:44,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:44,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:44,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:44,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:14:44,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:14:44,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:48,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:48,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:48,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:48,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:14:48,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:14:48,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:51,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:51,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:51,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:51,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 17:14:51,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 17:14:51,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:51,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:51,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:51,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:51,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:14:51,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:14:51,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:51,966 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:14:52,006 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:14:52,107 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.237 +2025-10-01 17:14:52,108 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-01 17:14:52,110 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-01 17:14:52,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:52,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:52,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:52,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 17:14:52,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 17:14:52,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:53,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:53,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:53,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:53,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:14:53,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:14:53,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:54,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:54,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:54,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:54,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:14:54,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:14:54,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:55,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:55,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:55,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:55,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:14:55,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:14:55,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:55,559 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:14:55,586 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(828, 828, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:14:55,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.692 +2025-10-01 17:14:55,676 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 17:14:55,676 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 17:14:56,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:56,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:56,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:56,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:14:56,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:14:56,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:57,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:57,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:57,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:58,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s +2025-10-01 17:14:58,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +2025-10-01 17:14:58,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:58,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:58,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:58,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:58,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:14:58,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:14:58,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:58,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:14:58,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:14:58,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:14:58,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:14:58,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:14:58,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:14:59,342 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:14:59,380 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:14:59,472 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.032 +2025-10-01 17:14:59,472 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 17:14:59,474 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 17:15:00,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:00,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:00,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:00,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:15:00,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:15:00,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:02,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:02,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:02,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:02,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:15:02,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:15:02,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:04,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:04,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:04,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:05,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:15:05,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:15:05,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:06,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:06,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:06,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:06,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:15:06,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:15:06,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:06,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:06,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:06,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:06,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:15:06,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:15:06,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:08,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:08,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:08,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:08,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:15:08,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:15:08,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:08,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:08,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:08,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:08,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:15:08,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:15:08,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:11,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:11,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:12,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:12,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:15:12,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:15:12,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:12,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:12,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:12,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:12,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:15:12,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:15:12,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:12,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:12,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:13,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:13,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:15:13,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:15:13,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:14,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:14,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:14,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:15,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:15:15,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:15:15,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:15,720 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:15:15,739 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:15:15,821 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.452 +2025-10-01 17:15:15,822 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:15:15,822 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:15:16,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:16,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:16,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:16,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:15:16,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:15:16,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:17,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:17,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:17,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:17,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:15:17,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:15:17,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:18,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:18,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:18,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:18,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:15:18,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:15:18,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:19,856 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:15:19,886 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:15:19,976 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.458 +2025-10-01 17:15:19,977 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 17:15:19,979 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 17:15:21,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:21,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:21,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:21,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:15:21,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:15:21,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:23,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:23,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:23,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:23,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:15:23,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:15:23,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:24,056 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:15:24,091 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:15:24,194 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.355 +2025-10-01 17:15:24,195 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-01 17:15:24,196 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 17:15:25,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:25,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:25,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:25,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:15:25,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:15:25,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:25,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:25,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:25,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:26,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:15:26,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:15:26,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:27,157 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:15:27,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:15:27,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:15:27,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 17:15:27,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +2025-10-01 17:15:27,422 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:15:30,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:30,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:30,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:30,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:15:30,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:15:30,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:30,656 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:15:30,690 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:15:30,782 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.334 +2025-10-01 17:15:30,783 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 17:15:30,783 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 17:15:33,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:33,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:33,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:33,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:15:33,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:15:33,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:34,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:34,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:34,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:34,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:15:34,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:15:34,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:35,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:35,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:35,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:35,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-01 17:15:35,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-01 17:15:35,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:37,556 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:15:37,583 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:15:37,670 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.009 +2025-10-01 17:15:37,671 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 17:15:37,672 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 17:15:38,154 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:15:38,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:15:38,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:15:38,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 17:15:38,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 17:15:38,431 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:15:38,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:38,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:38,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:38,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 17:15:38,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 17:15:38,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:40,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:40,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:40,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:40,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:15:40,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:15:40,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:40,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:40,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:40,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:41,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:15:41,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:15:41,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:41,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:41,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:41,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:41,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 17:15:41,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 17:15:41,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:43,594 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:15:43,616 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:15:43,709 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.280 +2025-10-01 17:15:43,709 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 17:15:43,710 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 17:15:45,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:45,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:45,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:45,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:15:45,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:15:45,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:46,956 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:15:46,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:15:47,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:15:47,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 17:15:47,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 17:15:47,225 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:15:50,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:50,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:50,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:50,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:15:50,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:15:50,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:51,378 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:15:51,403 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:15:51,488 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.513 +2025-10-01 17:15:51,488 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 17:15:51,488 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:15:52,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:52,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:52,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:52,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:15:52,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:15:52,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:54,738 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:15:54,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:15:54,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:15:55,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 17:15:55,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 17:15:55,032 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:15:55,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:55,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:55,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:55,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:15:55,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:15:55,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:55,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:55,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:55,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:55,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:15:55,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:15:55,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:15:56,071 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:15:56,115 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:15:56,195 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.392 +2025-10-01 17:15:56,195 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:15:56,195 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:15:57,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:15:57,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:15:57,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:15:57,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:15:57,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:15:57,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:00,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:00,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:00,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:00,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:16:00,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:16:00,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:00,916 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:16:00,940 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:16:01,014 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.366 +2025-10-01 17:16:01,014 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:16:01,015 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:16:02,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:02,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:02,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:02,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:16:02,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:16:02,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:05,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:05,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:05,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:05,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:16:05,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:16:05,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:07,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:07,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:07,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:08,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:16:08,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:16:08,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:10,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:10,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:10,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:11,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:16:11,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:16:11,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:11,156 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:16:11,179 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:16:11,253 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.946 +2025-10-01 17:16:11,253 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:16:11,253 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:16:11,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:11,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:11,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:11,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:16:11,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:16:11,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:14,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:14,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:14,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:14,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:16:14,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:16:14,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:16,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:16,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:16,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:16,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:16:16,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:16:16,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:18,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:18,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:18,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:18,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:16:18,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:16:18,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:22,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:22,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:22,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:22,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:16:22,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:16:22,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:23,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:23,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:23,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:23,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:16:23,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:16:23,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:23,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:23,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:23,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:24,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:16:24,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:16:24,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:24,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:24,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:24,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:24,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:16:24,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:16:24,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:26,429 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:16:26,461 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:16:26,538 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.754 +2025-10-01 17:16:26,539 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:16:26,539 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:16:30,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:30,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:30,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:30,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:16:30,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:16:30,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:30,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:30,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:30,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:30,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:16:30,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:16:30,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:31,349 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:16:31,390 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:16:31,476 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.255 +2025-10-01 17:16:31,477 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:16:31,478 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:16:32,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:32,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:32,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:32,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:16:32,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:16:32,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:32,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:32,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:32,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:33,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:16:33,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:16:33,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:34,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:34,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:34,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:34,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:16:34,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:16:34,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:35,133 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:16:35,157 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:16:35,242 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.548 +2025-10-01 17:16:35,243 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:16:35,243 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:16:36,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:36,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:36,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:36,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:16:36,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:16:36,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:36,974 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:16:36,992 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:16:37,063 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.131 +2025-10-01 17:16:37,063 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 17:16:37,063 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 17:16:37,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:37,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:37,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:37,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:16:37,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:16:37,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:37,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:37,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:38,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:38,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:16:38,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:16:38,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:39,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:39,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:39,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:39,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:16:39,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:16:39,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:40,547 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:16:40,574 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:16:40,651 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.201 +2025-10-01 17:16:40,652 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:16:40,653 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:16:42,554 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:16:42,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:16:42,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:16:42,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 17:16:42,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 17:16:42,859 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:16:43,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:43,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:43,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:43,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:16:43,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:16:43,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:44,251 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:16:44,285 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:16:44,374 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.082 +2025-10-01 17:16:44,374 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 17:16:44,375 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 17:16:44,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:44,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:44,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:45,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:16:45,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:16:45,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:47,443 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:16:47,471 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:16:47,561 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.710 +2025-10-01 17:16:47,562 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 17:16:47,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 17:16:48,337 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:16:48,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:16:48,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:16:48,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-01 17:16:48,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-01 17:16:48,607 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:16:51,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:51,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:51,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:51,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:16:51,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:16:51,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:52,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:52,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:52,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:52,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:16:52,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:16:52,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:53,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:53,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:53,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:53,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:16:53,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:16:53,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:53,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:53,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:54,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:54,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:16:54,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:16:54,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:54,166 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:16:54,187 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:16:54,266 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.968 +2025-10-01 17:16:54,266 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:16:54,266 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:16:54,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:16:54,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:16:54,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:16:54,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:16:54,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:16:54,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:16:58,089 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:16:58,109 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:16:58,183 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.848 +2025-10-01 17:16:58,184 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:16:58,184 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:16:58,779 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:16:58,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:16:58,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:16:59,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 17:16:59,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 17:16:59,063 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:17:00,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:00,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:00,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:00,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:17:00,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:17:00,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:01,679 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:01,704 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:01,776 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.948 +2025-10-01 17:17:01,776 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 17:17:01,776 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 17:17:05,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:05,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:05,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:05,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:17:05,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:17:05,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:05,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:05,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:05,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:05,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:17:05,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:17:05,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:06,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:06,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:06,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:06,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:17:06,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:17:06,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:06,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:06,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:06,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:06,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:17:06,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:17:06,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:09,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:09,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:09,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:09,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:17:09,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:17:09,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:10,592 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:10,617 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:10,694 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.205 +2025-10-01 17:17:10,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:17:10,695 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:17:12,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:12,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:12,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:12,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:17:12,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:17:12,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:14,142 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:14,166 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:14,244 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.485 +2025-10-01 17:17:14,244 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:17:14,244 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:17:14,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:14,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:14,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:14,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-01 17:17:14,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-01 17:17:14,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:16,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:16,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:16,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:16,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:17:16,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:17:16,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:18,240 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:18,266 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:18,349 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.867 +2025-10-01 17:17:18,349 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:17:18,349 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:17:19,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:19,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:19,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:19,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:17:19,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:17:19,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:20,768 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:20,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:20,866 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.063 +2025-10-01 17:17:20,866 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:17:20,866 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:17:21,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:21,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:21,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:21,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:17:21,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:17:21,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:22,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:22,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:23,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:23,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:17:23,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:17:23,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:23,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:23,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:23,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:23,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:17:23,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:17:23,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:25,908 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:25,942 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:26,019 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.881 +2025-10-01 17:17:26,020 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:17:26,020 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:17:26,395 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:17:26,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:17:26,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:17:26,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 17:17:26,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 17:17:26,682 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:17:27,009 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:27,028 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:27,097 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.637 +2025-10-01 17:17:27,098 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 17:17:27,098 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 17:17:27,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:27,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:27,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:27,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:17:27,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:17:27,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:29,530 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:29,552 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:29,628 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.883 +2025-10-01 17:17:29,629 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:17:29,629 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:17:29,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:29,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:29,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:30,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:17:30,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:17:30,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:30,492 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:30,510 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:30,575 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.663 +2025-10-01 17:17:30,575 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.065s +2025-10-01 17:17:30,576 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.066s +2025-10-01 17:17:31,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:31,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:31,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:31,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:17:31,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:17:31,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:33,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:33,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:33,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:33,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:17:33,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:17:33,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:34,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:34,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:34,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:34,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:17:34,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:17:34,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:34,595 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:34,620 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:34,692 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.310 +2025-10-01 17:17:34,692 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 17:17:34,692 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 17:17:37,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:37,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:37,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:37,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:17:37,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:17:37,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:38,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:38,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:38,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:38,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:17:38,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:17:38,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:40,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:40,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:40,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:40,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:17:40,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:17:40,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:40,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:41,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:41,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:41,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:17:41,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:17:41,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:43,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:43,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:43,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:43,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:17:43,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:17:43,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:44,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:44,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:44,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:44,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:17:44,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:17:44,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:45,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:45,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:45,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:45,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:17:45,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:17:45,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:46,530 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:46,550 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:46,626 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.811 +2025-10-01 17:17:46,626 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:17:46,626 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:17:48,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:48,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:48,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:48,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:17:48,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:17:48,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:48,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:48,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:48,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:49,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:17:49,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:17:49,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:49,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:49,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:49,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:49,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:17:49,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:17:49,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:49,880 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:49,898 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:49,967 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.226 +2025-10-01 17:17:49,967 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 17:17:49,967 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 17:17:52,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:52,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:52,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:52,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:17:52,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:17:52,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:53,306 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:17:53,324 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:17:53,396 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.812 +2025-10-01 17:17:53,396 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 17:17:53,396 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 17:17:54,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:54,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:54,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:54,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:17:54,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:17:54,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:55,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:55,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:55,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:55,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:17:55,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:17:55,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:56,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:56,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:56,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:56,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:17:56,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:17:56,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:57,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:57,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:57,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:57,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:17:57,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:17:57,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:17:58,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:17:58,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:17:58,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:17:58,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:17:58,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:17:58,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:01,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:01,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:01,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:01,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:18:01,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:18:01,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:01,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:01,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:01,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:01,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:18:01,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:18:01,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:02,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:02,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:02,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:02,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:18:02,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:18:02,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:09,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:09,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:09,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:09,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:18:09,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:18:09,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:11,344 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:18:11,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:18:11,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:18:11,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 17:18:11,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 17:18:11,653 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:18:12,039 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:18:12,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:18:12,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:18:12,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 17:18:12,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 17:18:12,328 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:18:12,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:12,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:12,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:12,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:18:12,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:18:12,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:14,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:14,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:14,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:14,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:18:14,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:18:14,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:16,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:16,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:16,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:16,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:18:16,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:18:16,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:16,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:18:16,849 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:18:16,941 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.596 +2025-10-01 17:18:16,942 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 17:18:16,942 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 17:18:18,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:18,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:18,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:18,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:18:18,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:18:18,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:18,646 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:18:18,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:18:18,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:18:18,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 17:18:18,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 17:18:18,925 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:18:20,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:20,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:20,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:20,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:18:20,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:18:20,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:22,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:22,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:22,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:22,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:18:22,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:18:22,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:23,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:23,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:23,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:23,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:18:23,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:18:23,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:25,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:25,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:25,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:25,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:18:25,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:18:25,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:26,816 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:18:26,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:18:26,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:18:27,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 17:18:27,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +2025-10-01 17:18:27,125 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:18:29,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:29,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:29,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:29,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:18:29,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:18:29,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:29,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:29,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:29,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:29,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:18:29,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:18:29,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:30,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:30,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:30,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:30,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:18:30,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:18:30,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:32,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:32,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:32,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:32,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:18:32,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:18:32,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:32,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:32,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:32,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:33,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:18:33,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:18:33,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:33,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:33,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:33,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:33,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:18:33,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:18:33,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:35,474 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:18:35,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:18:35,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:18:35,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 17:18:35,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 17:18:35,775 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:18:37,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:37,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:37,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:37,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:18:37,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:18:37,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:39,483 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:18:39,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:18:39,591 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.764 +2025-10-01 17:18:39,591 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:18:39,593 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:18:42,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:42,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:42,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:42,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:18:42,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:18:42,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:42,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:42,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:42,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:42,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:18:42,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:18:42,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:43,486 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:18:43,510 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:18:43,600 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.689 +2025-10-01 17:18:43,600 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 17:18:43,601 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 17:18:46,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:46,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:46,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:46,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:18:46,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:18:46,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:47,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:47,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:47,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:47,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:18:47,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:18:47,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:49,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:49,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:49,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:49,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:18:49,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:18:49,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:50,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:50,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:50,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:50,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:18:50,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:18:50,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:51,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:51,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:51,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:51,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:18:51,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:18:51,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:52,269 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:18:52,290 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:18:52,376 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.784 +2025-10-01 17:18:52,376 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:18:52,376 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:18:54,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:54,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:54,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:54,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:18:54,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:18:54,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:18:56,611 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:18:56,642 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:18:56,727 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.411 +2025-10-01 17:18:56,727 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 17:18:56,727 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:18:58,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:18:58,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:18:58,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:18:58,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:18:58,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:18:58,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:01,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:19:01,740 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:19:01,821 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=203.510 +2025-10-01 17:19:01,821 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:19:01,821 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:19:02,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:02,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:02,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:02,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:19:02,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:19:02,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:03,307 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:19:03,338 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:19:03,424 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.042 +2025-10-01 17:19:03,425 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:19:03,426 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:19:04,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:04,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:04,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:05,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:19:05,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:19:05,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:06,826 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:19:06,865 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:19:06,962 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.645 +2025-10-01 17:19:06,962 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 17:19:06,963 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 17:19:07,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:07,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:07,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:07,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:19:07,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:19:07,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:07,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:07,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:07,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:07,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:19:07,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:19:07,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:10,499 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:19:10,527 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:19:10,623 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.226 +2025-10-01 17:19:10,624 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 17:19:10,625 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 17:19:12,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:12,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:12,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:12,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:19:12,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:19:12,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:13,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:13,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:13,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:13,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:19:13,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:19:13,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:14,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:14,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:14,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:14,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:19:14,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:19:14,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:17,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:17,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:17,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:17,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:19:17,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:19:17,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:19,928 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:19:19,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:19:19,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:19:20,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 17:19:20,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 17:19:20,233 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:19:21,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:21,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:21,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:21,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:19:21,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:19:21,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:22,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:22,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:22,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:22,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 17:19:22,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 17:19:22,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:24,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:24,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:24,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:24,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:19:24,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:19:24,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:25,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:25,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:25,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:25,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:19:25,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:19:25,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:25,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:25,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:26,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:26,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:19:26,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:19:26,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:29,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:29,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:29,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:29,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:19:29,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:19:29,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:30,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:30,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:30,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:30,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:19:30,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:19:30,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:31,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:31,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:31,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:31,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:19:31,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:19:31,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:33,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:33,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:33,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:33,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 17:19:33,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 17:19:33,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:35,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:35,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:35,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:35,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:19:35,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:19:35,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:36,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:36,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:36,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:36,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:19:36,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:19:36,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:39,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:39,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:39,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:39,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:19:39,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:19:39,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:41,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:41,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:41,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:41,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:19:41,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:19:41,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:43,360 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:19:43,398 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:19:43,493 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.300 +2025-10-01 17:19:43,493 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 17:19:43,495 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 17:19:45,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:45,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:45,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:45,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:19:45,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:19:45,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:46,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:46,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:46,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:46,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:19:46,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:19:46,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:47,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:47,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:47,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:47,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:19:47,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:19:47,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:48,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:48,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:48,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:48,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:19:48,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:19:48,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:48,245 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:19:48,266 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:19:48,352 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.228 +2025-10-01 17:19:48,352 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:19:48,352 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:19:48,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:48,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:48,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:48,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:19:48,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:19:48,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:50,573 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:19:50,602 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:19:50,687 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.775 +2025-10-01 17:19:50,688 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:19:50,689 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:19:51,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:51,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:51,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:52,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:19:52,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:19:52,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:52,113 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:19:52,134 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:19:52,223 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.306 +2025-10-01 17:19:52,223 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 17:19:52,223 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 17:19:52,621 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:19:52,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:19:52,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:19:52,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 17:19:52,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 17:19:52,899 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:19:54,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:54,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:54,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:54,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:19:54,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:19:54,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:19:55,801 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:19:55,824 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:19:55,902 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.516 +2025-10-01 17:19:55,902 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:19:55,902 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:19:56,357 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:19:56,386 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:19:56,464 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.854 +2025-10-01 17:19:56,464 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:19:56,464 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:19:58,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:19:58,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:19:58,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:19:58,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:19:58,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:19:58,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:03,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:03,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:03,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:03,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:20:03,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:20:03,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:04,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:04,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:04,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:04,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:20:04,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:20:04,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:16,540 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:16,578 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:16,671 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.835 +2025-10-01 17:20:16,671 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 17:20:16,672 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 17:20:17,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:17,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:17,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:17,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-01 17:20:17,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-01 17:20:17,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:18,475 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:18,500 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:18,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.743 +2025-10-01 17:20:18,587 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:20:18,588 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:20:19,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:19,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:19,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:19,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:20:19,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:20:19,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:20,512 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:20,531 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:20,615 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.439 +2025-10-01 17:20:20,615 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:20:20,615 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:20:21,249 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:21,281 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:21,370 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.051 +2025-10-01 17:20:21,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 17:20:21,372 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 17:20:21,781 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:21,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:21,899 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.293 +2025-10-01 17:20:21,900 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 17:20:21,901 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 17:20:23,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:23,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:23,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:23,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:20:23,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:20:23,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:25,282 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:25,306 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:25,394 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.222 +2025-10-01 17:20:25,395 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 17:20:25,395 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 17:20:25,425 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:25,449 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:25,533 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.817 +2025-10-01 17:20:25,533 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:20:25,533 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:20:25,965 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:20:25,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:20:26,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:20:26,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-01 17:20:26,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +2025-10-01 17:20:26,282 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:20:26,671 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:26,727 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:26,824 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.488 +2025-10-01 17:20:26,824 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 17:20:26,826 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 17:20:27,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:27,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:27,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:27,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:20:27,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:20:27,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:28,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:28,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:28,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:28,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:20:28,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:20:28,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:29,162 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:29,187 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:29,271 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.923 +2025-10-01 17:20:29,272 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 17:20:29,272 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:20:30,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:30,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:30,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:30,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:20:30,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:20:30,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:31,271 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:31,295 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:31,370 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.117 +2025-10-01 17:20:31,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:20:31,371 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:20:32,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:32,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:32,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:32,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:20:32,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:20:32,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:33,283 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:33,309 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:33,389 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.087 +2025-10-01 17:20:33,389 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:20:33,390 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:20:33,647 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:33,681 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:33,767 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.012 +2025-10-01 17:20:33,768 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:20:33,768 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:20:33,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:33,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:34,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:34,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:20:34,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:20:34,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:36,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:36,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:36,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:36,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:20:36,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:20:36,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:37,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:37,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:37,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:37,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:20:37,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:20:37,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:37,255 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:37,277 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:37,347 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=13.814 +2025-10-01 17:20:37,347 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 17:20:37,348 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 17:20:37,662 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:37,687 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:37,768 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.429 +2025-10-01 17:20:37,768 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:20:37,769 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:20:39,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:39,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:39,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:40,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:20:40,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:20:40,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:40,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:40,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:40,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:40,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:20:40,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:20:40,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:41,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:41,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:41,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:41,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:20:41,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:20:41,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:41,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:41,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:41,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:41,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:20:41,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:20:41,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:41,756 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:41,772 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:41,851 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.386 +2025-10-01 17:20:41,852 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:20:41,852 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:20:43,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:43,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:43,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:43,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:20:43,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:20:43,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:44,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:44,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:44,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:44,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:20:44,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:20:44,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:45,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:45,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:45,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:45,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:20:45,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:20:45,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:45,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:45,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:45,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:45,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:20:45,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:20:45,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:46,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:46,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:46,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:46,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:20:46,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:20:46,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:48,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:48,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:49,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:49,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:20:49,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:20:49,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:49,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:49,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:49,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:49,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:20:49,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:20:49,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:49,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:49,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:50,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:50,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:20:50,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:20:50,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:52,437 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:20:52,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:20:52,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:20:52,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.324s +2025-10-01 17:20:52,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.324s (avg: 0.162s/image) +2025-10-01 17:20:52,762 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:20:52,973 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:20:52,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:20:53,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:20:53,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-01 17:20:53,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-01 17:20:53,243 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:20:53,573 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:20:53,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:20:53,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:20:53,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-01 17:20:53,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-01 17:20:53,843 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:20:54,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:54,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:54,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:54,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:20:54,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:20:54,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:54,276 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:54,291 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(875, 875, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:54,371 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.216 +2025-10-01 17:20:54,371 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:20:54,372 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:20:55,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:55,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:55,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:56,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:20:56,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:20:56,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:56,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:56,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:57,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:57,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:20:57,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:20:57,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:57,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:57,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:57,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:57,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:20:57,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:20:57,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:58,363 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:20:58,386 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(875, 875, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:20:58,474 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.345 +2025-10-01 17:20:58,474 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 17:20:58,475 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 17:20:58,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:58,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:58,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:58,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 17:20:58,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 17:20:58,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:20:59,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:20:59,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:20:59,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:20:59,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:20:59,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:20:59,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:00,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:00,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:00,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:00,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:21:00,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:21:00,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:00,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:00,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:00,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:01,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:21:01,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:21:01,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:01,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:01,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:01,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:01,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:21:01,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:21:01,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:02,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:02,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:02,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:02,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:21:02,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:21:02,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:02,517 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:21:02,539 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(875, 875, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:21:02,623 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.603 +2025-10-01 17:21:02,624 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:21:02,626 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:21:03,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:03,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:03,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:03,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 17:21:03,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 17:21:03,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:04,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:04,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:04,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:04,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:21:04,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:21:04,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:04,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:04,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:04,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:04,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:21:04,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:21:04,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:04,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:04,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:04,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:05,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:21:05,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:21:05,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:05,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:05,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:05,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:05,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:21:05,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:21:05,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:06,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:06,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:06,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:06,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:21:06,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:21:06,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:08,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:08,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:08,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:08,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:21:08,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:21:08,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:09,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:09,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:09,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:09,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:21:09,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:21:09,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:10,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:10,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:10,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:10,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:21:10,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:21:10,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:10,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:10,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:10,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:10,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:21:10,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:21:10,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:12,063 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:21:12,097 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:21:12,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.329 +2025-10-01 17:21:12,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:21:12,180 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:21:13,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:13,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:13,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:13,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 17:21:13,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 17:21:13,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:14,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:14,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:14,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:14,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:21:14,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:21:14,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:16,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:16,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:16,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:16,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:21:16,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:21:16,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:17,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:17,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:17,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:17,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 17:21:17,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 17:21:17,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:19,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:19,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:19,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:19,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:21:19,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:21:19,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:19,636 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:21:19,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:21:19,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:21:19,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 17:21:19,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 17:21:19,934 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:21:20,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:20,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:20,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:20,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:21:20,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:21:20,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:20,850 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:21:20,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:21:20,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:21:21,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +2025-10-01 17:21:21,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.159s/image) +2025-10-01 17:21:21,169 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:21:21,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:21,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:21,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:21,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:21:21,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:21:21,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:23,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:23,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:24,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:24,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:21:24,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:21:24,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:24,600 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:21:24,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:21:24,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:21:24,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 17:21:24,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-01 17:21:24,903 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:21:25,375 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:21:25,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:21:25,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:21:25,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 17:21:25,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 17:21:25,681 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:21:26,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:26,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:26,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:26,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:21:26,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:21:26,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:28,812 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:21:28,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:21:28,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:21:29,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 17:21:29,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 17:21:29,094 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:21:29,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:29,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:29,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:29,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:21:29,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:21:29,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:29,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:29,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:29,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:29,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 17:21:29,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 17:21:29,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:30,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:30,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:30,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:30,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:21:30,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:21:30,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:32,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:32,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:32,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:32,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:21:32,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:21:32,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:33,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:33,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:33,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:34,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:21:34,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:21:34,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:34,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:34,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:34,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:34,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:21:34,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:21:34,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:34,591 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:21:34,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:21:34,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:21:34,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 17:21:34,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 17:21:34,889 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:21:35,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:35,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:35,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:35,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:21:35,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:21:35,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:36,379 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:21:36,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:21:36,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:21:36,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.318s +2025-10-01 17:21:36,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.318s (avg: 0.159s/image) +2025-10-01 17:21:36,698 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:21:37,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:37,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:37,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:37,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:21:37,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:21:37,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:38,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:38,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:38,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:38,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:21:38,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:21:38,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:42,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:42,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:42,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:42,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:21:42,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:21:42,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:42,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:42,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:42,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:42,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:21:42,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:21:42,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:43,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:43,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:43,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:43,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:21:43,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:21:43,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:43,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:43,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:43,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:44,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:21:44,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:21:44,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:44,228 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:21:44,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:21:44,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:21:44,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.316s +2025-10-01 17:21:44,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.316s (avg: 0.158s/image) +2025-10-01 17:21:44,547 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:21:44,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:44,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:44,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:44,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:21:44,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:21:44,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:46,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:46,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:46,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:46,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:21:46,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:21:46,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:47,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:47,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:47,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:47,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:21:47,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:21:47,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:47,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:47,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:47,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:47,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:21:47,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:21:47,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:49,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:49,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:49,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:49,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:21:49,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:21:49,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:50,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:50,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:50,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:50,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:21:50,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:21:50,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:50,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:50,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:50,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:50,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:21:50,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:21:50,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:51,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:51,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:51,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:52,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:21:52,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:21:52,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:52,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:52,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:52,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:53,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:21:53,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:21:53,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:53,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:53,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:53,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:53,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:21:53,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:21:53,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:54,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:54,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:54,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:54,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:21:54,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:21:54,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:56,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:56,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:56,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:56,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:21:56,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:21:56,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:21:56,893 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:21:56,909 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:21:56,991 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.090 +2025-10-01 17:21:56,991 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:21:56,991 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:21:57,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:21:57,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:21:57,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:21:57,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:21:57,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:21:57,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:00,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:00,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:00,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:00,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:22:00,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:22:00,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:01,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:01,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:01,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:01,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:22:01,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:22:01,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:01,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:01,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:01,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:01,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:22:01,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:22:01,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:03,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:03,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:03,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:03,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:22:03,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:22:03,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:04,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:04,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:04,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:04,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:22:04,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:22:04,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:05,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:05,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:05,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:05,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:22:05,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:22:05,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:05,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:05,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:05,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:06,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:22:06,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:22:06,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:08,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:08,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:08,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:08,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:22:08,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:22:08,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:09,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:09,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:09,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:10,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:22:10,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:22:10,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:10,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:10,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:10,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:10,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:22:10,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:22:10,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:10,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:10,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:10,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:10,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:22:10,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:22:10,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:13,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:13,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:13,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:13,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:22:13,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:22:13,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:14,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:14,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:14,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:14,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:22:14,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:22:14,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:14,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:14,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:14,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:14,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-01 17:22:14,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-01 17:22:14,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:14,743 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:22:14,759 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:22:14,835 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.865 +2025-10-01 17:22:14,835 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:22:14,836 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:22:18,924 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:22:18,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:22:19,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:22:19,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.347s +2025-10-01 17:22:19,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.347s (avg: 0.173s/image) +2025-10-01 17:22:19,273 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:22:19,402 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:22:19,422 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:22:19,494 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.618 +2025-10-01 17:22:19,494 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 17:22:19,494 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 17:22:19,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:19,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:19,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:19,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:22:19,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:22:19,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:19,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:19,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:19,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:20,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:22:20,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:22:20,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:20,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:20,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:20,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:20,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:22:20,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:22:20,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:21,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:21,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:21,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:21,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:22:21,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:22:21,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:23,388 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:22:23,412 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:22:23,506 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.468 +2025-10-01 17:22:23,507 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 17:22:23,507 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 17:22:24,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:24,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:24,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:24,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:22:24,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:22:24,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:24,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:24,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:24,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:24,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:22:24,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:22:24,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:24,822 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:22:24,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:22:24,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:22:25,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 17:22:25,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 17:22:25,116 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:22:25,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:25,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:25,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:25,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:22:25,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:22:25,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:25,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:25,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:25,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:26,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 17:22:26,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 17:22:26,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:26,824 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:22:26,849 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(830, 830, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:22:26,936 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.029 +2025-10-01 17:22:26,936 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:22:26,936 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:22:29,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:29,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:29,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:29,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:22:29,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:22:29,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:29,700 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:22:29,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:22:29,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:22:29,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 17:22:29,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 17:22:29,996 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:22:30,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:30,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:30,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:31,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:22:31,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:22:31,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:32,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:32,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:32,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:32,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 17:22:32,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 17:22:32,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:36,410 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:22:36,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:22:36,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:22:36,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 17:22:36,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 17:22:36,710 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:22:38,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:38,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:38,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:38,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:22:38,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:22:38,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:40,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:40,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:40,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:40,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 17:22:40,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 17:22:40,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:40,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:40,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:40,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:40,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:22:40,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:22:40,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:42,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:42,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:42,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:42,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:22:42,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:22:42,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:43,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:43,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:43,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:43,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:22:43,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:22:43,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:44,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:44,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:44,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:44,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:22:44,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:22:44,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:47,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:47,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:48,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:48,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:22:48,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:22:48,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:48,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:48,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:48,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:48,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:22:48,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:22:48,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:48,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:48,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:48,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:48,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 17:22:48,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 17:22:48,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:49,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:49,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:49,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:49,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:22:49,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:22:49,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:51,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:51,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:51,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:51,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:22:51,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:22:51,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:52,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:52,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:52,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:52,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:22:52,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:22:52,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:22:53,889 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:22:53,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:22:53,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:22:54,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.330s +2025-10-01 17:22:54,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.330s (avg: 0.165s/image) +2025-10-01 17:22:54,220 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:22:55,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:22:55,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:22:55,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:22:56,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:22:56,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:22:56,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:01,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:01,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:01,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:01,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:23:01,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:23:01,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:01,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:01,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:01,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:02,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:23:02,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:23:02,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:02,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:02,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:02,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:02,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:23:02,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:23:02,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:03,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:03,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:03,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:03,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:23:03,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:23:03,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:05,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:05,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:05,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:05,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:23:05,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:23:05,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:07,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:07,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:07,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:07,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:23:07,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:23:07,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:08,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:08,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:08,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:08,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:23:08,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:23:08,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:08,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:08,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:08,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:08,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:23:08,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:23:08,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:09,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:09,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:09,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:09,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:23:09,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:23:09,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:09,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:09,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:09,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:09,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:23:09,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:23:09,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:10,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:10,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:10,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:10,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:23:10,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:23:10,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:11,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:11,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:11,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:11,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:23:11,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:23:11,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:13,566 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:13,597 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:13,701 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.704 +2025-10-01 17:23:13,702 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 17:23:13,703 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 17:23:13,777 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:13,797 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:13,882 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.865 +2025-10-01 17:23:13,883 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 17:23:13,883 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:23:14,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:14,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:14,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:14,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:23:14,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:23:14,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:14,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:14,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:14,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:14,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:23:14,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:23:14,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:17,373 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:17,400 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:17,477 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.673 +2025-10-01 17:23:17,477 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:23:17,477 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:23:17,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:17,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:17,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:17,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 17:23:17,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 17:23:17,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:17,914 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:17,932 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:18,007 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.343 +2025-10-01 17:23:18,008 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:23:18,008 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:23:19,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:19,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:19,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:19,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:23:19,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:23:19,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:19,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:19,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:19,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:19,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:23:19,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:23:19,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:20,901 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:20,923 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:21,006 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=202.092 +2025-10-01 17:23:21,006 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:23:21,006 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:23:21,261 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:21,284 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:21,362 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=8.918 +2025-10-01 17:23:21,362 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:23:21,363 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:23:24,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:24,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:24,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:24,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:23:24,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:23:24,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:25,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:25,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:25,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:25,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:23:25,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:23:25,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:27,895 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:27,926 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:28,006 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.550 +2025-10-01 17:23:28,007 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:23:28,007 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:23:28,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:28,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:28,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:28,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:23:28,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:23:28,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:28,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:28,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:28,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:28,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 17:23:28,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 17:23:28,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:31,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:31,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:31,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:31,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:23:31,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:23:31,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:31,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:31,950 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:32,032 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.410 +2025-10-01 17:23:32,032 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:23:32,032 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:23:33,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:33,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:33,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:33,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:23:33,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:23:33,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:34,330 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:34,354 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:34,432 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.527 +2025-10-01 17:23:34,432 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:23:34,432 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:23:34,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:34,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:34,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:34,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:23:34,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:23:34,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:35,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:35,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:35,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:36,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:23:36,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:23:36,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:36,046 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:36,071 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:36,147 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.570 +2025-10-01 17:23:36,148 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:23:36,148 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:23:36,680 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:36,704 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(620, 755, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:36,774 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.969 +2025-10-01 17:23:36,774 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 17:23:36,774 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 17:23:38,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:38,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:38,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:39,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:23:39,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:23:39,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:39,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:39,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:39,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:40,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:23:40,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:23:40,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:40,270 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:40,288 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:40,360 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.198 +2025-10-01 17:23:40,361 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:23:40,361 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:23:43,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:43,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:43,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:44,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:23:44,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:23:44,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:44,319 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:44,343 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:44,429 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.352 +2025-10-01 17:23:44,429 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:23:44,430 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:23:44,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:44,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:44,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:44,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 17:23:44,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 17:23:44,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:45,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:45,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:45,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:45,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:23:45,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:23:45,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:48,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:48,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:48,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:48,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:23:48,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:23:48,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:50,014 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:50,035 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:50,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.271 +2025-10-01 17:23:50,122 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:23:50,122 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:23:50,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:50,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:50,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:51,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 17:23:51,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 17:23:51,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:53,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:53,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:53,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:53,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:23:53,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:23:53,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:53,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:53,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:53,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:53,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:23:53,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:23:53,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:53,657 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:53,671 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:53,744 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.600 +2025-10-01 17:23:53,744 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:23:53,744 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:23:55,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:55,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:55,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:55,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:23:55,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:23:55,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:23:56,931 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:23:56,953 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:23:57,027 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.370 +2025-10-01 17:23:57,028 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:23:57,028 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:23:58,045 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:23:58,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:23:58,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:23:58,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.449s +2025-10-01 17:23:58,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.449s (avg: 0.150s/image) +2025-10-01 17:23:58,496 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:23:59,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:23:59,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:23:59,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:23:59,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:23:59,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:23:59,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:01,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:01,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:01,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:01,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:24:01,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:24:01,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:02,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:02,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:02,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:02,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:24:02,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:24:02,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:02,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:02,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:02,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:02,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:24:02,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:24:02,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:03,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:03,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:03,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:03,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:24:03,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:24:03,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:05,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:05,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:05,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:06,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:24:06,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:24:06,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:06,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:06,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:06,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:06,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:24:06,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:24:06,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:07,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:07,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:07,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:07,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:24:07,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:24:07,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:07,918 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:24:07,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:24:07,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:24:08,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 17:24:08,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 17:24:08,195 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:24:08,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:08,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:08,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:08,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:24:08,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:24:08,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:09,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:09,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:09,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:09,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:24:09,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:24:09,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:11,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:11,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:11,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:11,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:24:11,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:24:11,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:11,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:11,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:12,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:12,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:24:12,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:24:12,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:12,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:12,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:12,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:12,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:24:12,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:24:12,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:13,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:13,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:13,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:13,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:24:13,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:24:13,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:14,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:14,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:14,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:14,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 17:24:14,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 17:24:14,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:14,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:14,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:14,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:14,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:24:14,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:24:14,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:16,336 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:24:16,363 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:24:16,447 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.515 +2025-10-01 17:24:16,448 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:24:16,448 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:24:16,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:16,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:16,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:16,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:24:16,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:24:16,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:17,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:17,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:17,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:17,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:24:17,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:24:17,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:18,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:18,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:18,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:19,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:24:19,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:24:19,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:19,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:19,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:19,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:19,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:24:19,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:24:19,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:19,966 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:24:19,990 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:24:20,077 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.085 +2025-10-01 17:24:20,077 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 17:24:20,077 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:24:20,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:20,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:20,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:20,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:24:20,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:24:20,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:22,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:22,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:22,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:22,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:24:22,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:24:22,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:23,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:23,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:23,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:23,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:24:23,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:24:23,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:24,007 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:24:24,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:24:24,099 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.987 +2025-10-01 17:24:24,099 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:24:24,099 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:24:24,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:24,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:24,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:24,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:24:24,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:24:24,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:25,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:25,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:25,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:25,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:24:25,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:24:25,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:27,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:27,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:27,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:27,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:24:27,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:24:27,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:27,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:27,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:27,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:27,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:24:27,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:24:27,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:28,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:28,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:28,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:28,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:24:28,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:24:28,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:29,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:29,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:29,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:29,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:24:29,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:24:29,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:31,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:31,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:31,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:31,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:24:31,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:24:31,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:33,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:33,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:33,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:33,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:24:33,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:24:33,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:35,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:35,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:35,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:35,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:24:35,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:24:35,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:35,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:35,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:35,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:36,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:24:36,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:24:36,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:36,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:36,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:36,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:36,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:24:36,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:24:36,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:37,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:37,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:37,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:37,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:24:37,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:24:37,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:38,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:38,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:38,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:38,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:24:38,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:24:38,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:39,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:39,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:39,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:39,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:24:39,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:24:39,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:40,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:40,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:40,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:40,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:24:40,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:24:40,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:42,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:42,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:42,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:42,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:24:42,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:24:42,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:43,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:43,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:43,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:43,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:24:43,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:24:43,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:43,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:43,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:43,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:43,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:24:43,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:24:43,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:44,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:44,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:44,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:44,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:24:44,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:24:44,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:46,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:46,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:46,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:46,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:24:46,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:24:46,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:48,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:48,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:48,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:48,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:24:48,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:24:48,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:48,986 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:24:48,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:24:49,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:24:49,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 17:24:49,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 17:24:49,285 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:24:50,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:50,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:50,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:51,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:24:51,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:24:51,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:51,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:51,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:51,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:51,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:24:51,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:24:51,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:51,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:51,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:51,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:51,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:24:51,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:24:51,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:52,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:52,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:52,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:52,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:24:52,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:24:52,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:53,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:53,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:53,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:53,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:24:53,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:24:53,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:53,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:53,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:53,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:53,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:24:53,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:24:53,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:55,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:55,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:55,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:55,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:24:55,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:24:55,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:57,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:57,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:57,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:57,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:24:57,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:24:57,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:58,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:24:58,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:24:58,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:24:58,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:24:58,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:24:58,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:24:58,516 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:24:58,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:24:58,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:24:58,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 17:24:58,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-01 17:24:58,791 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:25:00,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:00,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:00,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:00,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-01 17:25:00,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-01 17:25:00,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:01,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:01,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:01,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:01,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:25:01,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:25:01,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:02,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:02,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:02,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:02,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:25:02,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:25:02,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:02,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:02,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:02,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:02,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 17:25:02,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 17:25:02,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:03,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:03,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:03,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:03,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:25:03,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:25:03,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:04,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:04,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:04,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:04,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:25:04,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:25:04,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:06,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:06,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:06,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:06,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:25:06,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:25:06,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:07,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:07,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:07,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:07,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:25:07,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:25:07,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:08,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:08,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:08,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:09,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 17:25:09,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 17:25:09,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:09,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:09,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:09,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:09,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:25:09,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:25:09,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:12,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:12,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:12,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:12,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:25:12,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:25:12,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:13,486 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:25:13,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:25:13,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:25:13,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 17:25:13,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 17:25:13,762 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:25:15,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:15,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:15,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:15,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:25:15,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:25:15,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:18,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:18,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:18,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:18,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:25:18,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:25:18,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:19,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:19,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:19,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:19,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:25:19,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:25:19,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:20,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:20,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:20,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:20,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:25:20,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:25:20,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:20,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:20,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:20,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:20,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:25:20,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:25:20,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:21,146 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:25:21,167 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:25:21,242 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.872 +2025-10-01 17:25:21,242 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:25:21,242 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:25:22,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:22,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:22,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:23,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:25:23,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:25:23,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:23,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:23,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:24,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:24,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:25:24,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:25:24,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:25,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:25,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:25,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:26,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:25:26,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:25:26,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:27,323 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:25:27,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:25:27,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:25:27,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 17:25:27,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 17:25:27,612 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:25:29,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:29,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:29,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:29,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 17:25:29,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 17:25:29,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:32,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:32,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:32,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:32,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:25:32,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:25:32,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:32,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:32,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:32,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:32,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:25:32,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:25:32,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:33,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:33,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:33,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:33,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:25:33,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:25:33,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:33,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:33,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:33,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:33,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:25:33,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:25:33,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:33,994 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:25:34,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:25:34,110 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.580 +2025-10-01 17:25:34,110 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 17:25:34,110 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:25:36,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:36,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:36,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:36,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:25:36,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:25:36,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:37,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:37,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:37,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:37,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 17:25:37,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 17:25:37,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:38,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:38,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:38,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:38,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:25:38,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:25:38,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:38,481 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:25:38,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:25:38,583 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.680 +2025-10-01 17:25:38,583 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:25:38,583 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:25:40,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:40,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:40,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:40,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:25:40,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:25:40,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:40,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:40,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:40,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:41,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:25:41,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:25:41,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:41,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:41,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:41,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:42,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:25:42,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:25:42,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:43,016 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:25:43,045 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:25:43,126 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.522 +2025-10-01 17:25:43,126 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:25:43,126 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:25:43,531 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:25:43,560 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:25:43,636 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.416 +2025-10-01 17:25:43,637 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:25:43,637 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:25:47,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:47,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:47,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:47,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:25:47,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:25:47,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:48,312 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:25:48,353 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:25:48,430 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.601 +2025-10-01 17:25:48,430 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:25:48,430 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:25:49,044 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:25:49,060 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:25:49,129 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.368 +2025-10-01 17:25:49,129 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 17:25:49,130 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 17:25:49,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:49,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:49,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:49,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:25:49,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:25:49,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:49,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:49,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:49,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:49,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 17:25:49,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 17:25:49,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:51,926 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:25:51,949 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:25:52,025 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.583 +2025-10-01 17:25:52,026 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:25:52,026 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:25:52,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:52,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:52,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:53,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:25:53,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:25:53,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:53,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:53,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:54,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:54,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:25:54,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:25:54,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:54,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:54,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:54,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:54,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:25:54,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:25:54,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:56,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:25:56,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:25:56,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:25:56,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:25:56,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:25:56,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:25:56,933 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:25:56,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:25:56,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:25:57,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 17:25:57,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 17:25:57,213 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:26:00,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:00,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:00,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:00,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:26:00,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:26:00,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:00,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:00,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:00,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:00,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:26:00,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:26:00,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:02,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:02,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:02,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:03,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:26:03,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:26:03,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:03,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:03,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:03,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:03,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 17:26:03,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 17:26:03,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:04,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:04,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:04,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:04,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:26:04,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:26:04,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:04,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:04,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:05,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:05,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:26:05,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:26:05,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:06,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:06,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:06,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:06,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:26:06,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:26:06,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:08,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:08,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:08,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:08,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:26:08,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:26:08,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:08,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:08,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:08,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:08,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:26:08,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:26:08,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:08,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:08,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:08,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:08,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:26:08,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:26:08,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:09,035 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:26:09,065 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:26:09,142 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.850 +2025-10-01 17:26:09,142 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:26:09,142 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:26:09,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:09,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:09,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:09,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:26:09,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:26:09,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:11,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:11,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:11,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:11,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:26:11,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:26:11,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:12,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:12,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:12,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:12,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:26:12,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:26:12,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:12,337 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:26:12,361 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:26:12,439 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.278 +2025-10-01 17:26:12,439 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:26:12,439 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:26:13,588 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:26:13,632 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:26:13,711 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.388 +2025-10-01 17:26:13,711 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:26:13,711 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:26:14,947 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:26:14,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:26:15,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:26:15,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 17:26:15,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 17:26:15,235 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:26:15,387 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:26:15,418 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(918, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:26:15,502 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.191 +2025-10-01 17:26:15,502 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:26:15,502 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:26:16,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:16,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:16,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:16,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:26:16,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:26:16,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:16,701 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:26:16,735 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:26:16,821 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.555 +2025-10-01 17:26:16,821 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 17:26:16,821 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:26:17,509 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:26:17,535 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:26:17,613 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.029 +2025-10-01 17:26:17,613 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:26:17,613 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:26:17,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:17,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:17,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:17,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:26:17,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:26:17,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:18,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:18,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:18,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:18,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:26:18,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:26:18,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:18,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:18,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:18,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:18,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:26:18,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:26:18,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:19,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:19,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:19,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:19,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:26:19,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:26:19,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:20,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:20,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:20,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:20,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:26:20,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:26:20,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:21,546 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:26:21,576 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:26:21,654 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.335 +2025-10-01 17:26:21,655 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:26:21,655 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:26:21,826 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:26:21,871 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(918, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:26:21,955 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.123 +2025-10-01 17:26:21,956 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 17:26:21,956 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:26:23,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:23,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:23,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:23,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:26:23,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:26:23,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:23,848 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:26:23,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:26:23,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:26:24,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 17:26:24,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 17:26:24,133 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:26:24,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:24,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:24,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:24,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:26:24,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:26:24,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:28,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:28,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:28,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:28,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:26:28,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:26:28,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:29,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:29,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:29,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:29,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:26:29,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:26:29,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:29,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:29,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:29,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:29,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:26:29,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:26:29,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:29,877 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:26:29,905 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(857, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:26:29,988 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.731 +2025-10-01 17:26:29,988 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:26:29,988 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:26:30,180 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:26:30,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:26:30,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:26:30,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 17:26:30,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 17:26:30,486 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:26:31,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:31,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:31,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:31,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:26:31,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:26:31,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:34,005 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:26:34,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:26:34,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:26:34,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 17:26:34,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 17:26:34,287 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:26:34,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:34,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:34,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:34,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 17:26:34,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 17:26:34,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:34,894 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:26:34,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:26:34,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:26:35,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.250s +2025-10-01 17:26:35,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.250s (avg: 0.125s/image) +2025-10-01 17:26:35,145 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:26:37,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:37,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:37,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:37,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:26:37,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:26:37,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:38,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:38,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:38,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:38,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:26:38,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:26:38,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:39,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:39,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:39,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:39,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:26:39,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:26:39,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:40,150 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:26:40,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:26:40,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:26:40,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 17:26:40,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 17:26:40,433 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:26:40,840 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:26:40,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:26:40,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:26:41,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-01 17:26:41,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.128s/image) +2025-10-01 17:26:41,098 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:26:43,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:43,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:43,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:43,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:26:43,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:26:43,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:44,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:44,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:44,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:44,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:26:44,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:26:44,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:45,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:45,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:45,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:45,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:26:45,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:26:45,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:45,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:45,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:45,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:46,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:26:46,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:26:46,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:46,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:46,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:46,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:47,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:26:47,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:26:47,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:50,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:50,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:50,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:50,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:26:50,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:26:50,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:50,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:50,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:50,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:50,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:26:50,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:26:50,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:51,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:51,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:52,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:52,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:26:52,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:26:52,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:53,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:53,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:53,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:53,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:26:53,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:26:53,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:53,923 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:26:53,938 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:26:54,020 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.926 +2025-10-01 17:26:54,021 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:26:54,021 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:26:54,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:54,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:54,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:54,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:26:54,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:26:54,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:54,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:54,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:54,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:55,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:26:55,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:26:55,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:56,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:56,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:57,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:57,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:26:57,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:26:57,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:57,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:57,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:57,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:57,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:26:57,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:26:57,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:26:57,561 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:26:57,583 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:26:57,654 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.409 +2025-10-01 17:26:57,654 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 17:26:57,654 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 17:26:57,969 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:26:57,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:26:58,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:26:58,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-01 17:26:58,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-01 17:26:58,236 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:26:59,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:26:59,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:26:59,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:26:59,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:26:59,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:26:59,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:00,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:27:00,814 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 988, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:27:00,907 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.207 +2025-10-01 17:27:00,907 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 17:27:00,908 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 17:27:01,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:01,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:01,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:01,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:27:01,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:27:01,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:02,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:02,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:02,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:02,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:27:02,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:27:02,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:03,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:03,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:03,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:03,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:27:03,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:27:03,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:04,733 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:27:04,762 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:27:04,858 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=218.886 +2025-10-01 17:27:04,858 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 17:27:04,858 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 17:27:06,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:06,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:06,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:06,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:27:06,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:27:06,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:06,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:06,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:07,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:07,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:27:07,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:27:07,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:08,963 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:27:08,990 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(771, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:27:09,073 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=201.829 +2025-10-01 17:27:09,073 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:27:09,073 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:27:10,113 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:27:10,131 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:27:10,208 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.980 +2025-10-01 17:27:10,208 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:27:10,208 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:27:10,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:10,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:10,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:10,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:27:10,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:27:10,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:11,174 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:27:11,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:27:11,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:27:11,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 17:27:11,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 17:27:11,466 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:27:12,469 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:27:12,493 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(698, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:27:12,566 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.855 +2025-10-01 17:27:12,566 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:27:12,566 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:27:13,273 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:27:13,292 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:27:13,367 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.647 +2025-10-01 17:27:13,368 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:27:13,368 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:27:14,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:14,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:14,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:14,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:27:14,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:27:14,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:15,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:15,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:15,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:15,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:27:15,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:27:15,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:16,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:16,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:16,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:16,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:27:16,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:27:16,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:16,489 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:27:16,515 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:27:16,591 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.880 +2025-10-01 17:27:16,591 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:27:16,592 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:27:17,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:17,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:17,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:17,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 17:27:17,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 17:27:17,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:20,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:20,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:20,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:20,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:27:20,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:27:20,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:20,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:20,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:21,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:21,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:27:21,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:27:21,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:21,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:21,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:21,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:22,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:27:22,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:27:22,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:22,329 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:27:22,351 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:27:22,433 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.814 +2025-10-01 17:27:22,433 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:27:22,433 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:27:22,689 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:27:22,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:27:22,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:27:22,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 17:27:22,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 17:27:22,973 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:27:24,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:24,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:24,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:24,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:27:24,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:27:24,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:25,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:25,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:25,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:25,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:27:25,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:27:25,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:25,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:25,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:25,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:25,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:27:25,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:27:25,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:26,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:26,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:26,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:26,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:27:26,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:27:26,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:27,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:27,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:27,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:27,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:27:27,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:27:27,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:27,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:27,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:27,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:27,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:27:27,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:27:27,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:29,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:29,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:29,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:29,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:27:29,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:27:29,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:29,908 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:27:29,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:27:29,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:27:30,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 17:27:30,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 17:27:30,198 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:27:30,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:30,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:30,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:30,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:27:30,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:27:30,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:33,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:33,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:33,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:33,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:27:33,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:27:33,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:33,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:33,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:33,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:34,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:27:34,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:27:34,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:34,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:34,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:34,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:34,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:27:34,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:27:34,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:35,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:35,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:35,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:35,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:27:35,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:27:35,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:36,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:36,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:36,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:36,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:27:36,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:27:36,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:39,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:39,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:39,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:39,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:27:39,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:27:39,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:40,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:40,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:40,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:40,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:27:40,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:27:40,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:40,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:40,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:40,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:40,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:27:40,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:27:40,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:42,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:42,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:42,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:42,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:27:42,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:27:42,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:44,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:44,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:44,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:44,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:27:44,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:27:44,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:44,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:44,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:44,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:44,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:27:44,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:27:44,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:44,698 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:27:44,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:27:44,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:27:44,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +2025-10-01 17:27:44,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +2025-10-01 17:27:44,960 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:27:45,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:45,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:45,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:45,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:27:45,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:27:45,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:45,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:45,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:45,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:45,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:27:45,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:27:45,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:47,622 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:27:47,642 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:27:47,721 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.045 +2025-10-01 17:27:47,722 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:27:47,722 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:27:48,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:48,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:48,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:49,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:27:49,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:27:49,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:49,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:49,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:49,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:49,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:27:49,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:27:49,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:49,790 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:27:49,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:27:49,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:27:50,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 17:27:50,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.131s/image) +2025-10-01 17:27:50,054 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:27:50,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:50,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:50,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:50,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:27:50,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:27:50,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:51,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:27:51,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:27:51,590 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.910 +2025-10-01 17:27:51,590 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:27:51,591 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:27:54,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:54,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:54,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:54,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:27:54,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:27:54,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:54,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:54,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:54,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:54,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:27:54,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:27:54,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:55,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:55,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:55,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:55,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:27:55,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:27:55,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:55,831 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:27:55,840 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(620, 620, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:27:55,903 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.780 +2025-10-01 17:27:55,904 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.063s +2025-10-01 17:27:55,904 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.064s +2025-10-01 17:27:56,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:56,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:56,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:56,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:27:56,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:27:56,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:56,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:56,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:56,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:56,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:27:56,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:27:56,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:27:59,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:27:59,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:27:59,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:27:59,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:27:59,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:27:59,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:00,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:00,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:00,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:00,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:28:00,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:28:00,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:00,563 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:28:00,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:28:00,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:28:00,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 17:28:00,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 17:28:00,870 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:28:01,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:01,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:01,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:01,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:28:01,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:28:01,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:01,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:01,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:02,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:02,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:28:02,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:28:02,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:04,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:04,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:04,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:04,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:28:04,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:28:04,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:05,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:05,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:05,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:05,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:28:05,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:28:05,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:05,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:05,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:05,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:05,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:28:05,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:28:05,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:06,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:06,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:06,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:06,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:28:06,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:28:06,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:08,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:08,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:08,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:08,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:28:08,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:28:08,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:08,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:08,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:08,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:09,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:28:09,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:28:09,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:09,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:09,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:09,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:09,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:28:09,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:28:09,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:11,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:11,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:11,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:11,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:28:11,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:28:11,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:12,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:12,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:12,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:12,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:28:12,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:28:12,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:13,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:13,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:13,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:13,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:28:13,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:28:13,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:13,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:13,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:13,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:14,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:28:14,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:28:14,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:14,772 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:28:14,800 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:28:14,883 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=177.061 +2025-10-01 17:28:14,883 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:28:14,883 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:28:15,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:15,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:15,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:15,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:28:15,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:28:15,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:16,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:16,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:16,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:16,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:28:16,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:28:16,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:17,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:17,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:17,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:17,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 17:28:17,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 17:28:17,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:17,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:17,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:18,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:18,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:28:18,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:28:18,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:18,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:18,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:18,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:18,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:28:18,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:28:18,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:19,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:19,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:19,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:19,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:28:19,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:28:19,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:19,340 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:28:19,359 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:28:19,432 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.844 +2025-10-01 17:28:19,433 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:28:19,433 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:28:21,730 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:28:21,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:28:21,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:28:22,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 17:28:22,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 17:28:22,009 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:28:22,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:22,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:22,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:22,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:28:22,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:28:22,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:23,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:23,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:23,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:23,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:28:23,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:28:23,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:23,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:23,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:23,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:23,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:28:23,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:28:23,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:25,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:25,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:25,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:25,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:28:25,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:28:25,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:26,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:26,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:26,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:26,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:28:26,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:28:26,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:27,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:27,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:27,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:27,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:28:27,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:28:27,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:28,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:28,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:28,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:28,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:28:28,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:28:28,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:28,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:28,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:28,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:28,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:28:28,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:28:28,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:29,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:29,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:29,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:29,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:28:29,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:28:29,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:30,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:30,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:30,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:30,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:28:30,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:28:30,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:31,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:31,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:31,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:31,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:28:31,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:28:31,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:32,495 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:28:32,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:28:32,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:28:32,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 17:28:32,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 17:28:32,784 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:28:33,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:33,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:33,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:33,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:28:33,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:28:33,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:34,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:34,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:34,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:34,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:28:34,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:28:34,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:34,852 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:28:34,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:28:34,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:28:35,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +2025-10-01 17:28:35,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +2025-10-01 17:28:35,117 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:28:35,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:35,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:36,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:36,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +2025-10-01 17:28:36,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +2025-10-01 17:28:36,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:37,271 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:28:37,300 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:28:37,371 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.279 +2025-10-01 17:28:37,371 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 17:28:37,372 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 17:28:37,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:37,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:37,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:37,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:28:37,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:28:37,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:38,445 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:28:38,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:28:38,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:28:38,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 17:28:38,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 17:28:38,738 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:28:38,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:38,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:38,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:39,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:28:39,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:28:39,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:39,762 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:28:39,784 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:28:39,860 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.433 +2025-10-01 17:28:39,860 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:28:39,860 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:28:40,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:40,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:40,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:40,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:28:40,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:28:40,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:40,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:40,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:40,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:40,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:28:40,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:28:40,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:41,475 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:28:41,501 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:28:41,579 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.994 +2025-10-01 17:28:41,579 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:28:41,580 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:28:41,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:41,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:41,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:42,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:28:42,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:28:42,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:42,632 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:28:42,668 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:28:42,756 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.132 +2025-10-01 17:28:42,756 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:28:42,756 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:28:43,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:43,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:43,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:43,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:28:43,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:28:43,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:43,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:43,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:43,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:43,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:28:43,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:28:43,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:43,952 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:28:43,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:28:44,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:28:44,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-01 17:28:44,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +2025-10-01 17:28:44,274 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:28:44,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:44,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:44,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:44,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:28:44,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:28:44,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:45,627 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:28:45,652 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:28:45,733 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.556 +2025-10-01 17:28:45,733 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:28:45,733 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:28:46,061 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:28:46,094 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:28:46,184 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.442 +2025-10-01 17:28:46,184 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 17:28:46,184 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 17:28:47,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:47,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:47,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:47,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:28:47,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:28:47,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:48,263 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:28:48,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:28:48,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:28:48,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 17:28:48,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 17:28:48,545 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:28:49,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:49,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:49,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:49,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:28:49,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:28:49,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:49,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:49,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:49,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:49,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:28:49,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:28:49,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:50,058 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:28:50,093 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:28:50,178 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.988 +2025-10-01 17:28:50,178 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:28:50,178 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:28:50,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:50,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:50,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:50,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:28:50,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:28:50,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:51,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:51,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:51,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:51,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:28:51,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:28:51,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:53,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:53,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:53,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:53,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:28:53,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:28:53,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:53,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:53,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:53,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:53,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:28:53,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:28:53,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:54,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:54,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:54,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:54,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:28:54,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:28:54,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:54,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:54,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:54,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:54,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:28:54,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:28:54,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:55,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:55,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:55,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:55,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:28:55,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:28:55,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:55,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:55,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:55,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:55,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:28:55,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:28:55,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:56,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:56,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:56,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:56,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:28:56,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:28:56,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:57,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:57,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:57,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:58,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:28:58,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:28:58,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:58,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:58,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:58,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:59,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:28:59,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:28:59,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:59,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:59,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:59,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:59,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:28:59,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:28:59,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:28:59,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:28:59,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:28:59,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:28:59,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:28:59,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:28:59,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:02,015 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:29:02,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:29:02,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:29:02,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 17:29:02,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 17:29:02,306 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:29:03,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:03,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:03,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:03,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:29:03,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:29:03,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:05,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:05,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:05,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:05,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:29:05,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:29:05,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:06,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:06,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:06,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:06,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:29:06,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:29:06,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:07,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:07,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:07,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:07,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:29:07,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:29:07,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:07,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:07,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:07,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:07,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:29:07,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:29:07,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:08,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:08,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:08,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:08,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:29:08,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:29:08,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:09,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:09,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:09,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:09,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:29:09,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:29:09,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:10,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:10,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:10,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:10,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:29:10,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:29:10,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:11,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:11,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:11,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:11,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:29:11,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:29:11,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:12,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:12,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:12,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:12,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:29:12,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:29:12,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:14,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:14,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:14,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:14,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:29:14,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:29:14,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:15,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:15,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:15,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:15,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:29:15,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:29:15,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:15,623 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:29:15,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:29:15,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:29:15,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 17:29:15,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-01 17:29:15,927 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:29:16,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:16,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:16,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:16,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:29:16,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:29:16,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:17,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:17,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:17,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:18,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:29:18,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:29:18,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:20,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:20,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:20,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:21,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:29:21,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:29:21,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:21,294 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:29:21,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:29:21,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:29:21,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 17:29:21,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 17:29:21,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:29:22,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:22,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:22,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:22,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:29:22,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:29:22,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:24,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:24,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:24,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:24,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:29:24,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:29:24,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:24,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:24,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:24,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:24,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:29:24,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:29:24,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:25,255 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:29:25,277 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:29:25,359 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.029 +2025-10-01 17:29:25,360 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:29:25,360 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:29:27,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:27,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:27,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:27,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:29:27,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:29:27,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:28,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:28,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:28,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:28,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:29:28,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:29:28,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:28,970 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:29:28,991 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:29:29,063 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.431 +2025-10-01 17:29:29,063 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 17:29:29,063 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:29:29,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:29,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:29,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:29,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:29:29,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:29:29,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:31,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:31,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:31,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:31,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:29:31,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:29:31,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:33,437 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:29:33,459 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(786, 786, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:29:33,537 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.319 +2025-10-01 17:29:33,537 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:29:33,537 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:29:33,742 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:29:33,762 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:29:33,838 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.039 +2025-10-01 17:29:33,838 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:29:33,838 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:29:33,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:33,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:33,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:34,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:29:34,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:29:34,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:34,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:34,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:35,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:35,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:29:35,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:29:35,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:35,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:35,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:35,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:35,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:29:35,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:29:35,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:36,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:36,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:36,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:36,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:29:36,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:29:36,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:37,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:37,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:37,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:37,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:29:37,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:29:37,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:38,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:38,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:38,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:38,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:29:38,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:29:38,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:40,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:40,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:40,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:40,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:29:40,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:29:40,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:40,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:40,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:40,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:40,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:29:40,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:29:40,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:42,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:42,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:42,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:42,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:29:42,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:29:42,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:43,539 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:29:43,558 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:29:43,633 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.136 +2025-10-01 17:29:43,633 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:29:43,633 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:29:44,032 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:29:44,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:29:44,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:29:44,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-01 17:29:44,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.133s/image) +2025-10-01 17:29:44,298 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:29:45,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:45,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:45,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:45,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 17:29:45,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 17:29:45,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:46,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:46,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:46,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:46,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:29:46,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:29:46,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:48,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:48,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:48,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:48,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:29:48,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:29:48,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:48,833 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:29:48,852 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:29:48,925 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.285 +2025-10-01 17:29:48,925 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:29:48,925 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:29:49,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:49,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:49,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:49,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:29:49,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:29:49,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:50,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:50,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:50,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:50,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:29:50,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:29:50,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:51,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:51,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:51,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:51,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:29:51,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:29:51,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:52,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:52,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:52,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:52,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:29:52,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:29:52,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:52,756 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:29:52,782 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:29:52,856 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.050 +2025-10-01 17:29:52,857 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:29:52,857 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:29:54,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:54,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:54,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:54,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:29:54,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:29:54,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:55,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:55,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:55,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:55,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:29:55,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:29:55,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:56,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:56,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:56,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:56,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:29:56,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:29:56,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:57,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:57,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:57,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:57,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:29:57,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:29:57,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:57,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:57,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:57,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:57,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:29:57,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:29:57,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:58,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:58,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:58,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:58,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:29:58,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:29:58,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:29:58,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:29:58,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:29:58,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:29:58,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:29:58,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:29:58,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:01,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:01,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:01,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:01,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:30:01,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:30:01,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:01,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:01,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:01,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:01,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:30:01,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:30:01,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:03,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:03,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:03,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:03,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:30:03,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:30:03,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:04,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:04,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:04,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:04,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:30:04,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:30:04,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:04,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:04,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:04,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:04,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:30:04,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:30:04,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:04,963 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:30:04,986 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:30:05,063 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.037 +2025-10-01 17:30:05,063 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:30:05,063 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:30:05,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:05,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:05,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:05,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:30:05,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:30:05,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:05,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:05,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:05,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:05,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:30:05,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:30:05,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:08,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:08,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:08,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:08,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:30:08,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:30:08,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:08,838 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:30:08,854 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:30:08,940 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=13.561 +2025-10-01 17:30:08,940 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 17:30:08,940 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:30:09,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:09,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:09,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:09,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:30:09,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:30:09,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:09,831 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:30:09,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:30:09,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:30:10,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-01 17:30:10,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-01 17:30:10,103 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:30:11,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:11,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:11,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:11,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:30:11,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:30:11,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:12,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:12,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:12,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:12,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:30:12,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:30:12,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:12,647 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:30:12,665 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(756, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:30:12,738 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.287 +2025-10-01 17:30:12,739 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:30:12,739 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:30:13,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:13,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:13,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:13,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:30:13,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:30:13,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:14,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:14,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:14,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:14,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:30:14,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:30:14,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:14,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:14,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:14,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:14,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:30:14,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:30:14,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:15,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:15,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:15,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:15,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:30:15,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:30:15,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:17,043 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:30:17,073 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:30:17,152 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.273 +2025-10-01 17:30:17,152 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:30:17,152 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:30:17,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:17,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:17,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:17,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:30:17,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:30:17,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:17,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:17,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:17,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:17,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:30:17,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:30:17,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:19,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:19,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:19,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:19,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:30:19,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:30:19,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:21,456 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:30:21,490 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:30:21,572 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.380 +2025-10-01 17:30:21,573 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:30:21,573 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:30:22,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:22,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:22,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:22,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:30:22,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:30:22,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:23,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:23,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:23,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:23,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:30:23,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:30:23,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:24,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:24,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:24,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:24,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:30:24,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:30:24,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:24,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:24,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:24,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:25,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:30:25,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:30:25,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:25,092 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:30:25,108 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:30:25,178 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=164.904 +2025-10-01 17:30:25,178 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 17:30:25,178 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 17:30:25,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:25,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:25,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:25,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 17:30:25,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 17:30:25,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:26,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:26,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:26,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:26,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:30:26,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:30:26,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:26,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:26,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:26,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:26,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:30:26,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:30:26,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:27,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:27,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:27,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:27,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:30:27,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:30:27,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:28,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:28,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:28,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:28,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:30:28,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:30:28,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:30,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:30,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:30,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:30,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:30:30,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:30:30,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:31,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:31,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:31,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:31,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:30:31,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:30:31,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:33,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:33,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:33,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:33,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:30:33,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:30:33,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:33,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:33,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:33,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:33,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:30:33,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:30:33,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:35,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:35,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:35,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:35,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:30:35,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:30:35,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:36,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:36,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:36,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:36,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:30:36,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:30:36,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:39,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:39,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:39,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:39,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:30:39,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:30:39,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:39,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:39,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:40,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:40,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:30:40,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:30:40,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:40,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:40,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:40,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:40,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:30:40,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:30:40,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:41,469 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:30:41,489 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:30:41,567 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.022 +2025-10-01 17:30:41,568 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:30:41,568 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:30:43,133 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:30:43,160 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:30:43,240 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.038 +2025-10-01 17:30:43,241 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:30:43,241 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:30:43,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:43,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:43,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:43,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:30:43,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:30:43,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:43,894 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:30:43,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:30:43,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:30:44,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 17:30:44,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 17:30:44,173 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:30:44,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:44,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:44,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:44,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:30:44,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:30:44,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:44,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:44,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:44,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:44,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:30:44,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:30:44,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:45,532 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:30:45,552 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:30:45,632 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.362 +2025-10-01 17:30:45,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:30:45,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:30:46,824 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:30:46,857 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:30:46,939 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.162 +2025-10-01 17:30:46,940 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:30:46,940 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:30:47,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:47,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:47,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:47,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:30:47,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:30:47,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:48,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:48,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:48,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:48,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:30:48,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:30:48,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:48,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:48,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:48,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:48,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:30:48,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:30:48,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:50,141 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:30:50,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:30:50,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:30:50,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 17:30:50,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 17:30:50,431 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:30:50,900 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:30:50,940 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:30:51,020 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.706 +2025-10-01 17:30:51,020 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:30:51,020 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:30:51,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:51,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:51,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:51,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:30:51,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:30:51,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:52,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:52,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:52,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:52,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:30:52,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:30:52,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:52,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:52,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:52,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:52,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 17:30:52,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 17:30:52,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:52,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:52,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:52,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:53,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:30:53,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:30:53,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:54,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:54,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:54,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:54,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:30:54,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:30:54,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:54,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:54,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:54,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:54,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 17:30:54,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 17:30:54,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:55,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:55,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:55,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:55,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:30:55,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:30:55,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:57,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:57,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:57,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:57,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:30:57,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:30:57,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:57,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:57,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:57,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:57,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:30:57,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:30:57,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:57,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:30:57,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:30:58,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:30:58,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:30:58,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:30:58,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:30:59,390 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:30:59,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:30:59,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:30:59,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 17:30:59,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 17:30:59,697 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:31:00,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:00,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:00,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:00,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:31:00,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:31:00,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:00,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:00,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:00,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:00,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:31:00,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:31:00,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:03,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:03,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:03,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:03,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:31:03,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:31:03,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:03,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:03,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:03,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:04,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:31:04,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:31:04,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:04,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:04,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:04,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:04,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:31:04,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:31:04,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:04,655 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:31:04,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:31:04,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:31:04,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 17:31:04,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 17:31:04,947 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:31:05,007 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:31:05,025 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:31:05,100 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=169.360 +2025-10-01 17:31:05,100 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:31:05,101 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:31:06,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:06,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:06,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:06,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:31:06,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:31:06,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:07,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:07,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:07,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:07,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:31:07,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:31:07,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:08,158 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:31:08,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:31:08,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:31:08,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.312s +2025-10-01 17:31:08,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.312s (avg: 0.156s/image) +2025-10-01 17:31:08,472 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:31:08,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:08,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:08,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:09,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:31:09,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:31:09,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:12,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:12,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:12,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:12,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:31:12,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:31:12,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:13,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:13,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:13,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:13,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:31:13,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:31:13,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:13,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:13,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:13,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:13,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:31:13,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:31:13,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:13,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:13,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:13,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:13,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:31:13,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:31:13,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:14,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:14,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:15,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:15,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:31:15,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:31:15,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:17,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:17,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:17,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:18,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:31:18,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:31:18,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:18,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:18,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:18,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:18,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:31:18,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:31:18,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:18,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:18,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:18,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:18,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:31:18,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:31:18,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:18,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:18,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:18,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:19,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:31:19,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:31:19,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:19,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:19,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:19,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:19,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:31:19,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:31:19,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:20,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:20,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:20,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:21,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:31:21,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:31:21,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:21,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:21,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:21,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:21,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:31:21,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:31:21,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:22,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:22,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:22,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:22,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:31:22,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:31:22,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:24,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:24,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:24,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:24,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:31:24,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:31:24,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:24,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:24,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:24,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:24,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:31:24,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:31:24,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:25,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:25,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:25,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:25,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:31:25,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:31:25,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:28,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:28,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:28,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:28,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:31:28,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:31:28,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:29,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:29,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:29,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:29,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:31:29,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:31:29,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:30,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:30,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:30,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:30,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:31:30,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:31:30,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:34,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:34,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:34,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:34,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:31:34,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:31:34,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:34,294 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:31:34,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:31:34,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:31:34,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 17:31:34,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 17:31:34,571 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:31:36,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:36,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:36,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:36,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:31:36,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:31:36,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:36,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:36,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:37,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:37,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:31:37,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:31:37,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:39,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:39,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:39,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:40,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:31:40,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:31:40,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:40,356 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:31:40,393 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:31:40,481 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.264 +2025-10-01 17:31:40,482 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 17:31:40,482 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 17:31:41,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:41,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:41,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:41,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:31:41,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:31:41,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:42,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:42,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:42,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:42,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:31:42,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:31:42,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:46,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:46,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:47,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:47,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:31:47,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:31:47,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:47,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:47,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:47,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:47,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:31:47,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:31:47,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:47,964 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:31:48,007 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:31:48,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.340 +2025-10-01 17:31:48,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:31:48,086 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:31:50,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:50,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:50,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:51,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:31:51,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:31:51,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:51,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:51,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:51,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:51,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:31:51,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:31:51,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:51,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:51,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:51,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:51,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:31:51,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:31:51,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:52,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:52,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:52,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:52,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:31:52,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:31:52,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:52,710 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:31:52,734 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:31:52,812 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.473 +2025-10-01 17:31:52,812 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:31:52,813 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:31:53,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:53,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:53,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:53,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:31:53,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:31:53,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:57,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:57,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:57,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:57,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:31:57,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:31:57,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:58,313 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:31:58,342 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:31:58,417 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.344 +2025-10-01 17:31:58,417 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:31:58,417 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:31:58,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:58,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:58,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:58,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:31:58,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:31:58,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:31:59,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:31:59,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:31:59,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:31:59,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:31:59,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:31:59,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:03,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:03,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:03,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:03,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:32:03,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:32:03,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:04,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:04,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:04,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:04,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:32:04,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:32:04,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:06,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:06,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:06,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:06,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:32:06,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:32:06,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:06,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:06,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:06,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:07,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:32:07,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:32:07,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:07,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:07,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:07,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:07,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:32:07,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:32:07,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:07,866 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:32:07,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:32:07,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:32:08,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.256s +2025-10-01 17:32:08,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.256s (avg: 0.128s/image) +2025-10-01 17:32:08,124 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:32:09,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:09,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:09,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:10,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:32:10,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:32:10,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:15,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:15,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:15,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:15,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:32:15,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:32:15,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:15,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:15,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:15,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:15,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:32:15,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:32:15,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:16,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:16,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:16,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:16,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:32:16,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:32:16,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:17,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:17,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:17,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:17,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:32:17,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:32:17,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:18,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:18,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:18,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:18,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:32:18,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:32:18,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:19,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:19,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:19,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:19,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:32:19,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:32:19,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:20,387 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:32:20,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:32:20,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:32:20,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.255s +2025-10-01 17:32:20,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.255s (avg: 0.128s/image) +2025-10-01 17:32:20,644 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:32:21,465 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:32:21,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:32:21,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:32:21,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 17:32:21,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 17:32:21,754 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:32:22,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:22,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:22,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:22,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:32:22,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:32:22,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:22,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:22,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:22,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:22,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:32:22,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:32:22,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:22,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:22,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:22,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:22,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:32:22,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:32:22,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:23,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:23,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:23,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:23,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:32:23,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:32:23,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:23,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:23,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:23,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:23,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:32:23,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:32:23,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:25,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:25,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:25,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:26,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:32:26,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:32:26,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:26,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:26,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:26,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:26,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:32:26,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:32:26,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:27,520 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:32:27,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:32:27,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:32:27,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 17:32:27,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 17:32:27,793 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:32:30,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:30,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:30,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:30,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:32:30,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:32:30,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:30,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:30,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:30,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:30,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:32:30,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:32:30,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:31,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:31,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:31,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:32,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:32:32,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:32:32,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:32,188 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:32:32,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:32:32,311 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.917 +2025-10-01 17:32:32,311 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 17:32:32,311 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 17:32:33,226 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:32:33,262 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(889, 881, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:32:33,343 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.590 +2025-10-01 17:32:33,344 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:32:33,344 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:32:33,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:33,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:33,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:34,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:32:34,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:32:34,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:35,678 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:32:35,690 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(606, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:32:35,754 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.152 +2025-10-01 17:32:35,754 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.063s +2025-10-01 17:32:35,754 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.064s +2025-10-01 17:32:35,818 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:32:35,839 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:32:35,913 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.176 +2025-10-01 17:32:35,913 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:32:35,913 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:32:36,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:36,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:36,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:36,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:32:36,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:32:36,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:37,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:37,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:37,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:37,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:32:37,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:32:37,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:37,426 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:32:37,458 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:32:37,533 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.897 +2025-10-01 17:32:37,534 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:32:37,534 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:32:40,228 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:32:40,247 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 629, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:32:40,321 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.234 +2025-10-01 17:32:40,321 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:32:40,321 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:32:40,481 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:32:40,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:32:40,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:32:40,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 17:32:40,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 17:32:40,774 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:32:41,150 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:32:41,178 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:32:41,257 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.780 +2025-10-01 17:32:41,257 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:32:41,257 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:32:42,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:42,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:42,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:42,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:32:42,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:32:42,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:44,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:44,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:44,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:44,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:32:44,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:32:44,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:46,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:46,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:46,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:46,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:32:46,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:32:46,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:47,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:47,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:47,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:47,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:32:47,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:32:47,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:49,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:49,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:49,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:49,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:32:49,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:32:49,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:51,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:51,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:51,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:51,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:32:51,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:32:51,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:51,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:51,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:51,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:51,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:32:51,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:32:51,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:32:56,668 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:32:56,705 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:32:56,791 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.599 +2025-10-01 17:32:56,791 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:32:56,791 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:32:57,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:32:57,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:32:57,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:32:57,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:32:57,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:32:57,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:00,523 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:33:00,549 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(892, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:33:00,634 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=1.946 +2025-10-01 17:33:00,635 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 17:33:00,635 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:33:02,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:02,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:02,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:02,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:33:02,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:33:02,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:03,435 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:33:03,457 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:33:03,534 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.337 +2025-10-01 17:33:03,534 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:33:03,534 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:33:03,578 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:33:03,596 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:33:03,667 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.407 +2025-10-01 17:33:03,668 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 17:33:03,668 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 17:33:06,834 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:33:06,863 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:33:06,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.650 +2025-10-01 17:33:06,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:33:06,946 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:33:07,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:07,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:07,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:07,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:33:07,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:33:07,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:09,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:09,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:09,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:09,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:33:09,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:33:09,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:10,900 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:33:10,928 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:33:11,003 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.932 +2025-10-01 17:33:11,004 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:33:11,004 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:33:11,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:11,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:12,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:12,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:33:12,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:33:12,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:13,445 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:33:13,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:33:13,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:33:13,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 17:33:13,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 17:33:13,739 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:33:14,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:14,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:14,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:14,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:33:14,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:33:14,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:15,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:15,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:15,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:15,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:33:15,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:33:15,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:15,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:15,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:15,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:15,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:33:15,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:33:15,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:19,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:19,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:19,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:19,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:33:19,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:33:19,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:19,798 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:33:19,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:33:19,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:33:20,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 17:33:20,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 17:33:20,095 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:33:20,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:20,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:20,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:21,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:33:21,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:33:21,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:26,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:26,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:26,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:26,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:33:26,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:33:26,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:27,252 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:33:27,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:33:27,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:33:27,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 17:33:27,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 17:33:27,546 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:33:27,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:27,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:27,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:27,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:33:27,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:33:27,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:28,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:28,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:28,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:28,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:33:28,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:33:28,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:28,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:28,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:28,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:28,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:33:28,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:33:28,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:30,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:30,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:30,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:30,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:33:30,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:33:30,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:33,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:33,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:33,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:33,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:33:33,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:33:33,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:34,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:34,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:34,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:34,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:33:34,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:33:34,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:34,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:34,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:34,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:34,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:33:34,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:33:34,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:35,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:35,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:35,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:35,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:33:35,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:33:35,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:39,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:39,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:39,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:39,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:33:39,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:33:39,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:40,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:40,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:40,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:40,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:33:40,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:33:40,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:40,389 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:33:40,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:33:40,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:33:40,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 17:33:40,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 17:33:40,673 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:33:40,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:40,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:40,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:41,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:33:41,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:33:41,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:41,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:41,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:41,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:41,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:33:41,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:33:41,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:44,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:44,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:44,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:44,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:33:44,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:33:44,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:44,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:44,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:44,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:45,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:33:45,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:33:45,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:47,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:47,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:47,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:47,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:33:47,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:33:47,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:49,597 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:33:49,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:33:49,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:33:49,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 17:33:49,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 17:33:49,894 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:33:51,139 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:33:51,163 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:33:51,245 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.295 +2025-10-01 17:33:51,246 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:33:51,246 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:33:51,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:51,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:51,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:51,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:33:51,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:33:51,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:52,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:52,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:52,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:52,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:33:52,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:33:52,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:55,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:55,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:55,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:55,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:33:55,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:33:55,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:56,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:56,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:56,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:56,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:33:56,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:33:56,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:33:59,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:33:59,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:33:59,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:33:59,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:33:59,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:33:59,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:00,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:00,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:00,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:00,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:34:00,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:34:00,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:00,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:00,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:00,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:00,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:34:00,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:34:00,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:04,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:04,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:04,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:05,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:34:05,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:34:05,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:05,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:05,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:05,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:05,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:34:05,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:34:05,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:05,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:05,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:05,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:05,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 17:34:05,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 17:34:05,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:06,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:06,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:06,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:06,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:34:06,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:34:06,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:07,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:07,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:07,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:07,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:34:07,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:34:07,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:08,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:08,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:09,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:09,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:34:09,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:34:09,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:09,223 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:09,241 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:09,315 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.171 +2025-10-01 17:34:09,315 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:34:09,315 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:34:10,846 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:34:10,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:34:10,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:34:11,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 17:34:11,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 17:34:11,115 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:34:11,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:11,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:11,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:11,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:34:11,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:34:11,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:13,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:13,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:13,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:13,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:34:13,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:34:13,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:14,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:14,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:14,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:14,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:34:14,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:34:14,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:15,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:15,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:15,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:15,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:34:15,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:34:15,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:16,509 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:16,540 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:16,618 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.128 +2025-10-01 17:34:16,618 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:34:16,618 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:34:16,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:16,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:16,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:17,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:34:17,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:34:17,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:17,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:17,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:17,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:17,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:34:17,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:34:17,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:18,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:18,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:18,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:18,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:34:18,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:34:18,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:19,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:19,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:19,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:19,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:34:19,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:34:19,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:20,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:20,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:20,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:20,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:34:20,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:34:20,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:21,042 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:34:21,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:34:21,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:34:21,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-01 17:34:21,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-01 17:34:21,357 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:34:23,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:23,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:23,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:23,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:34:23,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:34:23,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:25,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:25,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:25,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:25,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:34:25,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:34:25,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:27,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:27,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:27,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:27,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:34:27,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:34:27,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:27,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:27,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:27,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:28,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:34:28,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:34:28,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:28,305 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:34:28,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:34:28,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:34:28,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 17:34:28,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 17:34:28,592 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:34:30,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:30,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:30,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:30,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:34:30,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:34:30,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:32,157 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:34:32,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:34:32,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:34:32,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 17:34:32,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +2025-10-01 17:34:32,461 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:34:33,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:33,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:33,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:33,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:34:33,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:34:33,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:33,884 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:33,918 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:33,995 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.163 +2025-10-01 17:34:33,996 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:34:33,996 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:34:34,085 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:34,121 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:34,208 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.280 +2025-10-01 17:34:34,209 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 17:34:34,209 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:34:34,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:34,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:34,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:34,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:34:34,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:34:34,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:37,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:37,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:37,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:37,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:34:37,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:34:37,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:39,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:39,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:39,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:39,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:34:39,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:34:39,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:39,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:39,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:39,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:39,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:34:39,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:34:39,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:41,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:41,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:41,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:41,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:34:41,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:34:41,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:41,477 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:41,530 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:41,620 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.434 +2025-10-01 17:34:41,620 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 17:34:41,621 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 17:34:41,651 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:41,671 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:41,746 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.832 +2025-10-01 17:34:41,746 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:34:41,746 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:34:41,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:41,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:41,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:41,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:34:41,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:34:41,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:43,910 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:43,949 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:44,027 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.424 +2025-10-01 17:34:44,027 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:34:44,027 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:34:44,679 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:44,728 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:44,827 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.189 +2025-10-01 17:34:44,827 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 17:34:44,827 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 17:34:46,742 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:46,785 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:46,877 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.323 +2025-10-01 17:34:46,877 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 17:34:46,877 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 17:34:47,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:47,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:47,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:47,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:34:47,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:34:47,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:47,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:47,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:47,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:47,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:34:47,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:34:47,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:48,304 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:48,345 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:48,421 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.409 +2025-10-01 17:34:48,422 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:34:48,422 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:34:49,356 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:34:49,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:34:49,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:34:49,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-01 17:34:49,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-01 17:34:49,627 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:34:50,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:50,592 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:50,677 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.179 +2025-10-01 17:34:50,677 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:34:50,678 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:34:51,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:51,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:51,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:51,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 17:34:51,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 17:34:51,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:53,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:53,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:53,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:53,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:34:53,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:34:53,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:53,674 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:53,689 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:53,767 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.136 +2025-10-01 17:34:53,768 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:34:53,768 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:34:54,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:34:54,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:34:54,894 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.221 +2025-10-01 17:34:54,895 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:34:54,895 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:34:55,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:55,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:55,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:56,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 17:34:56,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 17:34:56,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:56,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:56,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:56,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:56,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:34:56,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:34:56,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:57,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:57,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:57,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:57,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 17:34:57,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 17:34:57,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:34:57,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:34:57,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:34:57,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:34:57,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:34:57,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:34:57,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:01,472 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:35:01,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:35:01,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:35:01,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.312s +2025-10-01 17:35:01,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.312s (avg: 0.156s/image) +2025-10-01 17:35:01,786 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:35:05,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:05,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:05,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:05,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:35:05,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:35:05,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:06,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:06,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:06,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:06,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:35:06,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:35:06,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:06,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:06,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:06,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:06,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:35:06,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:35:06,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:07,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:07,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:07,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:07,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:35:07,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:35:07,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:07,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:07,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:07,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:08,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:35:08,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:35:08,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:11,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:11,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:11,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:11,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:35:11,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:35:11,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:12,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:12,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:12,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:12,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 17:35:12,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 17:35:12,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:13,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:13,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:13,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:13,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:35:13,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:35:13,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:15,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:15,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:15,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:15,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 17:35:15,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 17:35:15,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:16,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:16,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:16,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:16,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:35:16,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:35:16,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:16,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:16,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:16,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:17,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:35:17,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:35:17,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:17,887 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:35:17,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:35:17,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:35:18,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 17:35:18,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 17:35:18,188 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:35:19,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:19,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:19,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:19,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:35:19,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:35:19,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:20,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:20,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:20,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:20,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:35:20,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:35:20,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:20,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:20,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:20,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:20,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:35:20,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:35:20,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:20,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:20,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:20,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:21,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:35:21,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:35:21,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:21,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:21,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:21,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:22,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:35:22,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:35:22,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:22,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:22,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:22,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:22,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:35:22,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:35:22,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:23,142 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:35:23,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:35:23,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:35:23,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 17:35:23,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 17:35:23,441 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:35:24,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:24,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:24,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:24,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:35:24,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:35:24,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:25,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:25,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:25,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:25,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:35:25,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:35:25,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:25,831 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:35:25,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:35:25,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:35:26,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 17:35:26,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 17:35:26,130 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:35:29,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:29,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:29,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:29,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:35:29,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:35:29,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:30,748 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:35:30,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:35:30,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:35:31,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 17:35:31,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.131s/image) +2025-10-01 17:35:31,013 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:35:31,236 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:35:31,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:35:31,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:35:31,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.411s +2025-10-01 17:35:31,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.411s (avg: 0.137s/image) +2025-10-01 17:35:31,649 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:35:32,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:32,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:32,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:32,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:35:32,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:35:32,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:34,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:34,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:34,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:34,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:35:34,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:35:34,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:35,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:35,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:35,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:35,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:35:35,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:35:35,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:36,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:36,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:36,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:36,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:35:36,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:35:36,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:36,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:36,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:36,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:37,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:35:37,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:35:37,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:37,774 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:35:37,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:35:37,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:35:38,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 17:35:38,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-01 17:35:38,083 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:35:39,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:39,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:39,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:39,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:35:39,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:35:39,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:39,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:39,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:39,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:39,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:35:39,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:35:39,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:40,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:40,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:40,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:40,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:35:40,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:35:40,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:42,160 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:35:42,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:35:42,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:35:42,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 17:35:42,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-01 17:35:42,446 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:35:42,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:42,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:42,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:42,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:35:42,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:35:42,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:43,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:43,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:43,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:43,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:35:43,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:35:43,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:43,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:43,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:43,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:43,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:35:43,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:35:43,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:44,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:44,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:44,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:44,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:35:44,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:35:44,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:44,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:44,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:44,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:44,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:35:44,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:35:44,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:44,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:44,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:45,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:45,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:35:45,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:35:45,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:47,434 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:35:47,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:35:47,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:35:47,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 17:35:47,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 17:35:47,740 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:35:48,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:48,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:48,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:48,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:35:48,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:35:48,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:48,583 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:35:48,602 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:35:48,679 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.961 +2025-10-01 17:35:48,680 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:35:48,680 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:35:48,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:48,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:48,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:48,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:35:48,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:35:48,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:49,343 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:35:49,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:35:49,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:35:49,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 17:35:49,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 17:35:49,621 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:35:52,738 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:35:52,786 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:35:52,871 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.719 +2025-10-01 17:35:52,871 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 17:35:52,872 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:35:54,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:54,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:54,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:54,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:35:54,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:35:54,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:55,081 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:35:55,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:35:55,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:35:55,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.426s +2025-10-01 17:35:55,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.426s (avg: 0.142s/image) +2025-10-01 17:35:55,508 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:35:55,612 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:35:55,630 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:35:55,703 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.500 +2025-10-01 17:35:55,703 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:35:55,703 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:35:55,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:35:55,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:35:55,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:35:55,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:35:55,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:35:55,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:35:59,595 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:35:59,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:35:59,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:35:59,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.349s +2025-10-01 17:35:59,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.349s (avg: 0.174s/image) +2025-10-01 17:35:59,946 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:36:00,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:00,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:00,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:00,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:36:00,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:36:00,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:00,508 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:00,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:00,604 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.762 +2025-10-01 17:36:00,605 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:36:00,605 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:36:00,746 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:36:00,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:36:00,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:36:01,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.386s +2025-10-01 17:36:01,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.386s (avg: 0.129s/image) +2025-10-01 17:36:01,133 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:36:02,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:02,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:02,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:02,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:36:02,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:36:02,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:02,306 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:02,324 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:02,400 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.580 +2025-10-01 17:36:02,401 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:36:02,401 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:36:03,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:03,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:03,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:04,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:36:04,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:36:04,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:04,519 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:04,549 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:04,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.725 +2025-10-01 17:36:04,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:36:04,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:36:05,569 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:36:05,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:36:05,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:36:05,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 17:36:05,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 17:36:05,849 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:36:06,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:06,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:06,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:06,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:36:06,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:36:06,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:06,877 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:36:06,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:36:06,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:36:07,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 17:36:07,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 17:36:07,180 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:36:09,452 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:36:09,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:36:09,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:36:09,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 17:36:09,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 17:36:09,734 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:36:09,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:09,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:09,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:10,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:36:10,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:36:10,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:10,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:10,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:10,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:10,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:36:10,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:36:10,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:10,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:10,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:10,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:10,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:36:10,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:36:10,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:14,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:14,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:14,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:14,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:36:14,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:36:14,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:14,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:14,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:14,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:15,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:36:15,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:36:15,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:15,490 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:36:15,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:36:15,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:36:15,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 17:36:15,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 17:36:15,776 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:36:15,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:15,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:15,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:16,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:36:16,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:36:16,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:16,119 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:16,143 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:16,212 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.237 +2025-10-01 17:36:16,212 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 17:36:16,212 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 17:36:16,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:16,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:16,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:16,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:36:16,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:36:16,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:16,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:16,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:16,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:16,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:36:16,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:36:16,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:17,635 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:17,678 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:17,755 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.567 +2025-10-01 17:36:17,755 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:36:17,756 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:36:17,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:17,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:17,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:17,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:36:17,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:36:17,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:19,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:19,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:19,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:19,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:36:19,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:36:19,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:19,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:19,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:19,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:20,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:36:20,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:36:20,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:20,743 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:20,776 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:20,849 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.421 +2025-10-01 17:36:20,849 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:36:20,850 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:36:21,491 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:21,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:21,610 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=156.955 +2025-10-01 17:36:21,610 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:36:21,610 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:36:23,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:23,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:23,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:23,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:36:23,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:36:23,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:23,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:23,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:23,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:23,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:36:23,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:36:23,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:25,678 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:25,708 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:25,783 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=167.012 +2025-10-01 17:36:25,783 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:36:25,784 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:36:25,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:25,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:25,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:25,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:36:25,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:36:25,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:28,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:28,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:28,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:28,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:36:28,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:36:28,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:28,360 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:28,387 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:28,464 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.021 +2025-10-01 17:36:28,465 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:36:28,465 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:36:28,611 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:28,641 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:28,716 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.504 +2025-10-01 17:36:28,716 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:36:28,716 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:36:28,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:28,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:28,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:28,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:36:28,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:36:28,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:29,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:29,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:29,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:29,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:36:29,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:36:29,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:30,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:30,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:30,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:30,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:36:30,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:36:30,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:30,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:30,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:30,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:30,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:36:30,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:36:30,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:32,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:32,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:32,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:32,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:36:32,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:36:32,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:33,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:33,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:33,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:33,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:36:33,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:36:33,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:35,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:35,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:35,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:35,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:36:35,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:36:35,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:36,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:36,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:36,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:36,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:36:36,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:36:36,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:36,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:36,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:36,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:37,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:36:37,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:36:37,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:38,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:38,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:38,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:38,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:36:38,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:36:38,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:38,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:38,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:38,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:38,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:36:38,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:36:38,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:39,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:39,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:39,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:39,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:36:39,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:36:39,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:39,338 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:39,359 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:39,434 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.584 +2025-10-01 17:36:39,435 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:36:39,435 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:36:39,753 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:39,782 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:39,869 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.302 +2025-10-01 17:36:39,869 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:36:39,869 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:36:40,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:40,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:40,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:40,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:36:40,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:36:40,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:42,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:42,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:42,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:42,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:36:42,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:36:42,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:43,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:43,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:43,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:43,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:36:43,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:36:43,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:43,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:43,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:43,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:43,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:36:43,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:36:43,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:44,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:44,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:44,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:44,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:36:44,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:36:44,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:44,633 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:44,653 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(786, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:44,728 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.497 +2025-10-01 17:36:44,728 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:36:44,728 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:36:47,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:47,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:47,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:47,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:36:47,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:36:47,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:47,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:47,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:47,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:47,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:36:47,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:36:47,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:48,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:48,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:48,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:48,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:36:48,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:36:48,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:48,581 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:36:48,611 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(742, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:36:48,690 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.494 +2025-10-01 17:36:48,690 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:36:48,690 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:36:48,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:48,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:48,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:48,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:36:48,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:36:48,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:53,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:53,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:53,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:53,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:36:53,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:36:53,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:54,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:54,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:54,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:54,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:36:54,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:36:54,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:55,757 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:36:55,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:36:55,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:36:56,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.312s +2025-10-01 17:36:56,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.312s (avg: 0.156s/image) +2025-10-01 17:36:56,071 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:36:56,326 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:36:56,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:36:56,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:36:56,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 17:36:56,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 17:36:56,634 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:36:56,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:36:56,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:36:56,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:36:56,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:36:56,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:36:56,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:36:58,031 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:36:58,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:36:58,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:36:58,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 17:36:58,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-01 17:36:58,299 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:37:01,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:01,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:01,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:01,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:37:01,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:37:01,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:01,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:01,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:01,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:01,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:37:01,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:37:01,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:01,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:01,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:01,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:02,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:37:02,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:37:02,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:02,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:02,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:02,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:02,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:37:02,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:37:02,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:02,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:02,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:02,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:02,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:37:02,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:37:02,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:03,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:03,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:03,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:03,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:37:03,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:37:03,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:03,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:03,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:03,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:03,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:37:03,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:37:03,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:03,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:03,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:03,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:04,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:37:04,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:37:04,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:04,391 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:37:04,406 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:37:04,474 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.222 +2025-10-01 17:37:04,474 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 17:37:04,474 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 17:37:04,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:04,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:04,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:04,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:37:04,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:37:04,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:05,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:05,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:05,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:05,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:37:05,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:37:05,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:06,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:06,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:06,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:06,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:37:06,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:37:06,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:06,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:06,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:06,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:06,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:37:06,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:37:06,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:06,961 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:37:06,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:37:07,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:37:07,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 17:37:07,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 17:37:07,268 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:37:09,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:09,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:09,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:09,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:37:09,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:37:09,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:09,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:09,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:09,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:10,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:37:10,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:37:10,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:10,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:10,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:10,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:10,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:37:10,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:37:10,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:10,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:10,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:10,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:10,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:37:10,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:37:10,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:11,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:11,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:11,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:11,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:37:11,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:37:11,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:12,042 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:37:12,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:37:12,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:37:12,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 17:37:12,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 17:37:12,348 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:37:12,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:12,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:12,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:12,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:37:12,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:37:12,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:13,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:13,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:13,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:13,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:37:13,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:37:13,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:14,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:14,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:14,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:14,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:37:14,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:37:14,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:14,678 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:37:14,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:37:14,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:37:14,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 17:37:14,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 17:37:14,969 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:37:16,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:16,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:16,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:16,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:37:16,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:37:16,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:17,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:17,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:17,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:17,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:37:17,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:37:17,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:17,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:17,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:17,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:17,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:37:17,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:37:17,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:18,319 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:37:18,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:37:18,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:37:18,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 17:37:18,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 17:37:18,603 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:37:18,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:18,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:18,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:18,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:37:18,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:37:18,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:19,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:19,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:19,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:19,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:37:19,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:37:19,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:21,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:21,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:21,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:21,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:37:21,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:37:21,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:23,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:23,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:23,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:23,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:37:23,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:37:23,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:23,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:23,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:23,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:23,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:37:23,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:37:23,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:23,914 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:37:23,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:37:23,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:37:24,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 17:37:24,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 17:37:24,209 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:37:24,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:24,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:24,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:24,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:37:24,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:37:24,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:26,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:26,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:26,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:26,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:37:26,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:37:26,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:27,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:27,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:27,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:28,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:37:28,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:37:28,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:29,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:29,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:29,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:29,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:37:29,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:37:29,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:30,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:30,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:30,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:30,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:37:30,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:37:30,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:32,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:32,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:32,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:32,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 17:37:32,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 17:37:32,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:33,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:33,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:33,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:33,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:37:33,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:37:33,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:33,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:33,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:33,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:33,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:37:33,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:37:33,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:34,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:34,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:34,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:34,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:37:34,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:37:34,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:35,106 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:37:35,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:37:35,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:37:35,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 17:37:35,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 17:37:35,412 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:37:35,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:35,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:35,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:36,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:37:36,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:37:36,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:37,038 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:37:37,060 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:37:37,142 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.169 +2025-10-01 17:37:37,142 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:37:37,142 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:37:38,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:38,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:38,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:38,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:37:38,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:37:38,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:38,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:38,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:38,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:38,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:37:38,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:37:38,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:40,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:40,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:40,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:40,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:37:40,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:37:40,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:40,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:40,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:40,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:40,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:37:40,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:37:40,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:41,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:41,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:41,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:41,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:37:41,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:37:41,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:41,367 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:37:41,379 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(676, 676, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:37:41,446 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.659 +2025-10-01 17:37:41,446 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 17:37:41,447 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s +2025-10-01 17:37:41,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:41,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:41,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:41,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:37:41,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:37:41,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:41,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:41,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:41,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:41,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:37:41,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:37:41,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:41,991 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:37:42,008 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:37:42,078 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.454 +2025-10-01 17:37:42,078 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 17:37:42,079 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 17:37:42,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:42,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:42,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:42,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:37:42,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:37:42,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:43,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:43,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:43,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:43,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:37:43,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:37:43,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:44,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:44,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:44,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:44,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:37:44,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:37:44,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:45,046 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:37:45,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:37:45,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:37:45,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 17:37:45,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 17:37:45,322 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:37:45,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:45,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:45,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:46,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:37:46,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:37:46,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:46,122 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:37:46,141 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:37:46,214 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.426 +2025-10-01 17:37:46,214 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:37:46,215 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:37:47,338 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:37:47,362 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:37:47,438 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.119 +2025-10-01 17:37:47,438 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:37:47,438 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:37:48,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:48,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:48,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:48,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:37:48,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:37:48,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:48,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:48,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:48,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:48,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:37:48,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:37:48,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:48,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:48,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:48,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:48,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:37:48,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:37:48,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:49,430 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:37:49,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:37:49,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:37:49,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 17:37:49,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 17:37:49,737 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:37:50,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:50,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:50,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:50,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:37:50,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:37:50,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:51,136 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:37:51,173 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:37:51,254 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.936 +2025-10-01 17:37:51,254 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:37:51,254 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:37:51,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:51,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:51,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:52,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:37:52,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:37:52,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:52,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:52,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:52,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:52,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:37:52,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:37:52,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:54,899 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:37:54,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:37:54,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:37:55,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 17:37:55,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 17:37:55,208 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:37:55,288 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:37:55,307 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:37:55,381 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.276 +2025-10-01 17:37:55,381 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:37:55,381 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:37:56,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:56,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:56,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:56,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:37:56,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:37:56,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:57,502 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:37:57,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:37:57,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:37:57,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 17:37:57,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +2025-10-01 17:37:57,807 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:37:58,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:58,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:58,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:58,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:37:58,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:37:58,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:37:59,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:37:59,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:37:59,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:37:59,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:37:59,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:37:59,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:00,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:00,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:00,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:00,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:38:00,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:38:00,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:02,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:02,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:02,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:03,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:38:03,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:38:03,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:04,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:04,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:04,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:04,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:38:04,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:38:04,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:05,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:05,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:05,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:05,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:38:05,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:38:05,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:06,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:06,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:06,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:06,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:38:06,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:38:06,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:07,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:07,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:07,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:07,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:38:07,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:38:07,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:07,982 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:38:08,015 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:38:08,102 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=170.602 +2025-10-01 17:38:08,103 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:38:08,103 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:38:09,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:09,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:09,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:09,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:38:09,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:38:09,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:09,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:09,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:09,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:10,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:38:10,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:38:10,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:10,217 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:38:10,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:38:10,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:38:10,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 17:38:10,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +2025-10-01 17:38:10,522 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:38:11,931 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:38:11,947 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 604, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:38:12,019 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=229.746 +2025-10-01 17:38:12,020 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:38:12,020 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:38:13,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:13,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:13,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:13,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:38:13,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:38:13,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:13,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:13,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:13,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:13,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:38:13,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:38:13,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:15,261 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:38:15,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:38:15,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:38:15,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-01 17:38:15,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.129s/image) +2025-10-01 17:38:15,519 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:38:15,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:15,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:15,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:15,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:38:15,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:38:15,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:15,969 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:38:15,986 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:38:16,058 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=201.813 +2025-10-01 17:38:16,058 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 17:38:16,058 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 17:38:16,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:16,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:16,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:16,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:38:16,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:38:16,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:17,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:17,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:17,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:17,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:38:17,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:38:17,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:18,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:18,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:19,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:19,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:38:19,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:38:19,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:20,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:20,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:20,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:20,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:38:20,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:38:20,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:20,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:20,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:20,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:20,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:38:20,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:38:20,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:21,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:21,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:21,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:21,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:38:21,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:38:21,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:22,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:22,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:22,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:22,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:38:22,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:38:22,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:23,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:23,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:23,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:23,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:38:23,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:38:23,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:24,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:24,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:24,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:24,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:38:24,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:38:24,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:24,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:24,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:24,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:24,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:38:24,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:38:24,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:24,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:24,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:24,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:25,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:38:25,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:38:25,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:28,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:28,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:28,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:28,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:38:28,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:38:28,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:29,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:29,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:29,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:29,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:38:29,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:38:29,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:29,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:29,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:29,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:29,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:38:29,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:38:29,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:30,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:30,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:30,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:30,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:38:30,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:38:30,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:30,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:30,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:30,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:30,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:38:30,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:38:30,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:33,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:33,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:33,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:33,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:38:33,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:38:33,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:34,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:34,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:34,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:34,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:38:34,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:38:34,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:34,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:34,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:34,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:34,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:38:34,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:38:34,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:35,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:35,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:35,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:35,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:38:35,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:38:35,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:35,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:35,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:35,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:35,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:38:35,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:38:35,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:36,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:36,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:36,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:36,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:38:36,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:38:36,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:37,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:37,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:37,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:37,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:38:37,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:38:37,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:37,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:37,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:37,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:37,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:38:37,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:38:37,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:38,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:38,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:38,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:38,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:38:38,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:38:38,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:39,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:39,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:39,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:39,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:38:39,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:38:39,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:39,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:39,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:39,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:39,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:38:39,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:38:39,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:41,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:41,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:41,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:41,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:38:41,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:38:41,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:41,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:41,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:41,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:41,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:38:41,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:38:41,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:42,129 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:38:42,149 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:38:42,222 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=184.053 +2025-10-01 17:38:42,222 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:38:42,222 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:38:42,778 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:38:42,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:38:42,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:38:43,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 17:38:43,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 17:38:43,073 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:38:43,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:43,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:44,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:44,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:38:44,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:38:44,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:45,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:45,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:45,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:45,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:38:45,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:38:45,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:46,023 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:38:46,041 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:38:46,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=195.303 +2025-10-01 17:38:46,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 17:38:46,109 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 17:38:46,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:46,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:46,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:46,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:38:46,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:38:46,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:47,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:47,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:47,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:47,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:38:47,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:38:47,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:49,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:49,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:49,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:49,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:38:49,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:38:49,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:49,834 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:38:49,848 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:38:49,911 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.573 +2025-10-01 17:38:49,911 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.062s +2025-10-01 17:38:49,911 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.063s +2025-10-01 17:38:50,196 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:38:50,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:38:50,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:38:50,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.250s +2025-10-01 17:38:50,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.250s (avg: 0.125s/image) +2025-10-01 17:38:50,448 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:38:50,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:50,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:50,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:50,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:38:50,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:38:51,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:51,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:51,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:51,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:51,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:38:51,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:38:51,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:51,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:51,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:51,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:51,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:38:51,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:38:51,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:52,136 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:38:52,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:38:52,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:38:52,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.322s +2025-10-01 17:38:52,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.322s (avg: 0.161s/image) +2025-10-01 17:38:52,459 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:38:53,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:53,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:53,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:53,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:38:53,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:38:53,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:54,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:54,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:54,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:54,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 17:38:54,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 17:38:54,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:38:56,184 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:38:56,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:38:56,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:38:56,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 17:38:56,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 17:38:56,460 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:38:58,232 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:38:58,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:38:58,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:38:58,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s +2025-10-01 17:38:58,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.323s (avg: 0.162s/image) +2025-10-01 17:38:58,557 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:38:59,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:38:59,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:38:59,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:38:59,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:38:59,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:38:59,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:01,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:01,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:01,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:01,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:39:01,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:39:01,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:02,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:02,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:02,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:02,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:39:02,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:39:02,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:03,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:03,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:03,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:03,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:39:03,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:39:03,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:05,608 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:39:05,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:39:05,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:39:05,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.312s +2025-10-01 17:39:05,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.312s (avg: 0.156s/image) +2025-10-01 17:39:05,921 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:39:06,098 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:39:06,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:39:06,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:39:06,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 17:39:06,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 17:39:06,374 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:39:08,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:08,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:08,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:08,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:39:08,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:39:08,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:09,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:09,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:09,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:09,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:39:09,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:39:09,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:10,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:10,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:10,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:10,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:39:10,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:39:10,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:13,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:13,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:13,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:13,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:39:13,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:39:13,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:14,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:14,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:14,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:14,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:39:14,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:39:14,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:14,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:14,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:14,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:14,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:39:14,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:39:14,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:14,994 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:39:14,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:39:15,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:39:15,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 17:39:15,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 17:39:15,299 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:39:18,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:18,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:18,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:19,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:39:19,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:39:19,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:19,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:19,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:20,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:20,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:39:20,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:39:20,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:20,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:20,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:20,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:20,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:39:20,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:39:20,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:21,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:21,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:21,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:21,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:39:21,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:39:21,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:21,545 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:39:21,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:39:21,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:39:21,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 17:39:21,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 17:39:21,839 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:39:22,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:22,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:22,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:22,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:39:22,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:39:22,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:22,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:22,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:22,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:23,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:39:23,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:39:23,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:23,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:23,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:23,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:23,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:39:23,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:39:23,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:24,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:24,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:24,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:24,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:39:24,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:39:24,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:29,346 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:39:29,386 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:39:29,472 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.829 +2025-10-01 17:39:29,473 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:39:29,473 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:39:30,107 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:39:30,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:39:30,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:39:30,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 17:39:30,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 17:39:30,411 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:39:31,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:31,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:31,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:31,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:39:31,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:39:31,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:32,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:32,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:32,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:32,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:39:32,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:39:32,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:33,220 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:39:33,261 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:39:33,343 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.741 +2025-10-01 17:39:33,343 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:39:33,344 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:39:34,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:34,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:34,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:34,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:39:34,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:39:34,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:34,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:34,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:34,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:34,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:39:34,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:39:34,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:36,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:36,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:36,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:37,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:39:37,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:39:37,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:37,465 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:39:37,496 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:39:37,580 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.756 +2025-10-01 17:39:37,581 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 17:39:37,581 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:39:38,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:38,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:38,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:38,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:39:38,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:39:38,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:39,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:39,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:39,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:39,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:39:39,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:39:39,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:39,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:39,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:39,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:39,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:39:39,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:39:39,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:40,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:40,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:40,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:40,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:39:40,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:39:40,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:43,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:43,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:43,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:43,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 17:39:43,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 17:39:43,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:47,024 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:39:47,059 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:39:47,146 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.727 +2025-10-01 17:39:47,146 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:39:47,146 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:39:48,170 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:39:48,214 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:39:48,296 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.267 +2025-10-01 17:39:48,297 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:39:48,297 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:39:49,295 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:39:49,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:39:49,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:39:49,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 17:39:49,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 17:39:49,583 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:39:52,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:39:52,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:39:52,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:39:52,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 17:39:52,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 17:39:52,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:39:54,387 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:39:54,426 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:39:54,508 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.599 +2025-10-01 17:39:54,508 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:39:54,508 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:39:57,634 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:39:57,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:39:57,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:39:57,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 17:39:57,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 17:39:57,940 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:39:59,595 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:39:59,638 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:39:59,722 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.544 +2025-10-01 17:39:59,722 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:39:59,722 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:40:01,917 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:40:01,948 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:40:02,030 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.822 +2025-10-01 17:40:02,030 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:40:02,030 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:40:02,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:02,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:02,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:02,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:40:02,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:40:02,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:03,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:03,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:03,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:03,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:40:03,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:40:03,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:05,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:05,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:05,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:05,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:40:05,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:40:05,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:06,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:06,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:06,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:06,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 17:40:06,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 17:40:06,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:07,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:07,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:07,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:07,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:40:07,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:40:07,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:07,658 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:40:07,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:40:07,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:40:07,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-01 17:40:07,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-01 17:40:07,929 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:40:07,997 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:40:08,020 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:40:08,095 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.469 +2025-10-01 17:40:08,095 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:40:08,095 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:40:08,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:08,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:08,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:08,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:40:08,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:40:08,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:10,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:10,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:10,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:10,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:40:10,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:40:10,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:11,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:11,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:11,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:11,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:40:11,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:40:11,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:11,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:11,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:11,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:11,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:40:11,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:40:11,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:12,669 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:40:12,712 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:40:12,791 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.937 +2025-10-01 17:40:12,791 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:40:12,791 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:40:14,467 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:40:14,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:40:14,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:40:14,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 17:40:14,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 17:40:14,756 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:40:15,018 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:40:15,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:40:15,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:40:15,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 17:40:15,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 17:40:15,296 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:40:20,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:20,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:20,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:20,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:40:20,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:40:20,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:21,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:21,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:21,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:21,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:40:21,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:40:21,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:22,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:22,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:22,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:22,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 17:40:22,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 17:40:22,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:24,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:24,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:24,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:24,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:40:24,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:40:24,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:25,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:25,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:25,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:25,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:40:25,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:40:25,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:25,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:25,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:25,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:25,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:40:25,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:40:25,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:26,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:26,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:26,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:26,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:40:26,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:40:26,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:26,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:26,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:26,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:26,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:40:26,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:40:26,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:28,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:28,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:28,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:28,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:40:28,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:40:28,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:31,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:31,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:31,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:31,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:40:31,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:40:31,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:32,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:32,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:32,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:32,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:40:32,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:40:32,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:32,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:32,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:33,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:33,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:40:33,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:40:33,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:33,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:33,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:33,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:33,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:40:33,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:40:33,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:34,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:34,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:34,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:34,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:40:34,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:40:34,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:35,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:35,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:35,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:35,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:40:35,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:40:35,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:38,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:38,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:38,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:38,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:40:38,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:40:38,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:38,664 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:40:38,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:40:38,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:40:38,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 17:40:38,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +2025-10-01 17:40:38,969 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:40:39,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:39,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:39,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:40,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:40:40,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:40:40,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:40,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:40,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:40,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:40,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:40:40,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:40:40,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:40,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:40,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:40,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:40,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:40:40,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:40:40,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:41,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:41,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:41,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:41,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:40:41,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:40:41,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:42,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:42,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:42,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:43,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:40:43,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:40:43,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:46,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:46,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:46,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:46,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:40:46,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:40:46,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:47,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:47,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:47,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:47,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:40:47,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:40:47,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:48,954 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:40:48,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:40:49,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:40:49,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 17:40:49,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 17:40:49,250 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:40:49,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:49,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:49,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:49,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:40:49,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:40:49,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:50,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:50,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:50,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:50,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:40:50,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:40:50,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:51,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:51,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:51,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:51,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:40:51,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:40:51,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:52,080 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:40:52,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:40:52,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:40:52,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 17:40:52,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 17:40:52,358 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:40:53,367 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:40:53,383 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:40:53,460 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.731 +2025-10-01 17:40:53,461 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:40:53,461 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:40:53,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:53,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:53,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:53,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:40:53,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:40:53,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:55,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:40:55,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:40:55,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:40:55,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:40:55,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:40:55,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:40:59,922 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:40:59,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:40:59,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:41:00,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-01 17:41:00,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.155s/image) +2025-10-01 17:41:00,233 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:41:02,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:02,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:02,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:02,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:41:02,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:41:02,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:03,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:03,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:03,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:03,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:41:03,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:41:03,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:04,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:04,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:04,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:04,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:41:04,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:41:04,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:04,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:04,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:04,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:04,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:41:04,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:41:04,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:10,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:10,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:10,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:10,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:41:10,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:41:10,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:11,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:11,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:11,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:11,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:41:11,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:41:11,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:13,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:13,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:14,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:14,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:41:14,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:41:14,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:15,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:15,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:15,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:15,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:41:15,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:41:15,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:18,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:18,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:18,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:18,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:41:18,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:41:18,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:18,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:18,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:18,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:18,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:41:18,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:41:18,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:20,256 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:20,298 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:20,384 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.510 +2025-10-01 17:41:20,384 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:41:20,384 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:41:26,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:26,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:26,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:26,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:41:26,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:41:26,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:29,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:29,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:29,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:29,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:41:29,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:41:29,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:29,632 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:41:29,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:41:29,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:41:29,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s +2025-10-01 17:41:29,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image) +2025-10-01 17:41:29,956 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:41:30,395 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:30,433 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:30,516 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.220 +2025-10-01 17:41:30,516 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:41:30,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:41:30,540 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:30,559 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:30,633 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.224 +2025-10-01 17:41:30,633 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:41:30,633 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:41:35,619 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:35,644 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:35,725 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.187 +2025-10-01 17:41:35,725 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:41:35,725 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:41:36,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:36,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:36,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:36,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 17:41:36,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 17:41:36,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:37,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:37,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:37,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:37,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:41:37,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:41:37,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:37,259 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:37,277 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:37,348 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.818 +2025-10-01 17:41:37,348 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 17:41:37,348 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 17:41:40,939 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:40,968 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:41,055 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.168 +2025-10-01 17:41:41,055 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 17:41:41,055 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:41:42,064 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:42,088 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:42,162 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.822 +2025-10-01 17:41:42,163 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:41:42,163 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:41:42,212 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:42,232 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:42,307 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.997 +2025-10-01 17:41:42,308 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:41:42,308 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:41:42,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:42,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:42,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:42,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:41:42,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:41:42,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:44,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:44,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:44,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:44,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:41:44,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:41:44,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:47,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:47,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:47,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:47,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:41:47,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:41:47,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:47,515 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:47,538 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(738, 738, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:47,611 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.341 +2025-10-01 17:41:47,611 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:41:47,611 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:41:47,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:47,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:47,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:47,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:41:47,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:41:47,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:49,435 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:49,472 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:49,555 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.832 +2025-10-01 17:41:49,556 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:41:49,556 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:41:50,446 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:50,485 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:50,568 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=191.919 +2025-10-01 17:41:50,569 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:41:50,569 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:41:51,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:51,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:51,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:51,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:41:51,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:41:51,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:51,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:51,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:51,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:51,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:41:51,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:41:51,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:52,577 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:52,598 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:52,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.708 +2025-10-01 17:41:52,669 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 17:41:52,669 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 17:41:52,711 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:52,733 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:52,814 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.816 +2025-10-01 17:41:52,815 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:41:52,815 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:41:55,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:55,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:55,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:55,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:41:55,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:41:55,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:56,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:56,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:56,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:56,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:41:56,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:41:56,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:56,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:56,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:56,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:57,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:41:57,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:41:57,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:58,380 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:58,417 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:58,497 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.976 +2025-10-01 17:41:58,498 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:41:58,498 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:41:58,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:58,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:58,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:58,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:41:58,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:41:58,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:58,889 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:41:58,912 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:41:58,989 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.970 +2025-10-01 17:41:58,990 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:41:58,990 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:41:59,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:59,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:59,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:59,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:41:59,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:41:59,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:41:59,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:41:59,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:41:59,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:41:59,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:41:59,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:41:59,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:00,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:00,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:00,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:00,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:42:00,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:42:00,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:00,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:00,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:00,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:00,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:42:00,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:42:00,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:03,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:03,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:03,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:03,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:42:03,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:42:03,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:03,341 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:42:03,365 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:42:03,441 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=168.199 +2025-10-01 17:42:03,441 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:42:03,441 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:42:04,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:04,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:04,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:04,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:42:04,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:42:04,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:04,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:04,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:05,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:05,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:42:05,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:42:05,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:05,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:05,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:05,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:05,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:42:05,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:42:05,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:06,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:06,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:06,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:07,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:42:07,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:42:07,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:07,377 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:42:07,408 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:42:07,491 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.506 +2025-10-01 17:42:07,491 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:42:07,491 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:42:09,761 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:42:09,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:42:09,869 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.572 +2025-10-01 17:42:09,869 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:42:09,869 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:42:09,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:09,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:09,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:10,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:42:10,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:42:10,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:13,891 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:42:13,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:42:13,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:42:14,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 17:42:14,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 17:42:14,170 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:42:14,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:14,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:14,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:14,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:42:14,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:42:14,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:14,633 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:42:14,651 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(858, 644, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:42:14,721 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.841 +2025-10-01 17:42:14,721 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 17:42:14,721 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 17:42:16,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:16,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:16,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:16,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:42:16,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:42:16,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:19,457 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:42:19,493 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(888, 666, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:42:19,568 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.421 +2025-10-01 17:42:19,569 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:42:19,569 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:42:20,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:20,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:20,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:20,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:42:20,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:42:20,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:20,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:20,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:20,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:20,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:42:20,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:42:20,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:25,163 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:42:25,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:42:25,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:42:25,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 17:42:25,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 17:42:25,446 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:42:25,615 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:42:25,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:42:25,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:42:25,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +2025-10-01 17:42:25,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +2025-10-01 17:42:25,877 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:42:26,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:26,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:26,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:26,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:42:26,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:42:26,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:26,500 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:42:26,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:42:26,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:42:26,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.258s +2025-10-01 17:42:26,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.258s (avg: 0.129s/image) +2025-10-01 17:42:26,760 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:42:27,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:27,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:27,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:27,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:42:27,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:42:27,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:27,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:27,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:27,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:28,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:42:28,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:42:28,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:29,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:29,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:29,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:29,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:42:29,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:42:29,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:31,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:31,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:31,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:31,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:42:31,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:42:31,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:31,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:31,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:31,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:31,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:42:31,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:42:31,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:32,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:32,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:32,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:32,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:42:32,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:42:32,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:32,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:32,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:32,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:33,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:42:33,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:42:33,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:33,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:33,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:33,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:33,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:42:33,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:42:33,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:33,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:33,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:33,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:33,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:42:33,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:42:33,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:34,011 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:42:34,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:42:34,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:42:34,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 17:42:34,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-01 17:42:34,286 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:42:34,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:34,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:34,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:35,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:42:35,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:42:35,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:35,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:35,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:35,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:35,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:42:35,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:42:35,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:37,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:37,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:37,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:37,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:42:37,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:42:37,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:37,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:37,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:37,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:38,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:42:38,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:42:38,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:38,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:38,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:38,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:39,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:42:39,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:42:39,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:40,124 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:42:40,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:42:40,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:42:40,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 17:42:40,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 17:42:40,420 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:42:40,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:40,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:40,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:41,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:42:41,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:42:41,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:43,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:43,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:43,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:43,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:42:43,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:42:43,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:43,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:43,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:43,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:43,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:42:43,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:42:43,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:45,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:45,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:45,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:45,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:42:45,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:42:45,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:46,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:46,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:46,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:46,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:42:46,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:42:46,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:47,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:47,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:47,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:47,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:42:47,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:42:47,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:48,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:48,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:48,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:48,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:42:48,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:42:48,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:49,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:49,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:49,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:49,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:42:49,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:42:49,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:53,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:53,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:53,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:53,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:42:53,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:42:53,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:53,985 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:42:53,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:42:54,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:42:54,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 17:42:54,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 17:42:54,280 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:42:56,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:56,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:56,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:56,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:42:56,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:42:56,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:57,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:57,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:57,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:57,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:42:57,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:42:57,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:42:59,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:42:59,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:42:59,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:42:59,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:42:59,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:42:59,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:00,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:00,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:00,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:00,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:43:00,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:43:00,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:01,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:01,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:01,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:01,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:43:01,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:43:01,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:03,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:03,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:03,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:03,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:43:03,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:43:03,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:05,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:05,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:05,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:05,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:43:05,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:43:05,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:05,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:05,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:05,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:05,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:43:05,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:43:05,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:06,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:06,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:06,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:06,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:43:06,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:43:06,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:08,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:08,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:08,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:08,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:43:08,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:43:08,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:08,297 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:43:08,314 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:43:08,385 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=0.897 +2025-10-01 17:43:08,385 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 17:43:08,385 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 17:43:08,538 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:43:08,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:43:08,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:43:08,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 17:43:08,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +2025-10-01 17:43:08,802 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:43:10,425 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:43:10,448 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:43:10,522 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.753 +2025-10-01 17:43:10,523 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:43:10,523 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:43:11,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:11,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:11,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:11,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:43:11,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:43:11,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:11,939 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:43:11,966 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:43:12,039 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.319 +2025-10-01 17:43:12,039 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:43:12,040 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:43:12,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:12,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:12,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:12,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:43:12,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:43:12,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:13,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:13,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:13,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:14,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:43:14,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:43:14,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:14,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:14,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:14,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:14,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:43:14,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:43:14,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:15,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:15,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:15,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:15,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:43:15,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:43:15,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:15,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:15,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:15,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:16,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s +2025-10-01 17:43:16,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image) +2025-10-01 17:43:16,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:16,452 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:43:16,478 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:43:16,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.771 +2025-10-01 17:43:16,546 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 17:43:16,546 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 17:43:18,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:18,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:18,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:18,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:43:18,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:43:18,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:19,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:19,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:19,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:19,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:43:19,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:43:19,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:20,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:20,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:20,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:20,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:43:20,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:43:20,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:20,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:20,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:20,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:20,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:43:20,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:43:20,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:20,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:20,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:20,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:21,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 17:43:21,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 17:43:21,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:21,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:21,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:21,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:21,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:43:21,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:43:21,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:22,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:22,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:22,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:22,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:43:22,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:43:22,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:23,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:23,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:23,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:23,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 17:43:23,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 17:43:23,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:27,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:27,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:27,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:27,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:43:27,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:43:27,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:27,502 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:43:27,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:43:27,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:43:27,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 17:43:27,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 17:43:27,798 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:43:28,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:28,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:28,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:28,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:43:28,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:43:28,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:29,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:29,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:29,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:29,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:43:29,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:43:29,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:32,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:32,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:32,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:32,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:43:32,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:43:32,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:33,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:33,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:33,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:33,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:43:33,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:43:33,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:34,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:34,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:34,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:34,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:43:34,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:43:34,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:34,989 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:43:34,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:43:35,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:43:35,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 17:43:35,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 17:43:35,280 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:43:36,539 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:43:36,563 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:43:36,645 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.662 +2025-10-01 17:43:36,645 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:43:36,645 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:43:36,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:36,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:36,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:37,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:43:37,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:43:37,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:37,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:37,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:37,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:37,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:43:37,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:43:37,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:37,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:37,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:37,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:37,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:43:37,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:43:37,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:38,204 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:43:38,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:43:38,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:43:38,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 17:43:38,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 17:43:38,482 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:43:42,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:42,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:42,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:42,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:43:42,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:43:42,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:43,379 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:43:43,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:43:43,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:43:43,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 17:43:43,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 17:43:43,690 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:43:43,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:43,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:43,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:44,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:43:44,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:43:44,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:44,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:44,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:44,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:44,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:43:44,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:43:44,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:45,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:45,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:45,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:45,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:43:45,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:43:45,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:45,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:45,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:45,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:45,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:43:45,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:43:45,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:46,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:46,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:46,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:46,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:43:46,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:43:46,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:49,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:49,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:49,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:49,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:43:49,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:43:49,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:50,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:50,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:50,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:50,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:43:50,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:43:50,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:50,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:50,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:50,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:50,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:43:50,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:43:50,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:51,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:51,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:51,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:51,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:43:51,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:43:51,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:52,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:52,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:52,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:52,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:43:52,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:43:52,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:53,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:53,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:53,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:53,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:43:53,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:43:53,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:53,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:53,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:53,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:53,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:43:53,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:43:53,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:56,126 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:43:56,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:43:56,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:43:56,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.256s +2025-10-01 17:43:56,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.256s (avg: 0.128s/image) +2025-10-01 17:43:56,383 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:43:57,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:57,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:57,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:57,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:43:57,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:43:57,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:43:59,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:43:59,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:43:59,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:43:59,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:43:59,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:43:59,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:01,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:01,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:01,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:01,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:44:01,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:44:01,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:01,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:01,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:01,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:01,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:44:01,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:44:01,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:03,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:03,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:03,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:03,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:44:03,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:44:03,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:05,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:05,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:05,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:05,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:44:05,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:44:05,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:05,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:05,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:05,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:05,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:44:05,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:44:05,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:07,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:07,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:07,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:07,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:44:07,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:44:07,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:08,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:08,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:08,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:09,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:44:09,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:44:09,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:11,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:11,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:11,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:11,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:44:11,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:44:11,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:16,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:16,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:16,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:16,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:44:16,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:44:16,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:16,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:16,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:16,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:16,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:44:16,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:44:16,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:16,932 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:44:16,953 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:44:17,029 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.173 +2025-10-01 17:44:17,029 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:44:17,029 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:44:17,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:17,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:17,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:17,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:44:17,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:44:17,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:18,067 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:44:18,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:44:18,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:44:18,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 17:44:18,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 17:44:18,356 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:44:19,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:19,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:19,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:19,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:44:19,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:44:19,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:20,573 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:44:20,601 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:44:20,680 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.381 +2025-10-01 17:44:20,680 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:44:20,680 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:44:21,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:21,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:21,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:21,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:44:21,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:44:21,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:21,486 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:44:21,509 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:44:21,588 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.635 +2025-10-01 17:44:21,588 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:44:21,588 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:44:21,823 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:44:21,841 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:44:21,915 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.104 +2025-10-01 17:44:21,916 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:44:21,916 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:44:21,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:21,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:21,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:22,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:44:22,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:44:22,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:22,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:22,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:22,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:22,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:44:22,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:44:22,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:22,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:22,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:22,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:23,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:44:23,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:44:23,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:23,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:23,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:23,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:24,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:44:24,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:44:24,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:25,146 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:44:25,172 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:44:25,248 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.817 +2025-10-01 17:44:25,248 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:44:25,248 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:44:25,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:25,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:25,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:26,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:44:26,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:44:26,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:26,110 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:44:26,129 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:44:26,207 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.251 +2025-10-01 17:44:26,207 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:44:26,207 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:44:26,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:26,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:26,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:26,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:44:26,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:44:26,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:28,453 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:44:28,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:44:28,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:44:28,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-01 17:44:28,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +2025-10-01 17:44:28,766 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:44:28,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:28,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:28,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:29,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:44:29,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:44:29,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:29,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:29,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:29,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:29,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:44:29,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:44:29,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:30,061 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:44:30,090 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:44:30,172 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=178.632 +2025-10-01 17:44:30,173 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:44:30,173 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:44:30,564 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:44:30,594 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:44:30,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.215 +2025-10-01 17:44:30,668 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:44:30,669 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:44:30,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:30,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:30,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:30,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 17:44:30,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 17:44:30,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:32,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:32,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:32,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:32,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:44:32,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:44:32,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:33,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:33,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:33,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:33,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:44:33,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:44:33,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:33,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:33,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:33,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:33,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:44:33,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:44:33,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:34,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:34,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:34,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:34,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:44:34,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:44:34,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:35,595 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:44:35,621 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:44:35,697 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.868 +2025-10-01 17:44:35,697 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:44:35,697 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:44:36,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:36,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:36,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:36,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:44:36,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:44:36,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:36,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:36,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:36,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:37,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:44:37,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:44:37,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:39,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:39,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:39,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:39,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:44:39,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:44:39,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:39,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:39,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:39,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:40,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:44:40,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:44:40,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:40,535 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:44:40,559 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:44:40,635 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.542 +2025-10-01 17:44:40,635 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:44:40,635 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:44:40,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:40,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:40,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:41,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:44:41,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:44:41,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:41,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:41,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:41,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:41,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:44:41,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:44:41,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:42,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:42,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:42,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:42,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:44:42,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:44:42,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:44,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:44,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:44,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:44,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:44:44,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:44:44,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:45,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:45,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:45,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:45,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:44:45,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:44:45,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:45,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:45,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:45,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:45,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:44:45,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:44:45,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:48,828 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:44:48,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:44:48,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:44:49,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.431s +2025-10-01 17:44:49,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.431s (avg: 0.144s/image) +2025-10-01 17:44:49,262 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:44:54,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:54,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:54,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:54,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:44:54,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:44:54,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:56,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:56,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:56,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:56,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:44:56,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:44:56,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:56,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:56,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:56,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:56,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:44:56,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:44:56,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:57,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:57,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:57,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:58,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:44:58,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:44:58,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:44:58,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:44:58,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:44:58,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:44:58,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:44:58,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:44:58,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:01,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:01,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:01,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:01,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:45:01,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:45:01,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:02,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:02,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:02,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:02,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:45:02,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:45:02,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:02,186 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:45:02,207 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:45:02,290 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.655 +2025-10-01 17:45:02,291 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:45:02,291 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:45:02,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:02,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:02,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:02,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:45:02,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:45:02,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:04,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:04,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:04,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:04,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:45:04,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:45:04,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:05,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:05,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:05,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:05,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:45:05,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:45:05,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:06,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:06,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:06,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:06,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:45:06,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:45:06,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:08,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:08,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:08,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:08,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:45:08,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:45:08,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:08,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:08,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:08,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:08,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:45:08,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:45:08,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:09,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:09,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:09,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:09,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:45:09,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:45:09,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:09,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:09,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:09,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:09,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 17:45:09,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 17:45:09,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:11,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:11,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:11,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:11,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:45:11,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:45:11,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:12,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:12,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:12,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:12,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:45:12,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:45:12,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:13,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:13,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:13,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:13,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:45:13,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:45:13,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:13,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:13,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:13,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:13,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 17:45:13,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 17:45:13,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:14,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:14,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:14,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:14,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:45:14,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:45:14,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:15,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:15,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:15,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:15,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:45:15,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:45:15,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:16,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:16,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:16,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:16,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:45:16,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:45:16,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:16,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:16,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:16,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:16,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:45:16,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:45:16,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:20,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:20,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:20,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:20,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:45:20,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:45:20,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:21,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:21,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:21,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:21,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:45:21,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:45:21,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:21,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:21,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:21,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:21,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:45:21,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:45:21,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:21,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:21,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:21,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:22,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:45:22,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:45:22,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:23,459 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:45:23,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:45:23,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:45:23,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-01 17:45:23,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +2025-10-01 17:45:23,719 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:45:24,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:24,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:24,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:24,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:45:24,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:45:24,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:26,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:26,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:26,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:26,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:45:26,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:45:26,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:27,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:27,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:27,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:27,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:45:27,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:45:27,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:28,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:28,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:28,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:28,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:45:28,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:45:28,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:28,620 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:45:28,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:45:28,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:45:28,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 17:45:28,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 17:45:28,900 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:45:29,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:29,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:29,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:29,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:45:29,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:45:29,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:32,133 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:45:32,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:45:32,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:45:32,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 17:45:32,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 17:45:32,413 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:45:33,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:33,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:33,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:33,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:45:33,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:45:33,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:34,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:34,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:34,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:34,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:45:34,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:45:34,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:34,487 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:45:34,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:45:34,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:45:34,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.236s +2025-10-01 17:45:34,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.236s (avg: 0.118s/image) +2025-10-01 17:45:34,724 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:45:35,086 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:45:35,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:45:35,201 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.627 +2025-10-01 17:45:35,202 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 17:45:35,202 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:45:36,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:36,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:36,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:36,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:45:36,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:45:36,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:37,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:37,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:37,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:37,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:45:37,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:45:37,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:38,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:38,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:39,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:39,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:45:39,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:45:39,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:39,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:39,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:39,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:39,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:45:39,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:45:39,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:39,917 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:45:39,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:45:39,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:45:40,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 17:45:40,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 17:45:40,217 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:45:42,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:42,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:42,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:42,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:45:42,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:45:42,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:43,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:43,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:43,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:43,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:45:43,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:45:43,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:45,227 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:45:45,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:45:45,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:45:45,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 17:45:45,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 17:45:45,511 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:45:45,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:45,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:45,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:45,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:45:45,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:45:45,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:46,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:46,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:46,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:46,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:45:46,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:45:46,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:46,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:46,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:46,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:46,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:45:46,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:45:46,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:47,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:47,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:47,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:47,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:45:47,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:45:47,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:49,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:49,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:49,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:49,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:45:49,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:45:49,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:49,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:49,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:49,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:50,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:45:50,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:45:50,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:50,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:50,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:50,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:50,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:45:50,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:45:50,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:51,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:51,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:51,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:51,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:45:51,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:45:51,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:51,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:51,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:51,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:52,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:45:52,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:45:52,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:53,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:53,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:53,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:53,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:45:53,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:45:53,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:53,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:53,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:53,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:53,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:45:53,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:45:53,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:56,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:56,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:56,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:56,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:45:56,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:45:56,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:56,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:56,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:56,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:56,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:45:56,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:45:56,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:45:56,935 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:45:56,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:45:56,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:45:57,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 17:45:57,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 17:45:57,228 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:45:57,656 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:45:57,692 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:45:57,775 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.630 +2025-10-01 17:45:57,775 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:45:57,775 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:45:59,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:45:59,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:45:59,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:45:59,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:45:59,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:45:59,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:00,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:00,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:00,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:00,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:46:00,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:46:00,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:00,778 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:46:00,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:46:00,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:46:01,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-01 17:46:01,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +2025-10-01 17:46:01,039 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:46:01,812 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:46:01,841 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:46:01,917 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.799 +2025-10-01 17:46:01,917 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:46:01,917 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:46:02,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:02,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:02,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:02,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:46:02,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:46:02,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:04,120 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:46:04,160 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:46:04,236 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.022 +2025-10-01 17:46:04,237 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:46:04,237 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:46:04,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:04,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:04,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:05,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:46:05,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:46:05,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:06,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:06,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:06,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:06,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:46:06,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:46:06,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:06,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:06,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:06,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:06,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:46:06,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:46:06,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:06,746 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:46:06,772 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:46:06,846 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.582 +2025-10-01 17:46:06,847 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:46:06,847 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:46:07,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:07,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:07,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:07,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:46:07,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:46:07,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:07,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:07,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:07,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:07,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:46:07,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:46:07,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:08,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:08,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:08,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:08,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:46:08,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:46:08,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:08,440 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:46:08,459 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:46:08,533 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.661 +2025-10-01 17:46:08,533 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:46:08,533 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:46:08,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:08,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:08,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:08,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:46:08,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:46:08,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:08,989 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:46:08,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:46:09,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:46:09,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 17:46:09,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 17:46:09,276 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:46:10,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:10,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:10,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:10,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 17:46:10,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 17:46:10,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:10,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:10,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:10,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:11,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:46:11,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:46:11,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:11,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:11,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:11,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:11,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:46:11,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:46:11,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:12,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:12,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:12,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:12,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 17:46:12,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 17:46:12,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:12,926 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:46:12,942 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:46:13,017 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.503 +2025-10-01 17:46:13,017 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:46:13,017 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:46:13,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:13,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:13,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:13,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:46:13,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:46:13,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:16,325 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:46:16,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:46:16,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:46:16,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 17:46:16,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 17:46:16,607 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:46:17,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:17,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:17,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:17,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:46:17,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:46:17,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:17,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:17,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:17,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:17,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:46:17,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:46:17,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:18,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:18,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:18,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:18,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:46:18,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:46:18,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:20,044 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:46:20,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:46:20,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:46:20,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 17:46:20,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 17:46:20,330 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:46:21,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:21,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:22,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:22,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:46:22,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:46:22,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:22,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:22,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:22,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:22,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:46:22,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:46:22,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:23,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:23,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:23,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:23,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:46:23,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:46:23,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:24,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:24,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:24,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:24,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:46:24,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:46:24,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:25,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:25,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:25,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:25,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:46:25,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:46:25,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:27,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:27,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:27,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:27,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:46:27,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:46:27,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:27,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:27,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:27,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:27,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:46:27,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:46:27,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:28,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:28,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:28,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:28,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:46:28,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:46:28,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:28,816 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:46:28,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:46:28,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:46:29,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 17:46:29,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.131s/image) +2025-10-01 17:46:29,081 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:46:31,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:31,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:31,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:31,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:46:31,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:46:31,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:32,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:32,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:32,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:32,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:46:32,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:46:32,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:33,278 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:46:33,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:46:33,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:46:33,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 17:46:33,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 17:46:33,563 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:46:34,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:34,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:34,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:34,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:46:34,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:46:34,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:34,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:34,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:34,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:34,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:46:34,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:46:34,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:35,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:35,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:35,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:35,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:46:35,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:46:35,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:35,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:35,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:36,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:36,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:46:36,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:46:36,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:37,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:37,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:37,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:37,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:46:37,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:46:37,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:37,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:37,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:37,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:38,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:46:38,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:46:38,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:38,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:38,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:38,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:38,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:46:38,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:46:38,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:40,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:40,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:40,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:40,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:46:40,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:46:40,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:42,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:42,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:42,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:42,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:46:42,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:46:42,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:42,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:42,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:42,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:43,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:46:43,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:46:43,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:43,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:43,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:43,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:43,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:46:43,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:46:43,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:43,703 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:46:43,739 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:46:43,821 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.179 +2025-10-01 17:46:43,821 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:46:43,821 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:46:44,567 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:46:44,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:46:44,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:46:44,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 17:46:44,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 17:46:44,856 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:46:45,201 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:46:45,242 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:46:45,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.387 +2025-10-01 17:46:45,319 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:46:45,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:46:46,881 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:46:46,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:46:46,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:46:47,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 17:46:47,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 17:46:47,174 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:46:47,516 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:46:47,546 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:46:47,624 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.506 +2025-10-01 17:46:47,624 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:46:47,625 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:46:48,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:48,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:48,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:48,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:46:48,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:46:48,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:48,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:48,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:48,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:48,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:46:48,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:46:48,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:48,992 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:46:49,012 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:46:49,089 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.617 +2025-10-01 17:46:49,090 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:46:49,090 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:46:49,117 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:46:49,141 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:46:49,214 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.608 +2025-10-01 17:46:49,214 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:46:49,214 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:46:50,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:50,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:50,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:50,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:46:50,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:46:50,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:50,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:50,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:50,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:50,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:46:50,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:46:50,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:51,360 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:46:51,394 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:46:51,480 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.863 +2025-10-01 17:46:51,481 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:46:51,481 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:46:51,533 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:46:51,550 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:46:51,626 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.172 +2025-10-01 17:46:51,626 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:46:51,626 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:46:52,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:52,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:52,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:52,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:46:52,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:46:52,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:52,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:52,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:52,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:53,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:46:53,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:46:53,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:53,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:53,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:53,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:53,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:46:53,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:46:53,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:55,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:55,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:55,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:55,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:46:55,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:46:55,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:56,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:56,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:56,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:56,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:46:56,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:46:56,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:57,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:57,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:57,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:57,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:46:57,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:46:57,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:57,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:57,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:57,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:57,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:46:57,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:46:57,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:46:59,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:46:59,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:46:59,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:46:59,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:46:59,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:46:59,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:00,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:00,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:00,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:00,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:47:00,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:47:00,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:01,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:01,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:01,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:01,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:47:01,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:47:01,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:01,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:01,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:01,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:01,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:47:01,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:47:01,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:03,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:03,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:03,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:03,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:47:03,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:47:03,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:05,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:05,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:05,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:05,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:47:05,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:47:05,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:07,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:07,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:07,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:07,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:47:07,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:47:07,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:07,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:07,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:07,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:07,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:47:07,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:47:07,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:09,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:09,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:09,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:09,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:47:09,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:47:09,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:12,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:12,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:12,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:12,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:47:12,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:47:12,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:12,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:12,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:12,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:12,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:47:12,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:47:12,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:13,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:13,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:13,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:13,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:47:13,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:47:13,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:13,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:13,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:13,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:13,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:47:13,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:47:13,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:14,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:14,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:14,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:14,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:47:14,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:47:14,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:15,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:15,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:15,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:15,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:47:15,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:47:15,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:16,747 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:47:16,775 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:47:16,859 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.342 +2025-10-01 17:47:16,859 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:47:16,859 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:47:17,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:17,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:17,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:17,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:47:17,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:47:17,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:17,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:17,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:17,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:18,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:47:18,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:47:18,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:20,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:20,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:20,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:20,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:47:20,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:47:20,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:20,974 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:47:20,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:47:21,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:47:21,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 17:47:21,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 17:47:21,252 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:47:21,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:21,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:21,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:21,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:47:21,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:47:21,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:22,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:22,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:22,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:22,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:47:22,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:47:22,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:22,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:22,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:22,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:22,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:47:22,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:47:22,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:23,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:23,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:23,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:23,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:47:23,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:47:23,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:24,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:24,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:24,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:24,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:47:24,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:47:24,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:25,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:25,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:25,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:25,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:47:25,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:47:25,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:25,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:25,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:25,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:25,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:47:25,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:47:25,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:26,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:26,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:26,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:26,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:47:26,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:47:26,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:28,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:28,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:28,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:28,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:47:28,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:47:28,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:29,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:29,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:29,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:29,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:47:29,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:47:29,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:29,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:29,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:29,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:29,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:47:29,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:47:29,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:29,757 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:47:29,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:47:29,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:47:30,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-01 17:47:30,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-01 17:47:30,020 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:47:30,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:30,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:30,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:30,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:47:30,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:47:30,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:31,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:31,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:31,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:31,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:47:31,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:47:31,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:31,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:31,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:31,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:31,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:47:31,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:47:31,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:32,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:32,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:32,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:32,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:47:32,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:47:32,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:32,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:32,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:32,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:32,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:47:32,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:47:32,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:34,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:34,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:34,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:34,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:47:34,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:47:34,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:35,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:35,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:35,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:35,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:47:35,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:47:35,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:35,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:35,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:36,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:36,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:47:36,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:47:36,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:36,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:36,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:36,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:36,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:47:36,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:47:36,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:36,609 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:47:36,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:47:36,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:47:36,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 17:47:36,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 17:47:36,883 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:47:38,324 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:47:38,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:47:38,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:47:38,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 17:47:38,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +2025-10-01 17:47:38,628 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:47:39,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:39,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:39,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:39,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:47:39,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:47:39,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:40,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:40,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:40,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:40,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:47:40,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:47:40,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:40,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:40,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:40,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:40,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:47:40,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:47:40,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:40,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:40,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:40,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:41,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:47:41,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:47:41,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:41,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:41,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:41,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:41,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:47:41,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:47:41,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:42,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:42,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:42,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:42,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:47:42,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:47:42,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:43,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:43,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:43,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:43,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:47:43,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:47:43,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:44,279 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:47:44,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:47:44,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:47:44,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 17:47:44,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 17:47:44,569 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:47:46,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:46,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:46,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:47,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:47:47,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:47:47,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:47,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:47,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:47,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:47,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:47:47,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:47:47,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:47,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:47,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:47,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:47,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:47:47,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:47:47,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:48,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:48,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:48,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:48,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:47:48,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:47:48,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:48,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:48,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:48,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:48,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:47:48,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:47:48,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:49,386 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:47:49,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:47:49,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:47:49,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 17:47:49,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 17:47:49,672 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:47:49,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:49,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:49,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:50,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:47:50,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:47:50,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:51,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:51,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:51,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:51,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:47:51,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:47:51,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:52,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:52,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:52,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:52,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:47:52,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:47:52,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:52,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:52,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:52,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:52,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:47:52,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:47:52,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:53,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:53,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:53,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:53,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:47:53,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:47:53,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:54,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:54,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:54,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:54,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:47:54,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:47:54,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:54,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:54,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:54,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:54,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:47:54,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:47:54,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:56,076 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:47:56,105 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:47:56,190 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.169 +2025-10-01 17:47:56,190 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 17:47:56,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:47:56,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:56,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:56,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:56,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.210s +2025-10-01 17:47:56,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.210s (avg: 0.210s/image) +2025-10-01 17:47:56,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:57,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:57,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:57,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:57,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:47:57,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:47:57,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:59,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:59,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:59,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:59,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:47:59,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:47:59,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:59,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:47:59,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:47:59,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:47:59,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:47:59,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:47:59,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:47:59,806 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:47:59,832 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:47:59,915 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.982 +2025-10-01 17:47:59,915 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:47:59,915 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:48:00,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:00,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:00,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:00,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:48:00,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:48:00,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:01,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:01,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:01,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:01,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:48:01,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:48:01,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:01,449 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:48:01,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:48:01,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:48:01,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 17:48:01,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 17:48:01,733 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:48:02,404 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:48:02,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:48:02,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:48:02,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 17:48:02,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 17:48:02,700 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:48:03,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:03,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:03,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:03,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:48:03,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:48:03,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:03,496 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:48:03,521 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:48:03,607 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.333 +2025-10-01 17:48:03,607 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:48:03,607 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:48:04,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:04,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:04,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:04,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:48:04,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:48:04,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:05,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:05,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:05,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:05,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:48:05,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:48:05,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:08,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:08,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:08,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:08,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:48:08,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:48:08,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:08,607 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:48:08,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:48:08,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:48:08,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 17:48:08,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 17:48:08,911 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:48:12,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:12,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:12,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:12,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:48:12,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:48:12,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:13,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:13,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:13,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:14,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:48:14,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:48:14,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:14,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:14,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:14,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:14,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:48:14,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:48:14,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:16,142 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:48:16,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:48:16,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:48:16,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 17:48:16,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 17:48:16,442 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:48:16,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:16,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:16,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:16,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:48:16,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:48:16,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:17,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:17,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:17,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:17,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:48:17,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:48:17,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:17,535 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:48:17,560 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:48:17,634 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.612 +2025-10-01 17:48:17,635 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:48:17,635 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:48:17,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:17,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:17,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:17,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:48:17,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:48:17,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:18,637 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:48:18,676 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:48:18,760 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.838 +2025-10-01 17:48:18,760 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:48:18,760 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:48:21,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:21,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:21,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:21,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:48:21,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:48:21,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:21,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:21,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:21,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:22,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:48:22,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:48:22,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:23,740 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:48:23,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:48:23,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:48:24,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 17:48:24,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-01 17:48:24,009 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:48:24,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:24,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:24,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:24,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:48:24,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:48:24,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:25,061 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:48:25,077 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(602, 602, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:48:25,149 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.530 +2025-10-01 17:48:25,149 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 17:48:25,149 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 17:48:25,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:25,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:25,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:25,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:48:25,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:48:25,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:25,435 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:48:25,462 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:48:25,540 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.634 +2025-10-01 17:48:25,540 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:48:25,541 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:48:26,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:26,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:26,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:26,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:48:26,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:48:26,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:27,056 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:48:27,099 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:48:27,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.072 +2025-10-01 17:48:27,181 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:48:27,181 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:48:30,694 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:48:30,711 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(755, 755, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:48:30,784 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.055 +2025-10-01 17:48:30,784 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:48:30,784 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:48:30,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:30,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:30,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:30,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:48:30,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:48:30,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:31,004 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:48:31,029 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:48:31,108 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=6.024 +2025-10-01 17:48:31,108 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:48:31,109 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:48:31,247 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:48:31,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:48:31,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:48:31,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +2025-10-01 17:48:31,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +2025-10-01 17:48:31,513 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:48:31,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:31,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:31,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:31,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:48:31,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:48:31,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:32,125 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:48:32,145 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:48:32,214 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.759 +2025-10-01 17:48:32,215 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 17:48:32,215 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 17:48:32,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:32,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:32,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:32,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:48:32,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:48:32,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:34,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:34,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:34,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:34,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:48:34,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:48:34,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:34,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:34,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:34,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:35,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 17:48:35,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 17:48:35,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:36,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:36,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:36,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:36,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:48:36,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:48:36,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:36,937 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:48:36,979 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:48:37,062 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.589 +2025-10-01 17:48:37,062 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:48:37,063 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:48:37,779 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:48:37,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:48:37,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:48:38,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 17:48:38,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 17:48:38,070 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:48:38,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:38,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:39,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:39,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:48:39,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:48:39,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:39,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:39,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:39,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:39,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:48:39,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:48:39,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:39,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:39,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:39,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:39,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:48:39,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:48:39,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:41,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:41,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:41,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:41,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:48:41,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:48:41,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:41,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:41,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:41,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:41,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:48:41,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:48:41,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:41,988 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:48:42,035 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:48:42,117 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.760 +2025-10-01 17:48:42,118 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:48:42,118 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:48:43,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:43,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:43,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:43,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:48:43,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:48:43,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:44,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:44,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:44,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:44,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:48:44,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:48:44,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:45,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:45,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:45,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:45,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:48:45,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:48:45,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:46,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:46,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:46,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:46,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:48:46,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:48:46,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:48,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:48,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:48,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:48,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:48:48,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:48:48,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:51,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:51,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:51,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:51,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 17:48:51,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 17:48:51,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:52,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:52,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:52,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:52,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:48:52,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:48:52,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:54,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:54,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:54,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:54,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:48:54,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:48:54,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:55,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:55,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:55,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:55,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:48:55,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:48:55,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:48:59,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:48:59,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:48:59,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:48:59,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:48:59,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:48:59,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:00,418 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:49:00,438 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:49:00,514 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.126 +2025-10-01 17:49:00,515 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:49:00,515 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:49:03,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:03,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:03,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:03,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:49:03,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:49:03,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:03,859 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:49:03,885 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:49:03,964 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.670 +2025-10-01 17:49:03,965 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:49:03,965 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:49:07,455 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:49:07,483 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:49:07,560 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.539 +2025-10-01 17:49:07,561 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:49:07,561 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:49:09,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:09,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:09,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:09,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:49:09,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:49:09,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:11,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:11,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:11,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:11,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:49:11,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:49:11,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:13,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:13,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:13,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:13,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 17:49:13,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 17:49:13,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:14,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:14,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:14,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:14,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:49:14,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:49:14,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:15,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:15,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:15,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:15,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:49:15,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:49:15,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:16,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:16,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:16,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:16,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:49:16,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:49:16,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:17,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:17,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:17,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:17,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:49:17,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:49:17,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:21,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:21,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:21,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:21,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:49:21,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:49:21,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:21,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:21,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:21,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:22,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-01 17:49:22,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-01 17:49:22,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:22,111 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:49:22,137 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(781, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:49:22,216 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.637 +2025-10-01 17:49:22,217 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:49:22,217 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:49:24,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:24,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:24,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:24,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:49:24,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:49:24,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:25,280 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:49:25,300 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:49:25,374 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.714 +2025-10-01 17:49:25,374 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:49:25,374 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:49:27,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:27,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:27,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:27,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:49:27,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:49:27,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:28,451 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:49:28,472 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:49:28,542 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.789 +2025-10-01 17:49:28,542 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 17:49:28,543 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 17:49:30,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:30,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:30,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:30,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:49:30,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:49:30,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:31,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:31,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:32,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:32,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:49:32,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:49:32,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:33,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:33,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:33,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:33,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:49:33,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:49:33,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:33,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:33,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:33,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:33,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:49:33,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:49:33,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:34,809 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:49:34,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:49:34,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:49:35,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 17:49:35,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 17:49:35,105 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:49:36,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:36,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:36,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:36,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:49:36,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:49:36,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:39,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:39,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:39,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:39,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:49:39,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:49:39,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:39,813 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:49:39,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:49:39,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:49:40,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 17:49:40,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 17:49:40,104 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:49:40,753 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:49:40,781 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:49:40,859 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.180 +2025-10-01 17:49:40,859 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:49:40,859 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:49:41,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:41,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:41,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:41,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:49:41,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:49:41,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:42,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:42,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:42,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:42,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:49:42,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:49:42,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:49,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:49,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:49,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:50,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:49:50,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:49:50,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:52,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:52,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:52,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:52,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:49:52,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:49:52,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:55,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:55,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:55,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:55,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:49:55,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:49:55,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:57,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:57,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:57,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:57,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:49:57,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:49:57,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:58,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:58,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:58,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:58,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:49:58,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:49:58,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:49:59,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:49:59,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:49:59,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:49:59,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:49:59,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:49:59,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:00,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:00,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:00,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:00,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:50:00,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:50:00,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:03,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:03,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:03,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:03,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:50:03,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:50:03,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:03,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:03,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:03,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:03,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:50:03,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:50:03,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:04,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:04,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:04,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:04,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 17:50:04,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 17:50:04,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:06,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:06,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:06,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:06,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:50:06,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:50:06,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:06,825 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:06,861 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:06,939 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.787 +2025-10-01 17:50:06,940 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:50:06,940 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:50:07,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:07,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:07,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:07,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 17:50:07,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 17:50:07,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:09,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:09,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:09,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:09,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:50:09,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:50:09,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:10,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:10,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:10,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:10,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:50:10,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:50:10,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:12,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:12,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:12,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:12,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 17:50:12,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 17:50:12,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:12,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:12,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:12,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:12,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:50:12,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:50:12,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:12,900 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:12,916 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:12,994 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.191 +2025-10-01 17:50:12,994 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:50:12,994 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:50:13,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:13,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:13,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:13,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:50:13,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:50:13,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:13,339 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:13,359 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:13,427 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.663 +2025-10-01 17:50:13,427 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 17:50:13,427 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 17:50:15,485 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:15,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:15,596 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.336 +2025-10-01 17:50:15,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:50:15,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:50:16,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:16,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:16,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:16,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:50:16,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:50:16,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:17,141 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:17,166 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:17,242 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.395 +2025-10-01 17:50:17,242 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:50:17,242 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:50:17,966 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:17,992 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:18,066 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.189 +2025-10-01 17:50:18,066 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:50:18,066 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:50:19,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:19,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:19,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:19,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:50:19,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:50:19,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:19,468 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:19,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:19,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.240 +2025-10-01 17:50:19,587 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:50:19,587 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:50:20,924 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:20,949 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:21,023 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.124 +2025-10-01 17:50:21,023 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:50:21,023 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:50:22,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:22,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:22,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:22,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:50:22,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:50:22,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:22,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:22,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:22,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:22,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:50:22,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:50:22,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:23,524 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:23,554 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:23,637 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.213 +2025-10-01 17:50:23,637 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:50:23,637 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:50:25,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:25,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:25,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:25,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:50:25,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:50:25,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:25,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:25,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:25,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:25,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:50:25,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:50:25,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:26,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:26,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:26,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:26,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:50:26,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:50:26,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:28,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:28,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:28,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:28,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:50:28,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:50:28,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:30,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:30,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:30,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:30,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:50:30,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:50:30,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:31,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:31,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:31,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:32,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:50:32,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:50:32,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:34,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:34,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:34,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:34,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:50:34,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:50:34,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:35,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:35,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:35,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:35,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:50:35,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:50:35,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:38,809 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:38,839 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:38,925 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.440 +2025-10-01 17:50:38,925 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:50:38,925 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:50:39,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:39,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:39,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:39,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:50:39,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:50:39,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:42,258 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:42,283 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:42,363 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.879 +2025-10-01 17:50:42,363 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:50:42,363 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:50:43,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:43,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:43,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:43,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 17:50:43,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 17:50:43,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:43,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:43,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:43,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:44,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:50:44,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:50:44,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:44,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:44,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:44,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:44,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:50:44,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:50:44,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:45,494 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:45,529 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(718, 718, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:45,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.870 +2025-10-01 17:50:45,603 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:50:45,603 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:50:45,939 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:45,968 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:46,047 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.335 +2025-10-01 17:50:46,047 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:50:46,047 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:50:46,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:46,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:46,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:46,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:50:46,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:50:46,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:47,410 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:47,447 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:47,526 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.702 +2025-10-01 17:50:47,526 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:50:47,526 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:50:48,771 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:50:48,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:50:48,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:50:49,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +2025-10-01 17:50:49,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.319s (avg: 0.160s/image) +2025-10-01 17:50:49,092 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:50:52,488 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:50:52,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:50:52,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:50:52,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 17:50:52,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-01 17:50:52,791 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:50:52,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:52,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:53,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:53,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:50:53,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:50:53,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:53,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:53,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:53,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:53,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:50:53,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:50:53,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:53,674 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:53,695 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:53,772 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.818 +2025-10-01 17:50:53,772 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:50:53,772 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:50:53,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:53,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:53,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:54,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:50:54,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:50:54,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:54,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:54,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:54,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:54,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:50:54,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:50:54,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:55,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:55,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:55,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:56,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:50:56,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:50:56,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:56,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:56,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:56,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:56,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:50:56,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:50:56,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:56,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:56,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:56,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:56,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:50:56,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:50:56,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:57,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:57,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:57,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:50:57,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:50:57,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:50:57,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:50:58,192 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:50:58,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:50:58,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:50:58,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 17:50:58,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 17:50:58,489 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:50:59,113 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:50:59,145 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:50:59,223 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=210.177 +2025-10-01 17:50:59,223 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:50:59,223 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:50:59,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:50:59,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:50:59,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:00,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:51:00,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:51:00,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:00,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:00,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:00,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:00,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:51:00,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:51:00,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:00,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:00,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:00,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:01,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:51:01,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:51:01,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:01,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:01,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:01,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:01,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:51:01,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:51:01,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:02,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:02,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:02,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:02,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:51:02,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:51:02,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:02,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:02,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:03,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:03,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:51:03,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:51:03,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:03,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:03,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:03,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:03,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:51:03,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:51:03,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:05,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:05,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:05,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:05,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:51:05,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:51:05,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:07,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:07,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:07,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:07,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:51:07,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:51:07,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:07,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:07,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:07,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:07,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:51:07,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:51:07,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:07,870 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:51:07,889 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:51:07,957 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.320 +2025-10-01 17:51:07,957 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 17:51:07,957 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 17:51:08,472 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:51:08,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:51:08,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:51:08,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 17:51:08,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 17:51:08,748 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:51:09,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:09,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:09,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:10,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:51:10,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:51:10,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:10,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:10,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:10,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:10,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:51:10,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:51:10,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:11,589 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:51:11,608 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:51:11,677 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.995 +2025-10-01 17:51:11,678 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 17:51:11,678 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 17:51:11,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:11,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:11,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:11,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:51:11,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:51:11,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:12,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:12,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:12,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:12,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:51:12,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:51:12,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:12,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:12,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:12,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:12,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:51:12,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:51:12,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:15,313 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:51:15,332 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:51:15,401 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.795 +2025-10-01 17:51:15,401 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 17:51:15,402 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 17:51:15,547 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:51:15,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:51:15,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:51:15,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 17:51:15,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-01 17:51:15,827 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:51:18,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:18,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:18,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:18,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 17:51:18,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 17:51:18,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:19,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:19,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:19,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:19,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:51:19,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:51:19,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:20,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:20,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:20,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:20,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:51:20,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:51:20,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:20,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:20,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:20,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:20,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:51:20,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:51:20,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:21,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:21,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:21,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:21,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:51:21,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:51:21,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:22,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:22,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:22,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:23,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:51:23,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:51:23,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:24,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:24,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:24,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:24,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:51:24,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:51:24,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:24,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:24,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:24,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:24,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:51:24,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:51:24,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:26,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:26,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:26,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:26,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:51:26,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:51:26,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:26,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:26,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:26,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:26,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:51:26,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:51:26,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:27,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:27,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:27,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:27,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:51:27,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:51:27,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:28,396 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:51:28,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:51:28,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:51:28,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 17:51:28,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 17:51:28,696 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:51:28,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:28,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:28,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:29,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:51:29,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:51:29,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:29,827 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:51:29,869 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:51:29,950 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.084 +2025-10-01 17:51:29,950 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:51:29,950 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 17:51:30,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:30,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:30,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:30,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:51:30,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:51:30,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:30,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:30,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:30,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:30,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:51:30,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:51:30,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:31,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:31,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:31,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:31,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:51:31,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:51:31,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:32,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:32,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:32,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:32,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:51:32,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:51:32,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:33,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:33,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:33,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:33,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:51:33,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:51:33,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:33,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:33,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:34,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:34,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:51:34,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:51:34,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:34,310 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:51:34,352 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:51:34,435 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.839 +2025-10-01 17:51:34,435 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:51:34,435 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:51:34,856 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:51:34,892 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:51:34,970 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.921 +2025-10-01 17:51:34,970 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:51:34,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:51:35,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:35,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:35,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:35,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:51:35,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:51:35,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:35,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:35,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:35,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:35,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 17:51:35,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 17:51:35,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:36,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:36,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:36,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:37,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:51:37,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:51:37,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:37,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:37,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:37,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:37,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:51:37,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:51:37,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:38,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:38,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:38,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:38,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:51:38,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:51:38,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:38,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:38,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:38,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:38,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:51:38,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:51:38,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:39,203 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:51:39,226 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:51:39,298 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.486 +2025-10-01 17:51:39,298 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 17:51:39,298 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:51:39,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:39,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:39,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:39,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:51:39,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:51:39,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:39,674 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:51:39,694 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:51:39,767 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.084 +2025-10-01 17:51:39,767 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:51:39,768 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:51:40,332 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:51:40,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:51:40,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:51:40,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 17:51:40,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 17:51:40,625 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:51:41,593 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:51:41,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:51:41,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:51:41,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 17:51:41,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 17:51:41,888 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:51:42,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:42,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:42,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:42,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:51:42,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:51:42,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:44,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:44,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:44,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:44,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:51:44,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:51:44,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:44,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:44,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:44,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:44,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 17:51:44,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 17:51:44,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:45,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:45,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:45,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:45,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:51:45,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:51:45,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:46,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:46,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:46,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:46,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:51:46,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:51:46,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:46,598 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:51:46,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:51:46,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:51:46,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.389s +2025-10-01 17:51:46,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.389s (avg: 0.130s/image) +2025-10-01 17:51:46,989 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:51:47,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:47,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:47,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:47,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:51:47,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:51:47,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:50,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:50,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:50,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:51,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:51:51,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:51:51,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:51,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:51,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:51,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:51,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:51:51,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:51:51,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:51,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:51,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:51,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:51,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:51:51,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:51:51,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:52,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:52,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:52,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:52,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:51:52,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:51:52,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:53,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:53,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:53,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:53,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:51:53,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:51:53,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:55,038 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:51:55,074 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:51:55,153 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.555 +2025-10-01 17:51:55,153 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:51:55,153 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:51:55,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:55,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:55,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:55,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:51:55,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:51:55,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:56,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:56,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:56,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:56,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:51:56,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:51:56,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:58,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:58,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:58,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:58,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:51:58,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:51:58,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:51:58,991 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:51:59,016 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:51:59,093 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.449 +2025-10-01 17:51:59,093 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:51:59,093 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:51:59,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:51:59,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:51:59,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:51:59,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:51:59,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:51:59,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:03,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:03,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:03,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:03,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:52:03,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:52:03,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:03,414 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:52:03,431 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:52:03,504 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.660 +2025-10-01 17:52:03,505 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:52:03,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:52:03,821 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:52:03,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:52:03,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:52:04,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 17:52:04,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-01 17:52:04,093 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:52:04,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:04,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:04,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:04,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 17:52:04,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 17:52:04,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:08,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:08,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:08,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:08,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:52:08,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:52:08,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:08,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:08,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:08,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:08,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:52:08,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:52:08,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:09,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:09,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:09,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:09,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:52:09,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:52:09,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:10,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:10,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:10,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:10,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:52:10,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:52:10,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:11,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:11,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:11,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:11,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:52:11,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:52:11,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:13,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:13,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:13,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:13,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:52:13,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:52:13,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:14,878 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:52:14,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:52:14,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:52:15,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 17:52:15,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 17:52:15,170 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:52:15,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:15,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:15,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:15,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:52:15,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:52:15,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:17,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:17,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:17,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:17,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:52:17,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:52:17,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:19,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:19,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:19,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:19,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:52:19,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:52:19,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:21,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:21,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:21,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:21,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:52:21,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:52:21,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:22,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:22,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:22,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:22,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:52:22,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:52:22,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:24,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:24,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:24,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:24,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:52:24,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:52:24,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:25,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:25,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:25,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:25,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:52:25,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:52:25,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:26,108 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:52:26,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:52:26,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:52:26,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 17:52:26,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 17:52:26,419 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:52:26,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:26,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:26,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:27,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:52:27,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:52:27,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:27,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:27,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:27,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:27,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:52:27,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:52:27,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:28,153 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:52:28,179 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:52:28,255 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.065 +2025-10-01 17:52:28,255 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:52:28,255 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:52:29,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:29,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:29,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:29,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:52:29,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:52:29,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:29,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:29,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:29,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:29,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:52:29,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:52:29,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:30,637 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:52:30,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:52:30,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:52:30,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 17:52:30,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 17:52:30,912 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:52:31,747 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:52:31,774 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:52:31,850 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.416 +2025-10-01 17:52:31,851 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:52:31,851 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:52:32,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:32,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:32,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:32,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:52:32,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:52:32,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:34,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:34,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:34,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:34,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:52:34,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:52:34,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:34,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:34,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:34,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:34,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:52:34,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:52:34,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:36,080 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:52:36,107 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:52:36,181 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=19.625 +2025-10-01 17:52:36,181 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:52:36,181 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:52:36,437 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:52:36,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:52:36,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:52:36,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 17:52:36,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 17:52:36,717 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:52:38,986 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:52:39,018 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:52:39,097 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.168 +2025-10-01 17:52:39,097 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:52:39,097 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:52:39,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:39,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:39,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:39,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:52:39,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:52:39,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:39,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:39,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:39,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:40,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:52:40,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:52:40,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:40,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:40,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:40,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:40,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:52:40,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:52:40,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:41,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:41,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:41,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:41,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:52:41,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:52:41,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:42,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:42,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:42,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:42,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:52:42,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:52:42,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:42,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:42,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:42,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:43,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:52:43,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:52:43,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:43,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:43,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:43,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:43,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:52:43,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:52:43,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:43,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:52:43,997 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:52:44,072 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.239 +2025-10-01 17:52:44,073 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:52:44,073 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:52:44,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:44,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:44,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:44,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:52:44,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:52:44,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:45,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:45,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:45,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:45,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:52:45,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:52:45,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:46,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:46,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:47,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:47,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:52:47,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:52:47,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:47,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:47,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:47,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:47,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:52:47,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:52:47,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:47,652 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:52:47,676 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:52:47,752 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.926 +2025-10-01 17:52:47,752 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:52:47,752 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:52:49,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:49,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:49,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:49,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:52:49,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:52:49,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:50,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:50,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:50,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:50,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:52:50,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:52:50,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:51,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:51,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:51,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:51,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:52:51,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:52:51,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:52,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:52,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:52,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:52,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:52:52,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:52:52,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:54,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:54,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:54,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:54,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:52:54,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:52:54,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:54,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:54,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:54,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:55,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:52:55,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:52:55,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:55,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:55,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:55,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:55,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:52:55,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:52:55,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:55,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:55,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:55,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:56,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:52:56,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:52:56,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:56,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:56,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:56,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:56,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:52:56,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:52:56,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:58,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:58,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:58,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:58,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:52:58,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:52:58,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:58,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:58,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:58,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:58,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:52:58,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:52:58,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:52:59,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:52:59,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:52:59,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:52:59,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:52:59,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:52:59,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:00,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:00,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:00,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:00,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:53:00,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:53:00,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:01,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:01,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:01,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:01,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:53:01,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:53:01,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:02,420 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:53:02,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:53:02,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:53:02,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 17:53:02,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 17:53:02,695 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:53:03,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:03,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:03,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:03,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:53:03,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:53:03,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:03,336 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:53:03,358 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:53:03,431 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.201 +2025-10-01 17:53:03,431 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:53:03,431 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:53:04,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:04,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:04,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:04,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:53:04,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:53:04,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:06,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:06,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:06,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:06,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.214s +2025-10-01 17:53:06,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.214s (avg: 0.214s/image) +2025-10-01 17:53:06,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:07,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:07,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:07,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:07,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:53:07,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:53:07,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:07,707 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:53:07,742 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:53:07,820 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.013 +2025-10-01 17:53:07,821 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:53:07,821 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:53:08,151 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:53:08,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:53:08,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:53:08,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 17:53:08,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 17:53:08,437 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:53:10,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:10,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:10,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:10,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:53:10,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:53:10,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:11,289 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:53:11,316 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:53:11,398 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.859 +2025-10-01 17:53:11,398 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 17:53:11,398 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:53:11,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:11,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:11,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:11,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:53:11,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:53:11,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:12,258 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:53:12,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:53:12,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:53:12,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 17:53:12,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 17:53:12,547 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:53:13,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:13,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:13,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:13,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:53:13,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:53:13,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:15,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:53:15,563 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:53:15,647 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.139 +2025-10-01 17:53:15,648 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 17:53:15,648 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:53:17,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:17,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:17,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:17,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:53:17,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:53:17,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:17,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:17,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:17,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:17,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:53:17,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:53:17,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:19,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:19,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:19,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:19,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.206s +2025-10-01 17:53:19,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.206s (avg: 0.206s/image) +2025-10-01 17:53:19,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:19,827 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:53:19,843 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:53:19,920 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.101 +2025-10-01 17:53:19,921 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:53:19,921 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:53:21,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:21,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:21,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:21,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:53:21,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:53:21,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:22,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:22,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:22,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:22,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:53:22,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:53:22,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:23,984 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:53:23,999 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:53:24,077 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.375 +2025-10-01 17:53:24,077 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:53:24,077 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:53:24,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:24,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:24,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:24,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:53:24,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:53:24,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:24,844 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:53:24,883 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:53:24,969 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.499 +2025-10-01 17:53:24,969 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:53:24,969 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 17:53:30,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:30,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:30,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:30,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:53:30,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:53:30,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:33,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:33,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:33,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:33,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:53:33,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:53:33,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:34,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:34,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:34,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:34,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:53:34,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:53:34,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:34,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:34,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:34,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:34,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:53:34,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:53:34,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:38,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:38,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:39,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:39,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:53:39,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:53:39,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:39,690 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:53:39,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:53:39,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:53:39,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 17:53:39,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 17:53:39,987 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:53:41,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:41,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:41,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:41,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:53:41,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:53:41,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:45,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:45,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:45,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:46,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:53:46,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:53:46,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:46,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:46,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:46,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:46,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:53:46,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:53:46,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:47,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:47,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:47,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:47,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:53:47,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:53:47,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:49,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:49,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:49,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:49,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:53:49,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:53:49,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:50,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:50,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:50,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:50,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:53:50,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:53:50,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:52,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:52,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:52,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:52,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:53:52,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:53:52,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:53,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:53,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:53,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:53,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:53:53,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:53:53,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:53,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:53,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:53,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:53,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 17:53:53,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 17:53:53,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:54,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:54,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:54,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:54,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:53:54,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:53:54,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:55,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:55,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:55,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:55,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:53:55,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:53:55,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:56,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:56,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:56,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:56,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:53:56,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:53:56,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:58,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:58,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:58,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:58,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:53:58,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:53:58,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:59,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:53:59,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:53:59,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:53:59,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:53:59,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:53:59,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:53:59,820 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:53:59,861 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:53:59,941 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.097 +2025-10-01 17:53:59,941 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:53:59,941 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:54:00,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:00,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:00,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:00,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:54:00,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:54:00,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:00,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:00,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:00,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:01,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:54:01,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:54:01,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:01,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:01,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:01,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:01,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:54:01,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:54:01,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:02,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:02,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:03,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:03,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:54:03,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:54:03,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:03,438 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:54:03,469 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:54:03,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.043 +2025-10-01 17:54:03,546 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:54:03,546 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:54:04,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:04,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:04,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:04,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:54:04,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:54:04,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:06,013 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:54:06,050 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 748, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:54:06,128 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.302 +2025-10-01 17:54:06,129 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:54:06,129 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:54:06,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:06,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:06,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:06,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:54:06,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:54:06,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:06,805 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:54:06,836 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:54:06,923 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.191 +2025-10-01 17:54:06,923 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 17:54:06,923 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 17:54:07,267 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:54:07,310 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:54:07,390 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.428 +2025-10-01 17:54:07,391 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:54:07,391 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:54:08,722 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:54:08,747 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:54:08,825 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.977 +2025-10-01 17:54:08,826 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:54:08,826 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:54:09,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:09,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:09,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:09,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:54:09,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:54:09,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:09,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:09,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:09,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:09,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:54:09,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:54:09,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:10,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:10,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:10,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:10,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:54:10,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:54:10,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:11,118 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:54:11,145 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:54:11,221 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.528 +2025-10-01 17:54:11,221 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:54:11,221 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:54:11,241 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:54:11,264 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:54:11,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.622 +2025-10-01 17:54:11,336 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 17:54:11,336 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 17:54:11,812 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:54:11,843 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:54:11,921 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=191.128 +2025-10-01 17:54:11,921 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:54:11,921 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:54:12,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:12,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:12,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:12,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:54:12,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:54:12,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:12,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:12,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:13,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:13,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:54:13,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:54:13,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:14,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:14,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:14,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:14,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:54:14,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:54:14,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:15,167 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:54:15,189 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:54:15,262 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.047 +2025-10-01 17:54:15,263 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:54:15,263 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:54:17,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:17,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:17,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:17,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:54:17,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:54:17,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:18,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:18,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:18,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:18,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:54:18,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:54:18,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:18,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:18,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:18,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:18,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:54:18,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:54:18,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:19,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:19,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:19,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:19,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 17:54:19,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 17:54:19,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:19,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:19,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:19,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:19,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:54:19,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:54:19,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:21,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:21,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:21,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:21,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:54:21,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:54:21,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:23,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:23,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:23,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:23,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:54:23,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:54:23,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:23,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:23,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:23,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:24,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:54:24,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:54:24,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:25,376 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:54:25,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:54:25,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:54:25,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 17:54:25,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 17:54:25,677 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:54:26,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:26,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:26,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:26,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:54:26,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:54:26,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:27,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:27,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:27,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:27,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:54:27,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:54:27,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:27,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:27,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:27,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:28,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:54:28,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:54:28,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:31,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:31,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:31,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:31,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:54:31,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:54:31,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:31,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:31,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:31,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:31,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:54:31,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:54:31,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:32,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:32,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:32,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:32,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:54:32,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:54:32,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:33,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:33,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:33,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:33,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:54:33,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:54:33,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:35,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:35,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:35,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:35,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:54:35,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:54:35,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:35,304 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:54:35,323 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:54:35,394 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.028 +2025-10-01 17:54:35,394 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 17:54:35,395 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 17:54:35,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:35,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:35,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:36,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:54:36,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:54:36,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:36,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:36,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:36,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:36,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:54:36,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:54:36,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:37,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:37,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:37,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:37,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:54:37,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:54:37,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:38,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:38,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:38,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:38,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:54:38,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:54:38,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:39,358 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:54:39,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:54:39,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:54:39,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 17:54:39,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 17:54:39,666 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:54:40,157 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:54:40,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:54:40,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:54:40,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 17:54:40,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-01 17:54:40,465 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:54:40,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:40,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:40,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:40,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:54:40,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:54:40,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:42,061 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:54:42,084 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(760, 760, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:54:42,161 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.106 +2025-10-01 17:54:42,161 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:54:42,161 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:54:42,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:42,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:43,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:43,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:54:43,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:54:43,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:43,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:43,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:43,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:43,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:54:43,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:54:43,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:45,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:45,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:45,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:45,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:54:45,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:54:45,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:45,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:45,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:45,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:46,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:54:46,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:54:46,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:46,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:46,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:46,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:46,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:54:46,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:54:46,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:47,707 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:54:47,731 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(726, 726, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:54:47,806 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.586 +2025-10-01 17:54:47,806 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:54:47,807 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:54:48,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:48,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:48,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:48,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:54:48,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:54:48,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:49,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:49,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:49,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:49,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:54:49,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:54:49,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:49,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:49,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:49,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:49,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:54:49,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:54:49,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:50,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:50,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:50,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:50,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:54:50,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:54:50,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:50,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:50,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:51,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:51,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:54:51,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:54:51,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:51,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:51,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:51,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:51,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:54:51,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:54:51,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:51,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:51,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:51,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:51,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:54:51,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:54:51,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:54,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:54,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:54,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:54,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:54:54,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:54:54,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:54,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:54,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:54,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:54,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:54:54,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:54:54,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:55,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:55,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:55,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:55,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:54:55,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:54:55,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:56,203 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:54:56,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:54:56,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:54:56,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 17:54:56,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 17:54:56,503 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:54:56,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:56,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:57,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:57,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:54:57,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:54:57,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:57,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:57,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:57,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:58,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:54:58,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:54:58,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:54:59,298 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:54:59,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:54:59,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:54:59,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 17:54:59,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 17:54:59,594 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:54:59,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:54:59,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:54:59,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:54:59,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:54:59,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:54:59,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:00,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:00,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:00,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:00,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:55:00,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:55:00,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:01,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:01,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:01,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:01,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:55:01,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:55:01,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:02,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:02,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:02,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:02,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:55:02,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:55:02,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:03,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:03,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:03,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:04,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:55:04,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:55:04,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:04,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:04,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:04,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:04,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:55:04,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:55:04,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:05,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:05,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:05,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:05,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:55:05,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:55:05,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:05,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:05,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:05,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:05,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:55:05,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:55:05,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:06,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:06,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:06,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:06,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:55:06,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:55:06,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:06,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:06,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:06,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:06,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:55:06,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:55:06,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:07,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:07,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:07,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:07,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:55:07,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:55:07,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:09,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:09,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:09,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:09,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:55:09,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:55:09,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:10,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:10,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:10,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:10,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 17:55:10,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 17:55:10,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:10,964 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:55:10,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:55:11,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:55:11,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 17:55:11,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 17:55:11,261 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:55:11,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:11,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:11,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:12,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:55:12,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:55:12,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:12,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:12,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:12,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:12,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:55:12,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:55:12,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:12,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:12,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:12,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:12,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:55:12,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:55:12,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:14,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:14,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:14,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:14,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:55:14,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:55:14,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:15,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:15,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:15,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:15,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:55:15,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:55:15,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:15,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:15,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:15,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:15,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:55:15,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:55:15,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:15,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:15,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:15,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:16,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:55:16,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:55:16,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:16,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:16,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:16,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:16,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 17:55:16,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 17:55:16,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:18,310 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:18,354 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:18,438 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.613 +2025-10-01 17:55:18,438 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:55:18,439 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 17:55:19,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:19,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:19,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:19,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:55:19,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:55:19,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:20,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:20,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:20,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:20,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:55:20,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:55:20,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:21,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:21,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:21,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:21,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:55:21,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:55:21,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:21,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:21,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:21,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:21,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:55:21,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:55:21,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:22,177 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:22,204 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:22,280 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.858 +2025-10-01 17:55:22,280 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:55:22,280 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:55:22,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:22,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:22,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:22,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 17:55:22,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 17:55:22,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:23,236 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:23,270 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:23,345 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.756 +2025-10-01 17:55:23,345 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:55:23,345 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:55:24,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:24,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:24,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:24,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:55:24,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:55:24,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:25,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:25,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:26,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:26,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:55:26,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:55:26,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:26,199 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:26,223 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:26,299 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.577 +2025-10-01 17:55:26,300 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:55:26,300 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:55:27,458 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:27,481 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:27,555 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.742 +2025-10-01 17:55:27,556 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 17:55:27,556 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:55:28,892 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:28,914 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:28,990 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.342 +2025-10-01 17:55:28,991 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:55:28,991 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:55:29,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:29,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:29,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:29,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:55:29,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:55:29,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:29,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:29,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:29,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:30,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:55:30,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:55:30,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:30,453 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:30,483 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:30,560 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.323 +2025-10-01 17:55:30,560 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:55:30,561 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:55:30,999 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:31,030 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:31,106 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.356 +2025-10-01 17:55:31,107 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:55:31,107 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:55:32,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:32,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:32,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:32,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:55:32,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:55:32,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:33,252 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:33,289 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:33,385 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.783 +2025-10-01 17:55:33,385 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 17:55:33,385 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 17:55:34,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:34,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:34,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:34,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:55:34,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:55:34,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:34,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:34,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:34,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:34,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:55:34,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:55:34,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:35,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:35,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:35,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:36,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:55:36,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:55:36,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:36,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:36,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:37,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:37,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:55:37,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:55:37,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:37,149 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:37,171 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:37,255 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.822 +2025-10-01 17:55:37,255 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 17:55:37,255 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 17:55:39,195 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:39,224 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:39,302 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.010 +2025-10-01 17:55:39,302 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:55:39,302 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:55:40,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:40,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:40,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:40,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:55:40,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:55:40,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:40,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:40,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:40,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:40,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 17:55:40,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 17:55:40,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:41,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:41,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:41,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:41,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:55:41,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:55:41,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:42,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:42,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:42,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:42,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:55:42,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:55:42,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:42,787 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:42,808 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(796, 796, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:42,880 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.142 +2025-10-01 17:55:42,880 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 17:55:42,880 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:55:44,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:44,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:44,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:44,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:55:44,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:55:44,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:44,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:44,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:44,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:44,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:55:44,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:55:44,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:45,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:45,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:45,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:45,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:55:45,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:55:45,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:45,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:45,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:45,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:45,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:55:45,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:55:45,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:46,360 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:55:46,393 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:55:46,468 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.290 +2025-10-01 17:55:46,468 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:55:46,468 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:55:49,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:49,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:49,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:49,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:55:49,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:55:49,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:50,476 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 17:55:50,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 17:55:50,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 17:55:50,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.421s +2025-10-01 17:55:50,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.421s (avg: 0.140s/image) +2025-10-01 17:55:50,898 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 17:55:51,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:51,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:51,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:51,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 17:55:51,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 17:55:51,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:51,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:51,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:51,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:51,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:55:51,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:55:51,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:52,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:52,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:52,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:53,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:55:53,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:55:53,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:54,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:54,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:54,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:54,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:55:54,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:55:54,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:55,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:55,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:55,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:55,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:55:55,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:55:55,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:55,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:55,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:55,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:55,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:55:55,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:55:55,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:56,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:56,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:56,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:56,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:55:56,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:55:56,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:56,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:56,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:56,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:57,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:55:57,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:55:57,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:57,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:57,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:57,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:57,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:55:57,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:55:57,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:58,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:58,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:58,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:58,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:55:58,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:55:58,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:55:58,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:55:58,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:55:58,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:55:59,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:55:59,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:55:59,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:01,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:01,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:01,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:01,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:56:01,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:56:01,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:01,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:01,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:01,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:01,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 17:56:01,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 17:56:01,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:02,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:02,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:02,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:02,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:56:02,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:56:02,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:02,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:02,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:02,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:02,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:56:02,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:56:02,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:03,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:03,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:03,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:03,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:56:03,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:56:03,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:04,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:04,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:04,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:05,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:56:05,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:56:05,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:05,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:05,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:05,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:05,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:56:05,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:56:05,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:07,218 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:56:07,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:56:07,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:56:07,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 17:56:07,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 17:56:07,514 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:56:07,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:07,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:07,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:08,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 17:56:08,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 17:56:08,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:08,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:08,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:08,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:09,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:56:09,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:56:09,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:09,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:09,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:09,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:09,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:56:09,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:56:09,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:09,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:09,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:09,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:09,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:56:09,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:56:09,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:10,100 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:56:10,133 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:56:10,210 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.732 +2025-10-01 17:56:10,210 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:56:10,210 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:56:11,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:11,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:11,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:12,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:56:12,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:56:12,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:12,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:12,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:12,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:13,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:56:13,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:56:13,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:14,081 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:56:14,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:56:14,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:56:14,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 17:56:14,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 17:56:14,382 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:56:14,691 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:56:14,725 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:56:14,804 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.575 +2025-10-01 17:56:14,804 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:56:14,805 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:56:14,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:14,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:15,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:15,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 17:56:15,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 17:56:15,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:16,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:16,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:16,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:16,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:56:16,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:56:16,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:16,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:16,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:16,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:16,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:56:16,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:56:16,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:17,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:17,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:17,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:17,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:56:17,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:56:17,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:17,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:17,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:17,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:17,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:56:17,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:56:17,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:18,412 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:56:18,445 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:56:18,522 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.004 +2025-10-01 17:56:18,523 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:56:18,523 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:56:19,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:19,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:19,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:19,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:56:19,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:56:19,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:21,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:21,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:21,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:21,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:56:21,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:56:21,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:22,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:22,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:22,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:22,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:56:22,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:56:22,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:23,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:23,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:23,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:23,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:56:23,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:56:23,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:23,765 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:56:23,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:56:23,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:56:24,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +2025-10-01 17:56:24,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.319s (avg: 0.160s/image) +2025-10-01 17:56:24,086 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:56:25,254 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:56:25,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:56:25,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:56:25,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 17:56:25,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 17:56:25,547 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:56:25,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:25,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:25,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:25,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:56:25,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:56:25,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:26,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:26,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:26,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:26,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:56:26,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:56:26,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:27,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:27,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:27,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:27,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:56:27,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:56:27,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:27,961 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:56:27,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:56:28,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:56:28,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s +2025-10-01 17:56:28,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image) +2025-10-01 17:56:28,283 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:56:28,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:28,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:28,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:29,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:56:29,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:56:29,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:29,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:29,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:29,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:29,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:56:29,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:56:29,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:29,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:29,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:29,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:30,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:56:30,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:56:30,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:30,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:30,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:30,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:30,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 17:56:30,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 17:56:30,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:33,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:33,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:33,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:33,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:56:33,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:56:33,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:34,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:34,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:34,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:34,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:56:34,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:56:34,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:34,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:34,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:34,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:34,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:56:34,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:56:34,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:35,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:35,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:35,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:35,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:56:35,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:56:35,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:35,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:35,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:35,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:35,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:56:35,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:56:35,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:36,279 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:56:36,300 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:56:36,376 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.412 +2025-10-01 17:56:36,376 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:56:36,376 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:56:36,537 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:56:36,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:56:36,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:56:36,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-01 17:56:36,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.130s/image) +2025-10-01 17:56:36,799 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:56:37,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:37,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:37,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:37,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:56:37,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:56:37,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:38,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:38,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:38,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:38,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:56:38,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:56:38,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:39,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:39,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:39,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:39,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 17:56:39,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 17:56:39,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:40,439 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:56:40,465 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:56:40,538 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.468 +2025-10-01 17:56:40,538 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:56:40,538 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 17:56:42,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:42,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:42,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:42,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:56:42,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:56:42,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:43,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:43,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:43,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:43,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:56:43,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:56:43,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:43,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:43,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:43,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:43,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:56:43,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:56:43,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:44,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:44,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:44,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:44,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:56:44,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:56:44,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:45,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:45,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:45,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:45,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:56:45,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:56:45,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:45,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:45,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:45,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:45,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:56:45,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:56:45,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:46,828 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:56:46,871 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:56:46,948 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.658 +2025-10-01 17:56:46,948 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:56:46,949 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:56:47,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:47,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:47,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:47,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 17:56:47,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 17:56:47,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:48,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:48,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:48,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:48,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:56:48,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:56:48,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:48,324 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:56:48,347 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:56:48,424 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.753 +2025-10-01 17:56:48,424 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:56:48,424 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:56:48,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:48,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:48,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:48,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 17:56:48,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 17:56:48,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:52,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:52,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:52,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:52,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 17:56:52,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 17:56:52,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:52,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:52,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:52,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:53,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 17:56:53,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 17:56:53,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:53,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:53,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:53,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:53,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:56:53,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:56:53,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:54,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:54,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:54,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:54,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:56:54,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:56:54,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:54,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:54,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:54,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:55,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:56:55,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:56:55,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:56,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:56,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:56,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:56,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 17:56:56,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 17:56:56,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:56:59,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:56:59,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:56:59,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:56:59,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:56:59,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:56:59,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:01,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:01,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:01,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:01,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:57:01,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:57:01,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:01,267 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:57:01,289 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:57:01,365 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.343 +2025-10-01 17:57:01,366 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:57:01,366 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:57:02,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:02,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:02,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:03,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 17:57:03,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 17:57:03,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:05,853 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:57:05,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:57:05,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:57:06,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 17:57:06,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 17:57:06,159 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:57:08,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:08,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:08,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:08,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:57:08,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:57:08,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:11,341 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:57:11,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:57:11,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:57:11,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.338s +2025-10-01 17:57:11,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.338s (avg: 0.169s/image) +2025-10-01 17:57:11,681 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:57:16,590 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:57:16,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:57:16,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:57:16,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 17:57:16,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 17:57:16,887 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:57:17,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:17,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:17,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:17,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 17:57:17,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 17:57:17,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:18,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:18,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:18,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:18,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:57:18,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:57:18,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:20,352 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:57:20,391 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:57:20,471 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.146 +2025-10-01 17:57:20,472 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 17:57:20,472 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 17:57:21,876 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:57:21,905 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:57:21,981 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.968 +2025-10-01 17:57:21,982 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:57:21,982 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:57:22,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:22,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:22,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:22,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:57:22,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:57:22,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:23,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:23,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:23,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:23,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:57:23,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:57:23,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:24,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:24,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:24,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:24,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:57:24,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:57:24,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:25,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:25,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:25,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:25,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:57:25,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:57:25,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:27,436 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:57:27,472 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:57:27,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.670 +2025-10-01 17:57:27,549 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:57:27,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 17:57:27,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:27,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:27,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:28,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:57:28,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:57:28,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:28,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:28,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:28,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:28,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:57:28,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:57:28,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:28,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:28,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:29,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:29,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 17:57:29,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 17:57:29,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:29,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:29,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:29,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:29,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 17:57:29,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 17:57:29,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:31,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:31,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:31,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:31,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:57:31,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:57:31,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:31,772 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:57:31,797 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:57:31,874 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.208 +2025-10-01 17:57:31,874 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:57:31,874 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:57:32,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:32,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:32,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:32,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:57:32,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:57:32,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:32,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:32,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:32,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:32,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:57:32,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:57:32,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:33,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:33,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:33,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:33,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:57:33,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:57:33,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:36,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:36,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:36,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:36,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:57:36,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:57:36,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:36,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:36,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:36,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:37,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:57:37,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:57:37,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:38,279 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:57:38,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:57:38,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:57:38,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 17:57:38,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 17:57:38,580 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:57:39,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:39,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:39,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:39,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:57:39,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:57:39,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:41,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:41,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:41,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:41,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:57:41,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:57:41,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:43,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:43,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:43,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:43,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:57:43,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:57:43,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:46,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:46,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:46,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:47,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:57:47,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:57:47,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:47,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:47,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:47,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:47,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:57:47,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:57:47,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:47,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:47,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:47,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:47,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:57:47,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:57:47,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:51,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:51,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:51,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:51,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:57:51,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:57:51,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:52,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:52,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:52,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:52,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:57:52,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:57:52,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:53,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:53,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:53,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:53,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:57:53,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:57:53,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:54,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:54,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:54,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:54,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:57:54,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:57:54,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:55,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:55,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:55,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:55,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:57:55,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:57:55,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:55,315 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:57:55,330 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:57:55,406 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.632 +2025-10-01 17:57:55,406 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:57:55,406 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 17:57:55,879 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:57:55,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:57:55,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:57:56,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 17:57:56,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 17:57:56,161 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:57:56,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:56,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:56,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:56,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:57:56,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:57:56,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:57,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:57,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:57,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:57,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:57:57,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:57:57,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:58,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:57:58,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:57:58,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:57:58,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:57:58,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:57:58,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:57:59,075 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:57:59,101 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:57:59,174 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.164 +2025-10-01 17:57:59,175 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 17:57:59,175 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 17:58:00,452 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:58:00,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:58:00,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:58:00,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-01 17:58:00,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-01 17:58:00,719 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:58:01,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:01,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:01,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:02,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:58:02,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:58:02,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:02,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:02,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:02,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:02,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 17:58:02,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 17:58:02,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:04,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:04,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:04,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:04,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:58:04,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:58:04,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:04,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:04,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:04,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:04,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:58:04,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:58:04,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:06,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:06,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:06,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:06,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:58:06,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:58:06,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:07,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:07,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:07,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:07,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:58:07,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:58:07,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:08,841 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:58:08,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:58:08,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:58:09,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 17:58:09,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 17:58:09,125 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:58:09,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:09,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:09,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:09,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:58:09,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:58:09,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:10,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:10,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:10,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:10,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 17:58:10,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 17:58:10,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:11,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:11,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:11,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:11,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 17:58:11,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 17:58:11,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:13,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:13,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:13,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:13,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 17:58:13,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 17:58:13,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:14,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:14,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:14,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:14,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 17:58:14,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 17:58:14,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:14,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:14,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:14,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:15,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:58:15,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:58:15,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:15,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:15,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:15,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:15,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:58:15,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:58:15,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:16,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:16,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:16,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:16,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:58:16,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:58:16,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:17,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:17,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:17,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:17,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:58:17,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:58:17,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:18,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:18,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:18,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:18,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:58:18,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:58:18,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:19,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:19,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:19,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:19,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 17:58:19,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 17:58:19,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:19,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:19,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:20,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:20,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:58:20,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:58:20,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:21,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:21,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:21,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:21,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:58:21,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:58:21,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:23,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:23,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:23,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:23,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 17:58:23,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 17:58:23,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:23,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:23,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:23,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:23,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:58:23,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:58:23,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:23,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:23,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:23,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:24,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:58:24,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:58:24,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:26,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:26,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:26,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:27,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 17:58:27,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 17:58:27,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:27,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:27,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:27,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:28,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:58:28,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:58:28,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:28,275 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:58:28,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:58:28,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:58:28,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 17:58:28,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 17:58:28,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:58:29,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:29,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:29,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:29,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 17:58:29,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 17:58:29,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:33,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:33,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:33,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:33,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:58:33,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:58:33,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:33,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:33,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:33,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:33,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:58:33,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:58:33,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:35,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:35,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:35,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:35,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:58:35,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:58:35,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:35,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:35,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:35,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:35,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:58:35,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:58:35,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:36,971 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:58:36,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:58:37,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:58:37,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 17:58:37,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 17:58:37,265 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:58:37,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:37,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:37,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:37,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 17:58:37,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 17:58:37,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:38,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:38,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:38,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:38,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 17:58:38,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 17:58:38,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:38,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:38,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:38,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:39,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:58:39,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:58:39,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:39,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:39,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:40,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:40,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:58:40,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:58:40,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:41,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:41,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:41,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:41,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:58:41,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:58:41,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:42,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:42,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:42,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:42,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:58:42,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:58:42,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:42,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:42,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:42,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:42,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 17:58:42,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 17:58:42,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:44,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:44,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:44,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:44,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:58:44,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:58:44,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:45,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:45,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:45,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:45,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:58:45,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:58:45,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:46,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:46,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:46,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:46,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:58:46,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:58:46,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:47,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:47,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:47,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:47,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:58:47,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:58:47,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:47,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:47,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:47,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:47,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:58:47,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:58:47,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:48,492 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:58:48,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:58:48,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:58:48,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 17:58:48,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-01 17:58:48,796 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:58:49,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:49,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:49,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:49,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:58:49,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:58:49,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:50,681 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:58:50,711 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:58:50,793 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.783 +2025-10-01 17:58:50,794 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 17:58:50,794 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 17:58:51,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:51,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:51,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:51,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:58:51,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:58:51,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:53,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:53,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:53,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:53,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:58:53,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:58:53,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:55,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:55,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:55,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:55,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:58:55,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:58:55,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:55,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:55,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:55,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:55,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:58:55,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:58:55,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:55,853 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:58:55,880 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:58:55,958 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.300 +2025-10-01 17:58:55,958 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 17:58:55,958 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:58:56,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:56,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:56,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:56,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:58:56,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:58:56,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:56,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:56,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:56,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:56,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 17:58:56,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 17:58:56,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:58,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:58,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:58,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:58,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:58:58,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:58:58,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:59,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:59,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:59,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:59,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 17:58:59,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 17:58:59,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:58:59,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:58:59,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:58:59,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:58:59,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 17:58:59,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 17:58:59,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:00,094 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:59:00,118 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:59:00,197 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.341 +2025-10-01 17:59:00,197 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:59:00,197 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:59:00,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:00,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:00,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:00,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 17:59:00,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 17:59:00,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:03,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:03,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:03,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:03,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:59:03,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:59:03,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:04,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:04,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:04,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:04,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:59:04,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:59:04,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:05,228 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:59:05,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:59:05,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:59:05,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 17:59:05,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 17:59:05,523 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:59:06,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:06,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:06,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:06,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:59:06,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:59:06,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:06,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:06,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:06,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:06,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 17:59:06,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 17:59:06,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:07,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:07,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:07,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:07,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:59:07,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:59:07,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:11,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:11,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:11,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:11,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 17:59:11,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 17:59:11,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:12,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:12,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:12,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:12,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 17:59:12,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 17:59:12,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:12,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:12,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:12,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:12,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:59:12,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:59:12,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:13,589 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:59:13,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:59:13,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:59:13,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 17:59:13,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 17:59:13,880 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:59:14,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:14,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:14,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:14,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:59:14,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:59:14,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:14,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:14,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:14,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:14,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 17:59:14,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 17:59:14,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:15,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:15,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:15,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:15,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 17:59:15,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 17:59:15,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:19,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:19,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:19,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:19,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 17:59:19,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 17:59:19,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:19,630 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:59:19,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:59:19,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:59:19,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 17:59:19,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 17:59:19,927 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:59:20,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:20,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:20,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:20,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 17:59:20,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 17:59:20,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:21,233 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:59:21,255 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:59:21,331 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.743 +2025-10-01 17:59:21,331 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 17:59:21,332 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:59:21,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:21,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:21,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:21,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:59:21,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:59:21,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:24,604 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:59:24,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:59:24,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:59:24,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 17:59:24,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 17:59:24,899 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:59:25,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:25,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:25,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:25,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-01 17:59:25,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-01 17:59:25,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:25,672 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 17:59:25,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 17:59:25,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 17:59:25,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 17:59:25,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 17:59:25,950 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 17:59:28,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:28,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:28,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:29,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 17:59:29,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 17:59:29,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:31,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:31,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:31,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:32,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 17:59:32,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 17:59:32,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:32,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:32,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:32,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:32,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:59:32,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:59:32,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:33,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:33,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:33,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:33,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:59:33,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:59:33,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:35,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:35,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:35,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:35,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 17:59:35,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 17:59:35,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:35,648 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:59:35,667 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:59:35,746 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.815 +2025-10-01 17:59:35,746 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 17:59:35,746 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 17:59:35,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:35,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:35,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:36,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 17:59:36,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 17:59:36,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:36,548 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:59:36,578 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:59:36,666 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.852 +2025-10-01 17:59:36,666 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 17:59:36,666 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 17:59:37,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:37,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:37,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:38,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 17:59:38,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 17:59:38,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:39,229 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:59:39,250 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:59:39,327 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.837 +2025-10-01 17:59:39,327 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 17:59:39,327 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 17:59:40,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:40,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:40,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:40,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 17:59:40,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 17:59:40,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:41,584 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:59:41,620 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:59:41,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=211.166 +2025-10-01 17:59:41,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 17:59:41,695 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 17:59:42,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:42,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:42,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:42,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 17:59:42,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 17:59:42,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:43,106 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:59:43,134 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:59:43,213 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.857 +2025-10-01 17:59:43,214 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 17:59:43,214 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 17:59:43,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:43,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:43,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:43,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 17:59:43,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 17:59:43,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:47,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:47,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:47,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:47,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 17:59:47,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 17:59:47,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:49,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:49,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:49,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:49,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 17:59:49,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 17:59:49,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:50,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:50,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:50,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:50,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:59:50,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:59:50,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:51,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:51,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:51,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:51,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 17:59:51,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 17:59:51,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:52,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:52,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:52,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:52,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 17:59:52,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 17:59:52,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:52,936 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:59:52,950 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:59:53,015 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.966 +2025-10-01 17:59:53,015 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.064s +2025-10-01 17:59:53,015 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.065s +2025-10-01 17:59:53,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:53,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:53,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:54,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 17:59:54,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 17:59:54,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:55,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 17:59:55,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 17:59:55,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 17:59:55,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 17:59:55,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 17:59:55,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 17:59:57,089 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 17:59:57,133 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 17:59:57,223 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.478 +2025-10-01 17:59:57,224 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 17:59:57,224 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 18:00:01,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:01,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:01,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:01,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:00:01,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:00:01,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:01,584 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:00:01,615 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:00:01,704 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.562 +2025-10-01 18:00:01,704 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 18:00:01,704 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 18:00:02,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:02,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:02,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:02,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:00:02,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:00:02,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:04,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:04,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:04,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:04,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:00:04,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:00:04,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:06,001 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:00:06,032 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:00:06,117 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.558 +2025-10-01 18:00:06,117 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:00:06,118 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 18:00:06,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:06,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:06,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:06,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:00:06,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:00:06,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:07,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:07,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:07,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:08,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:00:08,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:00:08,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:09,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:00:09,836 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:00:09,912 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.801 +2025-10-01 18:00:09,912 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:00:09,912 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:00:09,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:09,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:09,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:10,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:00:10,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:00:10,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:12,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:12,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:12,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:12,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:00:12,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:00:12,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:13,084 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:00:13,107 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:00:13,184 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.121 +2025-10-01 18:00:13,184 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:00:13,184 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:00:18,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:18,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:18,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:18,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:00:18,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:00:18,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:18,533 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:00:18,555 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:00:18,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=206.310 +2025-10-01 18:00:18,631 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:00:18,631 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:00:18,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:18,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:18,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:19,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:00:19,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:00:19,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:19,062 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:00:19,082 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:00:19,155 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.176 +2025-10-01 18:00:19,156 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:00:19,156 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:00:19,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:19,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:19,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:19,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:00:19,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:00:19,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:19,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:19,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:19,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:20,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:00:20,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:00:20,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:20,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:20,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:20,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:20,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:00:20,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:00:20,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:21,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:21,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:21,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:22,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:00:22,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:00:22,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:22,942 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:00:22,971 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:00:23,046 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.647 +2025-10-01 18:00:23,047 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:00:23,047 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:00:23,242 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:00:23,266 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:00:23,341 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.791 +2025-10-01 18:00:23,341 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:00:23,341 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:00:23,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:23,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:23,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:23,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:00:23,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:00:23,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:25,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:25,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:25,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:25,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:00:25,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:00:25,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:26,127 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:00:26,166 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:00:26,256 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.524 +2025-10-01 18:00:26,256 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 18:00:26,257 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 18:00:26,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:26,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:26,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:26,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:00:26,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:00:26,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:26,939 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:00:26,960 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:00:27,037 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.898 +2025-10-01 18:00:27,038 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:00:27,038 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:00:27,285 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:00:27,315 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:00:27,395 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=189.752 +2025-10-01 18:00:27,396 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:00:27,396 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:00:32,868 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:00:32,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:00:32,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:00:33,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 18:00:33,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 18:00:33,158 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:00:33,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:33,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:33,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:33,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:00:33,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:00:33,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:33,685 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:00:33,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:00:33,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:00:33,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 18:00:33,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 18:00:33,986 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:00:34,264 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:00:34,300 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:00:34,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=14.194 +2025-10-01 18:00:34,379 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:00:34,379 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:00:35,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:35,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:35,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:35,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:00:35,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:00:35,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:38,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:38,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:38,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:38,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:00:38,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:00:38,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:39,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:39,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:39,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:39,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:00:39,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:00:39,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:39,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:39,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:39,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:40,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:00:40,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:00:40,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:41,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:41,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:41,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:41,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:00:41,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:00:41,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:41,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:41,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:41,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:41,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:00:41,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:00:41,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:41,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:41,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:41,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:42,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:00:42,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:00:42,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:42,257 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:00:42,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:00:42,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:00:42,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-01 18:00:42,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.129s/image) +2025-10-01 18:00:42,518 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:00:44,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:44,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:44,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:44,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:00:44,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:00:44,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:44,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:44,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:45,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:45,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:00:45,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:00:45,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:46,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:46,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:46,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:46,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:00:46,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:00:46,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:46,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:46,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:46,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:47,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:00:47,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:00:47,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:47,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:47,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:47,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:47,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:00:47,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:00:47,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:48,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:48,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:48,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:48,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:00:48,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:00:48,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:48,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:48,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:48,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:48,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:00:48,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:00:48,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:49,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:49,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:49,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:49,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:00:49,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:00:49,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:49,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:49,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:49,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:49,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:00:49,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:00:49,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:50,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:50,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:50,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:50,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:00:50,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:00:50,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:51,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:51,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:51,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:51,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:00:51,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:00:51,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:52,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:52,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:52,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:53,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:00:53,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:00:53,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:53,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:53,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:53,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:53,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:00:53,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:00:53,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:54,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:54,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:54,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:54,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:00:54,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:00:54,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:55,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:55,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:55,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:55,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:00:55,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:00:55,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:56,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:56,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:56,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:56,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:00:56,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:00:56,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:58,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:58,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:58,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:58,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:00:58,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:00:58,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:00:59,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:00:59,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:00:59,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:00:59,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:00:59,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:00:59,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:00,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:00,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:00,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:00,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:01:00,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:01:00,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:03,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:03,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:03,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:04,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:01:04,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:01:04,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:05,371 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:01:05,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:01:05,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:01:05,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.318s +2025-10-01 18:01:05,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.318s (avg: 0.159s/image) +2025-10-01 18:01:05,691 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:01:05,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:05,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:05,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:06,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:01:06,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:01:06,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:06,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:06,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:06,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:06,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:01:06,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:01:06,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:07,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:07,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:07,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:07,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:01:07,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:01:07,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:07,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:07,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:07,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:07,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:01:07,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:01:07,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:09,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:09,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:09,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:09,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:01:09,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:01:09,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:10,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:10,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:10,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:10,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:01:10,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:01:10,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:11,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:11,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:11,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:11,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:01:11,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:01:11,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:12,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:12,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:12,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:12,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:01:12,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:01:12,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:13,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:13,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:13,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:13,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:01:13,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:01:13,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:14,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:14,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:14,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:14,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:01:14,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:01:14,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:17,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:17,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:17,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:17,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:01:17,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:01:17,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:17,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:17,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:18,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:18,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:01:18,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:01:18,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:18,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:18,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:18,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:18,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:01:18,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:01:18,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:22,047 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:01:22,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:01:22,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:01:22,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 18:01:22,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 18:01:22,345 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:01:22,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:22,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:22,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:22,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:01:22,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:01:22,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:23,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:23,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:23,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:23,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:01:23,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:01:23,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:24,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:24,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:24,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:24,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:01:24,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:01:24,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:26,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:26,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:26,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:26,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:01:26,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:01:26,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:27,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:27,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:27,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:27,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:01:27,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:01:27,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:27,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:27,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:27,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:27,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:01:27,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:01:27,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:30,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:30,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:30,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:30,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:01:30,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:01:30,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:30,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:30,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:30,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:30,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:01:30,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:01:30,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:31,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:31,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:31,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:31,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:01:31,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:01:31,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:31,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:31,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:31,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:32,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:01:32,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:01:32,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:34,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:34,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:34,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:34,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 18:01:34,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 18:01:34,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:34,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:34,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:34,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:34,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:01:34,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:01:34,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:35,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:35,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:35,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:35,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:01:35,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:01:35,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:35,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:35,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:35,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:35,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:01:35,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:01:35,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:39,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:39,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:39,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:39,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:01:39,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:01:39,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:39,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:39,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:39,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:39,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:01:39,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:01:39,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:40,428 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:01:40,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:01:40,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:01:40,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 18:01:40,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 18:01:40,717 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:01:42,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:42,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:42,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:42,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:01:42,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:01:42,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:44,457 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:01:44,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:01:44,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:01:44,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 18:01:44,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 18:01:44,760 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:01:45,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:45,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:45,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:45,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:01:45,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:01:45,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:49,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:49,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:49,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:49,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:01:49,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:01:49,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:49,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:49,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:49,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:50,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:01:50,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:01:50,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:50,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:50,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:50,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:50,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:01:50,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:01:50,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:50,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:50,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:50,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:50,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:01:50,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:01:50,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:51,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:51,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:51,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:51,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:01:51,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:01:51,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:54,694 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:01:54,736 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:01:54,835 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.580 +2025-10-01 18:01:54,835 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-01 18:01:54,835 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 18:01:55,706 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:01:55,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:01:55,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:01:56,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 18:01:56,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 18:01:56,007 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:01:56,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:56,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:56,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:01:56,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:01:56,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:01:56,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:01:56,539 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:01:56,578 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:01:56,660 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.392 +2025-10-01 18:01:56,660 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:01:56,660 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:01:59,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:01:59,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:01:59,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:00,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:02:00,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:02:00,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:00,163 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:00,184 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:00,260 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.538 +2025-10-01 18:02:00,260 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:02:00,261 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:02:01,191 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:01,241 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:01,334 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.243 +2025-10-01 18:02:01,334 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 18:02:01,334 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 18:02:02,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:02,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:02,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:03,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:02:03,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:02:03,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:03,414 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:02:03,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:02:03,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:02:03,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 18:02:03,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 18:02:03,695 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:02:04,061 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:04,096 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:04,176 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.452 +2025-10-01 18:02:04,176 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:02:04,176 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:02:05,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:05,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:05,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:05,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:02:05,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:02:05,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:09,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:09,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:09,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:09,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:02:09,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:02:09,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:11,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:11,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:11,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:11,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 18:02:11,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 18:02:11,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:11,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:11,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:11,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:12,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:02:12,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:02:12,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:12,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:12,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:12,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:12,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:02:12,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:02:12,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:13,048 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:13,092 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:13,183 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.920 +2025-10-01 18:02:13,183 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 18:02:13,183 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 18:02:13,557 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:02:13,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:02:13,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:02:13,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 18:02:13,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 18:02:13,844 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:02:14,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:14,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:14,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:14,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:02:14,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:02:14,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:15,225 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:15,261 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:15,339 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.550 +2025-10-01 18:02:15,339 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:02:15,339 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:02:15,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:15,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:15,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:15,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:02:15,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:02:15,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:17,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:17,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:17,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:17,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:02:17,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:02:17,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:17,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:17,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:17,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:18,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:02:18,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:02:18,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:19,579 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:19,608 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:19,693 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.348 +2025-10-01 18:02:19,694 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:02:19,694 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 18:02:20,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:20,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:20,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:20,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:02:20,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:02:20,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:20,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:20,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:20,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:20,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:02:20,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:02:20,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:21,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:21,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:21,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:21,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:02:21,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:02:21,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:21,746 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:02:21,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:02:21,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:02:22,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 18:02:22,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 18:02:22,023 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:02:23,394 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:23,417 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:23,504 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.666 +2025-10-01 18:02:23,504 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:02:23,504 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 18:02:26,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:26,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:26,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:27,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:02:27,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:02:27,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:27,073 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:27,086 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:27,161 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.246 +2025-10-01 18:02:27,162 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:02:27,162 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:02:27,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:27,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:28,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:28,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:02:28,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:02:28,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:28,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:28,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:28,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:28,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:02:28,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:02:28,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:29,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:29,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:29,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:29,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:02:29,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:02:29,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:30,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:30,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:30,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:30,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:02:30,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:02:30,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:30,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:30,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:30,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:30,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:02:30,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:02:30,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:33,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:33,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:33,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:33,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:02:33,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:02:33,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:34,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:34,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:34,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:34,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:02:34,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:02:34,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:35,191 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:35,218 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:35,292 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.977 +2025-10-01 18:02:35,292 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:02:35,292 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:02:35,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:35,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:35,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:35,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:02:35,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:02:35,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:37,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:37,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:37,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:37,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:02:37,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:02:37,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:38,548 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:38,575 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:38,655 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.673 +2025-10-01 18:02:38,656 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:02:38,656 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:02:38,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:38,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:39,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:39,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:02:39,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:02:39,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:39,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:39,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:39,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:39,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:02:39,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:02:39,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:40,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:40,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:40,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:40,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:02:40,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:02:40,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:41,944 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:41,969 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:42,046 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.676 +2025-10-01 18:02:42,047 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:02:42,047 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:02:43,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:43,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:43,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:43,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:02:43,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:02:43,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:46,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:46,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:46,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:46,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:02:46,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:02:46,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:46,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:46,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:46,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:46,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:02:46,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:02:46,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:51,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:51,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:51,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:51,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:02:51,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:02:51,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:54,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:54,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:55,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:55,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:02:55,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:02:55,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:57,136 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:57,169 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:57,248 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.890 +2025-10-01 18:02:57,249 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:02:57,249 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:02:57,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:57,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:57,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:57,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:02:57,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:02:57,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:58,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:02:58,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:02:58,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:02:58,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:02:58,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:02:58,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:02:59,776 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:02:59,810 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:02:59,888 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.526 +2025-10-01 18:02:59,888 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:02:59,889 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:03:00,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:00,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:00,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:00,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:03:00,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:03:00,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:01,673 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:01,708 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:01,789 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.452 +2025-10-01 18:03:01,789 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:03:01,790 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:03:02,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:02,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:02,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:02,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:03:02,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:03:02,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:03,736 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:03,773 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:03,851 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.304 +2025-10-01 18:03:03,852 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:03:03,852 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:03:05,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:05,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:05,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:05,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:03:05,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:03:05,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:05,829 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:05,857 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(828, 828, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:05,935 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.707 +2025-10-01 18:03:05,936 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:03:05,936 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:03:06,439 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:03:06,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:03:06,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:03:06,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 18:03:06,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 18:03:06,738 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:03:07,736 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:07,759 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:07,838 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.188 +2025-10-01 18:03:07,838 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:03:07,838 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:03:09,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:09,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:09,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:09,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:03:09,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:03:09,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:10,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:10,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:10,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:10,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:03:10,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:03:10,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:14,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:14,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:14,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:15,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:03:15,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:03:15,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:15,293 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:03:15,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:03:15,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:03:15,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 18:03:15,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 18:03:15,585 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:03:16,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:16,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:16,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:16,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:03:16,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:03:16,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:18,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:18,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:18,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:18,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:03:18,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:03:18,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:18,599 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:18,622 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:18,693 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.443 +2025-10-01 18:03:18,693 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:03:18,694 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 18:03:19,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:19,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:19,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:19,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:03:19,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:03:19,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:19,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:19,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:20,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:20,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:03:20,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:03:20,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:20,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:20,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:20,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:20,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:03:20,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:03:20,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:22,473 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:22,504 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:22,577 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.810 +2025-10-01 18:03:22,577 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:03:22,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:03:22,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:22,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:22,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:22,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:03:22,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:03:22,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:23,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:23,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:23,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:23,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:03:23,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:03:23,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:23,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:23,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:23,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:23,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-01 18:03:23,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-01 18:03:23,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:24,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:24,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:24,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:24,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:03:24,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:03:24,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:24,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:24,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:24,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:24,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:03:24,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:03:24,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:24,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:24,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:24,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:24,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:03:24,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:03:24,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:25,633 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:25,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:25,741 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.250 +2025-10-01 18:03:25,741 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:03:25,741 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:03:25,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:25,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:25,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:26,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:03:26,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:03:26,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:26,454 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:26,482 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(997, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:26,560 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.664 +2025-10-01 18:03:26,560 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:03:26,560 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:03:26,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:26,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:26,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:26,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-01 18:03:26,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-01 18:03:26,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:27,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:27,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:27,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:27,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:03:27,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:03:27,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:28,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:28,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:28,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:28,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:03:28,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:03:28,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:29,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:29,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:29,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:29,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:03:29,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:03:29,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:32,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:32,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:32,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:33,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:03:33,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:03:33,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:33,325 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:33,357 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:33,431 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.332 +2025-10-01 18:03:33,431 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:03:33,431 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:03:33,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:33,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:33,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:33,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:03:33,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:03:33,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:33,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:33,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:33,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:34,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:03:34,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:03:34,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:34,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:34,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:34,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:34,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:03:34,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:03:34,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:35,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:35,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:35,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:35,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:03:35,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:03:35,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:36,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:36,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:36,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:36,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:03:36,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:03:36,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:36,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:36,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:36,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:36,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:03:36,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:03:36,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:37,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:37,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:37,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:37,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:03:37,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:03:37,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:37,494 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:37,528 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:37,602 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.059 +2025-10-01 18:03:37,602 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:03:37,602 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:03:37,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:37,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:37,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:37,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:03:37,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:03:37,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:38,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:38,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:38,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:38,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:03:38,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:03:38,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:39,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:39,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:39,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:39,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:03:39,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:03:39,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:40,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:40,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:40,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:40,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:03:40,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:03:40,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:41,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:41,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:41,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:41,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:03:41,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:03:41,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:41,640 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:41,659 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:41,727 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.088 +2025-10-01 18:03:41,727 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 18:03:41,727 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 18:03:41,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:41,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:41,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:42,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:03:42,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:03:42,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:42,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:42,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:42,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:42,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:03:42,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:03:42,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:42,718 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:03:42,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:03:42,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:03:42,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 18:03:42,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 18:03:42,998 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:03:43,342 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:03:43,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:03:43,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:03:43,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.252s +2025-10-01 18:03:43,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.252s (avg: 0.126s/image) +2025-10-01 18:03:43,595 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:03:46,501 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:03:46,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:03:46,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:03:46,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 18:03:46,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-01 18:03:46,806 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:03:46,895 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:46,915 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:46,992 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.701 +2025-10-01 18:03:46,992 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:03:46,992 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:03:47,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:47,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:47,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:47,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:03:47,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:03:47,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:47,645 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:03:47,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:03:47,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:03:47,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-01 18:03:47,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-01 18:03:47,913 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:03:49,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:49,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:49,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:49,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:03:49,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:03:49,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:50,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:50,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:50,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:50,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:03:50,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:03:50,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:51,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:51,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:51,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:51,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:03:51,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:03:51,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:51,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:51,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:51,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:51,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:03:51,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:03:51,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:52,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:52,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:52,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:52,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:03:52,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:03:52,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:53,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:53,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:53,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:53,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:03:53,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:03:53,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:53,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:53,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:53,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:53,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:03:53,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:03:53,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:57,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:57,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:57,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:57,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:03:57,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:03:57,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:57,710 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:03:57,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:03:57,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:03:57,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 18:03:57,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-01 18:03:57,982 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:03:58,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:58,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:58,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:58,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:03:58,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:03:58,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:58,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:03:58,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:03:58,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:03:58,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:03:58,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:03:58,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:03:59,880 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:03:59,904 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:03:59,978 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.563 +2025-10-01 18:03:59,978 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:03:59,978 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:04:00,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:00,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:00,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:00,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:04:00,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:04:00,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:01,892 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:04:01,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:04:01,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:04:02,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 18:04:02,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 18:04:02,179 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:04:03,645 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:04:03,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:04:03,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:04:03,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 18:04:03,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 18:04:03,924 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:04:04,094 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:04,109 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:04,183 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.843 +2025-10-01 18:04:04,183 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:04:04,183 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:04:07,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:07,383 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:07,460 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.082 +2025-10-01 18:04:07,460 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:04:07,461 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:04:07,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:07,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:07,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:07,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:04:07,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:04:07,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:08,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:08,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:08,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:08,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:04:08,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:04:08,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:09,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:09,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:09,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:09,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:04:09,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:04:09,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:09,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:09,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:09,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:10,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:04:10,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:04:10,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:13,135 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:13,173 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:13,255 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.933 +2025-10-01 18:04:13,255 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:04:13,255 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:04:15,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:15,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:15,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:15,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 18:04:15,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 18:04:15,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:16,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:16,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:16,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:16,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 18:04:16,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 18:04:16,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:16,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:16,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:16,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:16,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:04:16,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:04:16,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:17,886 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:17,916 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:17,993 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.558 +2025-10-01 18:04:17,993 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:04:17,993 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:04:20,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:20,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:20,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:20,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:04:20,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:04:20,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:22,360 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:22,392 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:22,476 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.542 +2025-10-01 18:04:22,476 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:04:22,476 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:04:23,167 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:04:23,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:04:23,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:04:23,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 18:04:23,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 18:04:23,474 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:04:24,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:24,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:24,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:24,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:04:24,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:04:24,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:24,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:24,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:24,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:24,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:04:24,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:04:24,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:26,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:26,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:26,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:26,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:04:26,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:04:26,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:28,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:28,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:28,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:28,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:04:28,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:04:28,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:29,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:29,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:29,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:29,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:04:29,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:04:29,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:31,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:31,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:31,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:31,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:04:31,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:04:31,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:32,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:32,552 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:32,628 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.973 +2025-10-01 18:04:32,628 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:04:32,628 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:04:33,225 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:04:33,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:04:33,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:04:33,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 18:04:33,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 18:04:33,517 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:04:34,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:34,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:34,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:34,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:04:34,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:04:34,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:35,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:35,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:35,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:35,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:04:35,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:04:35,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:35,903 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:35,943 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:36,039 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.783 +2025-10-01 18:04:36,040 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 18:04:36,040 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 18:04:36,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:36,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:36,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:36,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:04:36,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:04:36,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:36,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:36,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:36,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:37,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:04:37,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:04:37,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:39,885 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:04:39,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:04:39,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:04:40,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s +2025-10-01 18:04:40,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.156s/image) +2025-10-01 18:04:40,199 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:04:40,272 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:40,302 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:40,389 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.255 +2025-10-01 18:04:40,390 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 18:04:40,390 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 18:04:40,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:40,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:40,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:40,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:04:40,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:04:40,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:43,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:43,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:43,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:43,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:04:43,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:04:43,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:44,279 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:44,311 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:44,397 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.856 +2025-10-01 18:04:44,397 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:04:44,397 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:04:44,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:44,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:44,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:45,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:04:45,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:04:45,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:45,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:45,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:45,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:45,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:04:45,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:04:45,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:46,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:46,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:46,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:46,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 18:04:46,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 18:04:46,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:47,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:47,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:47,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:47,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:04:47,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:04:47,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:48,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:48,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:48,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:49,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:04:49,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:04:49,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:49,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:49,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:49,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:49,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:04:49,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:04:49,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:50,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:50,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:51,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:51,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:04:51,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:04:51,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:52,142 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:52,167 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:52,247 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.926 +2025-10-01 18:04:52,247 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:04:52,248 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:04:53,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:53,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:53,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:53,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:04:53,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:04:53,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:54,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:54,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:54,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:54,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:04:54,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:04:54,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:55,362 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:55,386 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:55,462 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.513 +2025-10-01 18:04:55,462 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:04:55,462 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:04:56,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:56,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:56,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:56,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:04:56,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:04:56,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:57,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:57,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:57,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:57,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:04:57,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:04:57,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:04:58,455 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:58,490 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:58,569 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.241 +2025-10-01 18:04:58,570 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:04:58,570 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:04:58,722 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:04:58,743 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:04:58,818 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.689 +2025-10-01 18:04:58,818 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:04:58,818 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:04:59,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:04:59,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:04:59,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:04:59,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:04:59,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:04:59,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:00,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:00,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:00,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:01,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:05:01,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:05:01,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:04,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:04,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:04,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:04,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:05:04,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:05:04,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:05,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:05,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:05,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:05,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:05:05,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:05:05,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:06,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:06,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:06,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:06,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:05:06,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:05:06,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:07,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:07,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:07,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:07,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:05:07,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:05:07,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:08,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:08,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:08,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:08,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:05:08,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:05:08,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:08,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:08,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:08,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:08,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:05:08,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:05:08,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:09,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:09,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:09,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:09,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:05:09,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:05:09,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:10,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:10,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:10,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:10,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:05:10,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:05:10,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:12,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:12,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:12,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:12,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:05:12,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:05:12,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:13,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:13,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:13,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:13,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:05:13,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:05:13,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:14,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:14,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:14,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:14,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:05:14,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:05:14,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:15,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:15,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:15,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:15,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:05:15,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:05:15,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:15,560 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 18:05:15,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 18:05:15,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 18:05:15,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.398s +2025-10-01 18:05:15,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.398s (avg: 0.133s/image) +2025-10-01 18:05:15,960 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 18:05:16,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:16,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:16,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:16,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:05:16,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:05:16,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:17,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:17,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:17,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:18,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:05:18,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:05:18,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:20,235 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:05:20,247 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(614, 740, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:05:20,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.752 +2025-10-01 18:05:20,320 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:05:20,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:05:20,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:20,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:20,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:20,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:05:20,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:05:20,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:21,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:21,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:21,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:21,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:05:21,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:05:21,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:25,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:25,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:25,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:25,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:05:25,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:05:25,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:25,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:25,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:25,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:25,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:05:25,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:05:25,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:25,972 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:05:25,991 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(658, 689, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:05:26,063 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.607 +2025-10-01 18:05:26,063 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:05:26,063 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:05:26,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:26,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:26,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:26,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:05:26,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:05:26,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:27,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:27,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:27,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:27,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:05:27,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:05:27,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:28,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:28,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:28,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:29,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:05:29,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:05:29,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:31,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:31,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:31,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:31,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:05:31,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:05:31,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:32,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:32,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:32,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:32,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:05:32,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:05:32,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:33,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:33,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:33,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:33,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:05:33,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:05:33,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:34,321 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:05:34,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:05:34,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:05:34,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 18:05:34,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 18:05:34,601 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:05:35,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:35,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:35,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:36,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:05:36,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:05:36,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:38,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:38,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:39,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:39,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:05:39,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:05:39,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:39,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:39,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:39,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:39,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:05:39,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:05:39,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:40,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:40,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:40,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:40,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:05:40,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:05:40,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:40,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:40,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:40,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:40,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:05:40,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:05:40,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:43,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:43,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:43,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:43,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:05:43,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:05:43,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:44,151 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:05:44,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:05:44,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:05:44,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 18:05:44,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 18:05:44,446 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:05:45,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:45,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:45,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:45,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:05:45,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:05:45,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:45,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:45,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:45,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:45,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:05:45,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:05:45,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:46,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:46,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:46,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:46,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:05:46,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:05:46,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:48,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:48,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:48,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:48,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:05:48,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:05:48,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:49,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:49,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:49,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:49,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:05:49,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:05:49,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:50,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:50,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:50,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:50,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:05:50,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:05:50,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:51,133 - app.core.batch_manager - INFO - Creating a new batch with 4 jobs. +2025-10-01 18:05:51,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 4). VRAM: 0.0 GB +2025-10-01 18:05:51,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 4개 이미지 인페인팅 수행 +2025-10-01 18:05:51,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 4). VRAM: 0.0 GB | Duration: 0.567s +2025-10-01 18:05:51,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 4 processed in 0.567s (avg: 0.142s/image) +2025-10-01 18:05:51,701 - app.core.batch_manager - INFO - Successfully processed batch of 4 jobs. +2025-10-01 18:05:52,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:52,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:52,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:52,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:05:52,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:05:52,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:54,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:54,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:54,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:54,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:05:54,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:05:54,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:55,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:55,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:55,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:55,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:05:55,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:05:55,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:59,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:59,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:59,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:05:59,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:05:59,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:05:59,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:05:59,362 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:05:59,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:05:59,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:05:59,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 18:05:59,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 18:05:59,669 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:05:59,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:05:59,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:05:59,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:00,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:06:00,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:06:00,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:00,200 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:06:00,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:06:00,297 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.752 +2025-10-01 18:06:00,297 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:06:00,297 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:06:01,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:01,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:01,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:01,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:06:01,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:06:01,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:02,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:02,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:02,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:02,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 18:06:02,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 18:06:02,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:02,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:02,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:02,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:03,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:06:03,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:06:03,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:03,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:03,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:03,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:03,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:06:03,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:06:03,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:03,761 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:06:03,795 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:06:03,878 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.659 +2025-10-01 18:06:03,878 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 18:06:03,878 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:06:07,043 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:06:07,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:06:07,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:06:07,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 18:06:07,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 18:06:07,339 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:06:09,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:09,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:09,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:09,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:06:09,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:06:09,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:10,458 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:06:10,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:06:10,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:06:10,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 18:06:10,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +2025-10-01 18:06:10,766 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:06:10,888 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:06:10,904 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:06:10,978 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.528 +2025-10-01 18:06:10,979 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:06:10,979 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:06:10,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:10,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:11,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:11,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:06:11,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:06:11,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:14,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:14,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:14,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:14,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:06:14,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:06:14,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:15,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:15,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:15,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:15,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:06:15,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:06:15,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:15,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:15,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:15,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:15,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:06:15,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:06:15,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:16,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:16,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:16,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:16,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:06:16,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:06:16,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:17,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:17,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:17,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:17,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:06:17,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:06:17,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:18,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:18,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:19,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:19,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:06:19,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:06:19,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:19,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:19,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:19,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:19,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:06:19,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:06:19,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:19,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:19,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:19,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:20,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:06:20,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:06:20,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:20,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:20,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:20,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:20,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:06:20,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:06:20,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:20,686 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:06:20,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:06:20,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:06:20,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-01 18:06:20,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.131s/image) +2025-10-01 18:06:20,949 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:06:23,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:23,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:23,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:23,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:06:23,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:06:23,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:24,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:24,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:24,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:24,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:06:24,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:06:24,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:25,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:25,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:25,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:25,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.208s +2025-10-01 18:06:25,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.208s (avg: 0.208s/image) +2025-10-01 18:06:25,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:25,524 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:06:25,550 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:06:25,626 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.971 +2025-10-01 18:06:25,626 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:06:25,626 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:06:26,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:26,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:26,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:26,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:06:26,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:06:26,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:27,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:27,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:27,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:27,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:06:27,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:06:27,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:27,624 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:06:27,641 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:06:27,713 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.802 +2025-10-01 18:06:27,714 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:06:27,714 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:06:28,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:28,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:28,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:28,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:06:28,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:06:28,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:28,441 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:06:28,458 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:06:28,535 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.085 +2025-10-01 18:06:28,535 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:06:28,535 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:06:29,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:29,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:29,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:29,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:06:29,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:06:29,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:29,909 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:06:29,932 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:06:30,012 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.832 +2025-10-01 18:06:30,012 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:06:30,013 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:06:31,232 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:06:31,260 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:06:31,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.129 +2025-10-01 18:06:31,337 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:06:31,337 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:06:32,148 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:06:32,174 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:06:32,248 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.542 +2025-10-01 18:06:32,249 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:06:32,249 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:06:33,046 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:06:33,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:06:33,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:06:33,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 18:06:33,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 18:06:33,337 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:06:34,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:34,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:34,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:34,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:06:34,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:06:34,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:34,596 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:06:34,621 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:06:34,705 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.320 +2025-10-01 18:06:34,705 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 18:06:34,706 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 18:06:34,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:34,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:34,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:35,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:06:35,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:06:35,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:35,612 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:06:35,642 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:06:35,724 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.058 +2025-10-01 18:06:35,725 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:06:35,725 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:06:36,785 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:06:36,819 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:06:36,902 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=241.461 +2025-10-01 18:06:36,902 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:06:36,902 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:06:39,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:39,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:39,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:39,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:06:39,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:06:39,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:41,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:41,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:41,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:41,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:06:41,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:06:41,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:43,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:43,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:43,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:43,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:06:43,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:06:43,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:44,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:44,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:44,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:45,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:06:45,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:06:45,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:45,491 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:06:45,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:06:45,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:06:45,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 18:06:45,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 18:06:45,771 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:06:45,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:45,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:45,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:46,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:06:46,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:06:46,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:51,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:51,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:51,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:51,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:06:51,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:06:51,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:54,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:54,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:54,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:54,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:06:54,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:06:54,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:06:55,004 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:06:55,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:06:55,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:06:55,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.255s +2025-10-01 18:06:55,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.255s (avg: 0.128s/image) +2025-10-01 18:06:55,261 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:06:57,260 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:06:57,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:06:57,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:06:57,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 18:06:57,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 18:06:57,567 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:06:57,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:06:57,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:06:58,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:06:58,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:06:58,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:06:58,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:00,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:00,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:01,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:01,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:07:01,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:07:01,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:01,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:01,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:01,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:01,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:07:01,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:07:01,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:02,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:02,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:02,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:02,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:07:02,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:07:02,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:02,836 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:07:02,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:07:02,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:07:03,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.254s +2025-10-01 18:07:03,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.254s (avg: 0.127s/image) +2025-10-01 18:07:03,091 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:07:03,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:07:04,005 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:07:04,078 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.768 +2025-10-01 18:07:04,079 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:07:04,079 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:07:07,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:07,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:07,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:07,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:07:07,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:07:07,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:07,989 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:07:07,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:07:08,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:07:08,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-01 18:07:08,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-01 18:07:08,260 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:07:08,757 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:07:08,775 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:07:08,848 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.558 +2025-10-01 18:07:08,848 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:07:08,848 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:07:08,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:08,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:08,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:09,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:07:09,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:07:09,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:11,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:11,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:11,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:11,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 18:07:11,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 18:07:11,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:12,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:12,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:12,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:12,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:07:12,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:07:12,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:13,450 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:07:13,478 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:07:13,558 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.512 +2025-10-01 18:07:13,559 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:07:13,559 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:07:13,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:13,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:13,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:14,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:07:14,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:07:14,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:14,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:14,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:14,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:14,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:07:14,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:07:14,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:15,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:15,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:15,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:15,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:07:15,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:07:15,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:16,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:16,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:16,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:16,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:07:16,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:07:16,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:18,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:18,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:18,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:18,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:07:18,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:07:18,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:19,648 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:07:19,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:07:19,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:07:19,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 18:07:19,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 18:07:19,940 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:07:20,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:20,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:20,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:20,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:07:20,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:07:20,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:21,730 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:07:21,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:07:21,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:07:22,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 18:07:22,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 18:07:22,022 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:07:23,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:23,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:23,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:23,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:07:23,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:07:23,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:23,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:23,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:23,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:23,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:07:23,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:07:23,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:23,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:23,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:23,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:24,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:07:24,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:07:24,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:25,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:25,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:25,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:25,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:07:25,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:07:25,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:27,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:27,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:27,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:27,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:07:27,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:07:27,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:27,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:07:27,511 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:07:27,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=242.571 +2025-10-01 18:07:27,587 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:07:27,588 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:07:27,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:27,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:27,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:27,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:07:27,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:07:27,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:28,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:28,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:28,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:29,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:07:29,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:07:29,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:30,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:30,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:30,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:31,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:07:31,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:07:31,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:31,494 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:07:31,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:07:31,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:07:31,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 18:07:31,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 18:07:31,777 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:07:32,257 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:07:32,293 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:07:32,370 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=248.836 +2025-10-01 18:07:32,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:07:32,370 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:07:32,853 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:07:32,882 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:07:32,961 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.636 +2025-10-01 18:07:32,961 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:07:32,961 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:07:33,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:33,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:33,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:33,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:07:33,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:07:33,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:33,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:33,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:33,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:33,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:07:33,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:07:33,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:33,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:33,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:34,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:34,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:07:34,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:07:34,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:34,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:34,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:35,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:35,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-01 18:07:35,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-01 18:07:35,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:36,097 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:07:36,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:07:36,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:07:36,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 18:07:36,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +2025-10-01 18:07:36,362 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:07:36,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:36,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:36,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:36,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:07:36,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:07:36,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:36,761 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:07:36,784 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:07:36,854 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=223.530 +2025-10-01 18:07:36,855 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 18:07:36,855 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 18:07:36,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:36,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:36,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:37,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 18:07:37,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 18:07:37,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:37,884 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:07:37,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:07:37,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:07:38,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.242s +2025-10-01 18:07:38,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.242s (avg: 0.121s/image) +2025-10-01 18:07:38,128 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:07:38,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:38,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:38,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:38,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:07:38,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:07:38,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:39,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:39,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:39,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:39,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:07:39,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:07:39,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:39,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:39,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:39,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:39,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.123s +2025-10-01 18:07:39,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.123s (avg: 0.123s/image) +2025-10-01 18:07:39,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:39,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:39,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:40,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:40,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 18:07:40,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 18:07:40,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:42,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:42,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:42,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:42,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-01 18:07:42,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-01 18:07:42,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:42,451 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:07:42,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:07:42,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:07:42,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 18:07:42,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 18:07:42,748 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:07:43,486 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:07:43,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:07:43,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:07:43,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 18:07:43,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 18:07:43,762 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:07:45,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:45,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:45,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:45,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:07:45,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:07:45,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:45,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:45,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:45,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:45,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +2025-10-01 18:07:45,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +2025-10-01 18:07:45,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:46,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:46,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:46,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:46,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:07:46,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:07:46,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:47,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:47,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:47,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:47,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-01 18:07:47,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-01 18:07:47,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:47,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:47,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:47,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:47,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:07:47,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:07:47,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:50,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:50,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:50,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:50,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:07:50,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:07:50,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:50,967 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:07:50,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:07:51,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:07:51,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 18:07:51,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 18:07:51,240 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:07:53,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:53,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:53,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:53,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:07:53,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:07:53,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:54,481 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:07:54,521 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:07:54,597 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.875 +2025-10-01 18:07:54,597 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:07:54,597 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:07:54,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:54,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:55,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:55,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:07:55,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:07:55,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:55,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:55,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:55,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:55,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:07:55,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:07:55,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:56,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:56,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:56,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:56,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:07:56,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:07:56,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:57,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:07:57,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:07:57,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:07:57,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:07:57,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:07:57,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:07:58,252 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:07:58,277 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:07:58,352 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.243 +2025-10-01 18:07:58,352 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:07:58,352 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:08:00,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:00,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:00,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:00,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:08:00,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:08:00,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:00,829 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:08:00,863 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:08:00,939 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.149 +2025-10-01 18:08:00,939 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:08:00,940 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:08:02,507 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:08:02,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:08:02,610 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.129 +2025-10-01 18:08:02,610 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:08:02,610 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:08:04,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:04,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:04,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:05,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:08:05,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:08:05,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:05,482 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:08:05,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:08:05,583 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.481 +2025-10-01 18:08:05,584 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:08:05,584 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:08:05,737 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:08:05,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:08:05,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:08:06,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 18:08:06,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 18:08:06,025 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:08:06,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:06,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:06,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:06,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:08:06,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:08:06,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:07,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:07,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:07,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:07,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:08:07,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:08:07,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:09,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:09,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:09,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:09,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:08:09,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:08:09,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:09,530 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:08:09,553 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:08:09,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.832 +2025-10-01 18:08:09,631 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:08:09,631 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:08:10,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:10,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:10,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:10,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:08:10,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:08:10,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:11,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:11,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:11,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:11,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:08:11,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:08:11,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:12,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:12,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:12,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:13,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:08:13,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:08:13,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:13,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:13,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:13,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:13,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:08:13,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:08:13,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:14,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:14,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:14,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:14,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:08:14,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:08:14,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:16,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:16,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:16,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:16,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:08:16,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:08:16,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:18,983 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:08:18,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:08:19,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:08:19,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 18:08:19,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 18:08:19,275 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:08:20,216 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:08:20,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:08:20,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:08:20,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 18:08:20,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 18:08:20,495 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:08:22,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:22,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:22,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:22,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:08:22,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:08:22,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:23,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:23,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:23,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:23,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:08:23,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:08:23,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:23,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:23,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:23,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:23,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:08:23,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:08:23,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:24,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:24,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:24,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:24,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:08:24,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:08:24,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:27,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:27,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:27,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:28,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:08:28,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:08:28,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:28,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:28,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:28,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:28,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:08:28,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:08:28,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:30,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:30,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:30,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:30,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:08:30,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:08:30,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:32,473 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:08:32,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:08:32,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:08:32,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 18:08:32,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-01 18:08:32,748 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:08:33,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:33,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:33,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:33,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:08:33,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:08:33,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:34,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:34,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:34,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:34,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:08:34,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:08:34,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:35,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:35,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:35,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:35,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:08:35,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:08:35,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:37,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:37,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:37,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:37,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:08:37,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:08:37,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:39,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:39,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:39,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:39,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:08:39,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:08:39,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:40,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:40,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:40,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:40,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:08:40,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:08:40,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:43,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:43,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:43,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:43,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:08:43,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:08:43,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:43,392 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:08:43,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:08:43,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:08:43,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-01 18:08:43,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.129s/image) +2025-10-01 18:08:43,651 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:08:44,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:44,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:44,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:44,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:08:44,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:08:44,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:45,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:45,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:45,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:45,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:08:45,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:08:45,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:45,808 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:08:45,829 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:08:45,909 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.529 +2025-10-01 18:08:45,909 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:08:45,909 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:08:47,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:47,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:47,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:47,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:08:47,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:08:47,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:49,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:49,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:49,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:49,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:08:49,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:08:49,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:49,984 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:08:50,025 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:08:50,106 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.006 +2025-10-01 18:08:50,106 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:08:50,107 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:08:50,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:50,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:50,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:50,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:08:50,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:08:50,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:51,109 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:08:51,126 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:08:51,199 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.659 +2025-10-01 18:08:51,200 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:08:51,200 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:08:51,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:51,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:52,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:52,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:08:52,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:08:52,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:53,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:53,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:53,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:53,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:08:53,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:08:53,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:53,815 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:08:53,842 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:08:53,919 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.626 +2025-10-01 18:08:53,919 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:08:53,919 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:08:54,705 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:08:54,733 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:08:54,814 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.594 +2025-10-01 18:08:54,815 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:08:54,815 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:08:56,362 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:08:56,407 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(935, 935, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:08:56,493 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.274 +2025-10-01 18:08:56,493 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:08:56,493 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 18:08:57,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:08:57,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:08:57,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:08:57,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:08:57,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:08:57,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:08:57,847 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:08:57,880 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:08:57,959 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.424 +2025-10-01 18:08:57,959 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:08:57,959 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:09:02,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:02,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:02,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:02,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:09:02,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:09:02,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:03,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:03,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:03,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:03,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:09:03,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:09:03,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:03,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:03,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:03,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:03,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:09:03,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:09:03,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:03,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:03,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:03,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:03,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:09:03,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:09:03,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:05,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:05,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:05,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:05,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:09:05,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:09:05,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:07,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:07,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:07,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:07,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:09:07,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:09:07,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:10,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:10,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:10,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:10,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:09:10,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:09:10,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:12,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:12,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:12,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:12,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:09:12,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:09:12,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:12,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:12,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:12,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:13,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:09:13,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:09:13,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:13,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:13,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:13,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:14,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:09:14,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:09:14,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:15,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:15,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:15,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:15,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:09:15,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:09:15,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:15,791 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:09:15,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:09:15,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:09:16,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 18:09:16,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 18:09:16,088 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:09:17,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:17,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:17,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:17,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:09:17,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:09:17,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:17,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:17,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:17,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:17,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:09:17,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:09:17,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:18,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:18,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:18,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:18,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:09:18,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:09:18,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:19,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:19,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:19,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:19,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:09:19,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:09:19,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:20,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:20,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:20,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:20,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:09:20,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:09:20,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:21,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:21,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:21,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:21,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:09:21,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:09:21,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:23,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:23,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:23,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:23,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 18:09:23,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 18:09:23,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:23,948 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:09:23,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:09:24,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:09:24,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.324s +2025-10-01 18:09:24,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.324s (avg: 0.162s/image) +2025-10-01 18:09:24,273 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:09:24,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:24,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:24,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:24,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:09:24,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:09:24,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:24,772 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:09:24,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:09:24,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:09:25,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.254s +2025-10-01 18:09:25,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.254s (avg: 0.127s/image) +2025-10-01 18:09:25,027 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:09:25,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:25,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:26,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:26,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:09:26,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:09:26,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:28,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:28,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:28,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:29,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:09:29,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:09:29,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:29,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:29,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:29,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:29,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:09:29,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:09:29,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:30,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:30,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:30,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:30,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:09:30,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:09:30,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:30,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:30,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:30,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:30,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:09:30,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:09:30,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:30,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:30,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:30,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:30,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:09:30,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:09:30,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:32,390 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:09:32,431 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:09:32,515 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.974 +2025-10-01 18:09:32,516 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:09:32,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:09:33,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:33,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:33,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:33,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:09:33,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:09:33,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:37,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:37,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:37,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:37,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:09:37,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:09:37,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:37,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:37,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:37,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:38,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:09:38,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:09:38,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:38,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:38,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:38,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:38,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:09:38,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:09:38,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:38,796 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:09:38,818 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:09:38,890 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.338 +2025-10-01 18:09:38,890 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:09:38,890 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:09:38,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:38,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:38,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:39,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:09:39,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:09:39,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:39,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:39,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:39,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:39,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:09:39,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:09:39,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:39,943 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:09:39,980 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:09:40,065 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.487 +2025-10-01 18:09:40,065 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:09:40,065 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:09:41,515 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:09:41,546 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:09:41,625 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.690 +2025-10-01 18:09:41,625 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:09:41,625 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:09:42,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:42,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:42,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:43,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:09:43,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:09:43,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:44,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:44,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:44,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:44,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:09:44,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:09:44,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:44,659 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:09:44,686 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:09:44,763 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.957 +2025-10-01 18:09:44,763 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:09:44,763 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:09:45,162 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:09:45,200 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:09:45,286 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.373 +2025-10-01 18:09:45,286 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:09:45,286 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 18:09:48,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:48,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:48,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:48,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:09:48,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:09:48,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:49,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:49,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:50,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:50,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:09:50,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:09:50,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:50,198 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:09:50,233 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:09:50,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.029 +2025-10-01 18:09:50,319 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:09:50,319 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:09:52,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:52,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:52,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:52,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:09:52,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:09:52,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:52,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:52,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:52,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:53,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 18:09:53,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 18:09:53,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:53,130 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:09:53,150 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:09:53,222 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.968 +2025-10-01 18:09:53,223 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:09:53,223 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:09:53,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:53,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:53,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:53,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 18:09:53,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 18:09:53,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:54,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:54,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:54,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:54,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:09:54,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:09:54,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:56,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:56,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:56,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:57,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:09:57,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:09:57,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:57,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:57,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:57,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:57,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:09:57,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:09:57,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:57,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:57,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:57,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:57,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:09:57,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:09:57,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:58,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:58,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:58,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:58,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:09:58,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:09:58,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:58,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:58,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:58,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:09:58,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:09:58,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:09:58,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:09:59,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:09:59,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:09:59,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:00,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:10:00,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:10:00,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:00,379 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:10:00,397 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:10:00,467 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.984 +2025-10-01 18:10:00,467 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 18:10:00,467 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 18:10:01,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:01,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:01,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:01,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:10:01,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:10:01,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:01,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:01,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:01,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:01,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:10:01,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:10:01,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:03,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:03,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:03,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:03,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:10:03,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:10:03,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:04,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:04,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:04,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:04,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:10:04,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:10:04,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:04,533 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:10:04,543 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:10:04,607 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.009 +2025-10-01 18:10:04,607 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.063s +2025-10-01 18:10:04,607 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.064s +2025-10-01 18:10:07,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:07,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:07,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:07,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:10:07,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:10:07,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:08,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:08,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:08,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:08,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:10:08,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:10:08,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:09,215 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:10:09,242 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:10:09,314 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=203.873 +2025-10-01 18:10:09,314 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:10:09,314 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 18:10:10,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:10,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:10,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:11,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:10:11,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:10:11,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:11,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:11,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:11,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:11,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:10:11,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:10:11,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:11,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:11,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:11,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:11,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:10:11,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:10:11,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:11,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:11,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:11,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:12,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:10:12,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:10:12,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:13,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:13,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:13,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:13,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:10:13,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:10:13,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:15,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:15,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:15,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:15,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:10:15,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:10:15,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:15,765 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:10:15,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:10:15,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:10:16,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 18:10:16,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 18:10:16,049 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:10:16,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:16,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:16,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:16,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:10:16,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:10:16,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:16,745 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:10:16,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:10:16,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:10:17,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 18:10:17,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 18:10:17,030 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:10:17,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:17,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:17,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:17,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:10:17,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:10:17,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:19,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:19,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:19,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:19,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s +2025-10-01 18:10:19,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image) +2025-10-01 18:10:19,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:20,126 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:10:20,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:10:20,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:10:20,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 18:10:20,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 18:10:20,428 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:10:20,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:10:20,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:10:20,589 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.547 +2025-10-01 18:10:20,589 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:10:20,589 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:10:20,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:20,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:20,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:20,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:10:20,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:10:20,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:21,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:21,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:21,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:21,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:10:21,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:10:21,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:22,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:22,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:22,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:22,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:10:22,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:10:22,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:22,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:22,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:22,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:23,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-01 18:10:23,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-01 18:10:23,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:23,522 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:10:23,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:10:23,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:10:23,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 18:10:23,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 18:10:23,817 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:10:24,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:24,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:24,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:24,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:10:24,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:10:24,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:24,860 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:10:24,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:10:24,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:10:25,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 18:10:25,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 18:10:25,145 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:10:26,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:26,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:26,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:26,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:10:26,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:10:26,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:26,545 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:10:26,566 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:10:26,638 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=215.305 +2025-10-01 18:10:26,638 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:10:26,638 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:10:26,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:26,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:26,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:27,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:10:27,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:10:27,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:27,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:27,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:27,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:27,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:10:27,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:10:27,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:28,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:28,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:28,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:28,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:10:28,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:10:28,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:28,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:28,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:28,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:28,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:10:28,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:10:28,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:29,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:29,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:29,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:29,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:10:29,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:10:29,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:30,643 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:10:30,678 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:10:30,753 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=192.427 +2025-10-01 18:10:30,753 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:10:30,753 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:10:30,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:30,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:30,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:30,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:10:30,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:10:30,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:31,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:31,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:31,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:31,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:10:31,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:10:31,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:31,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:31,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:31,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:31,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:10:31,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:10:31,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:32,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:32,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:32,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:32,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:10:32,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:10:32,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:32,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:32,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:32,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:32,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:10:32,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:10:32,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:33,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:33,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:33,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:33,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:10:33,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:10:33,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:35,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:35,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:35,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:35,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:10:35,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:10:35,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:36,936 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:10:36,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:10:36,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:10:37,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 18:10:37,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 18:10:37,228 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:10:37,392 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 18:10:37,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 18:10:37,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 18:10:37,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.407s +2025-10-01 18:10:37,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.407s (avg: 0.136s/image) +2025-10-01 18:10:37,800 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 18:10:37,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:37,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:38,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:38,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:10:38,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:10:38,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:38,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:38,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:38,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:38,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:10:38,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:10:38,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:38,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:38,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:38,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:39,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:10:39,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:10:39,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:39,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:39,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:39,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:40,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:10:40,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:10:40,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:41,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:41,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:41,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:41,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:10:41,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:10:41,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:42,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:42,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:42,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:42,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:10:42,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:10:42,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:42,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:42,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:43,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:43,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:10:43,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:10:43,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:43,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:43,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:43,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:44,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:10:44,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:10:44,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:44,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:44,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:44,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:44,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:10:44,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:10:44,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:45,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:45,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:45,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:45,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:10:45,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:10:45,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:46,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:46,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:46,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:46,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:10:46,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:10:46,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:46,888 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 18:10:46,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 18:10:46,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 18:10:47,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.397s +2025-10-01 18:10:47,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.397s (avg: 0.132s/image) +2025-10-01 18:10:47,287 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 18:10:47,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:47,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:47,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:47,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:10:47,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:10:47,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:48,280 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:10:48,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:10:48,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:10:48,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 18:10:48,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 18:10:48,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:10:48,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:48,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:49,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:49,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:10:49,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:10:49,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:50,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:50,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:50,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:51,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:10:51,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:10:51,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:52,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:52,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:52,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:52,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:10:52,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:10:52,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:52,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:52,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:52,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:53,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:10:53,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:10:53,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:53,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:53,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:53,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:53,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:10:53,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:10:53,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:53,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:53,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:53,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:54,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:10:54,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:10:54,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:54,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:54,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:54,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:54,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:10:54,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:10:54,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:54,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:54,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:54,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:55,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:10:55,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:10:55,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:55,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:55,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:55,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:55,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:10:55,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:10:55,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:56,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:56,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:56,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:57,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:10:57,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:10:57,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:57,555 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:10:57,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:10:57,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:10:57,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 18:10:57,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 18:10:57,856 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:10:59,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:59,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:59,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:10:59,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:10:59,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:10:59,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:10:59,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:10:59,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:10:59,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:00,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:11:00,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:11:00,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:00,782 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:11:00,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:11:00,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:11:01,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 18:11:01,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 18:11:01,074 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:11:01,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:01,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:01,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:01,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:11:01,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:11:01,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:02,941 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:11:02,960 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:11:03,038 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.050 +2025-10-01 18:11:03,038 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:11:03,038 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:11:03,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:03,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:03,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:03,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:11:03,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:11:03,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:03,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:03,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:03,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:03,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:11:03,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:11:03,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:04,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:04,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:04,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:04,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:11:04,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:11:04,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:05,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:05,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:05,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:05,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:11:05,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:11:05,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:06,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:06,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:06,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:06,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:11:06,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:11:06,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:06,687 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:11:06,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:11:06,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:11:06,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 18:11:06,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 18:11:06,982 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:11:07,168 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:11:07,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:11:07,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:11:07,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 18:11:07,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 18:11:07,455 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:11:07,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:07,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:07,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:07,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:11:07,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:11:07,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:07,837 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:11:07,849 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:11:07,917 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.474 +2025-10-01 18:11:07,918 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 18:11:07,918 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 18:11:09,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:09,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:09,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:09,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:11:09,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:11:09,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:11,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:11,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:11,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:11,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:11:11,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:11:11,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:12,402 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:11:12,437 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:11:12,515 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.898 +2025-10-01 18:11:12,516 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:11:12,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:11:14,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:14,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:14,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:14,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:11:14,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:11:14,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:15,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:15,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:15,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:15,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:11:15,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:11:15,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:15,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:15,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:15,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:15,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:11:15,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:11:15,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:16,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:16,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:16,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:16,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:11:16,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:11:16,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:18,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:18,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:18,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:18,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:11:18,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:11:18,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:18,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:18,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:18,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:19,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:11:19,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:11:19,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:20,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:20,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:20,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:20,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:11:20,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:11:20,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:20,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:20,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:20,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:20,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:11:20,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:11:20,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:22,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:22,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:22,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:22,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:11:22,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:11:22,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:22,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:22,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:22,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:22,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:11:22,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:11:22,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:22,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:11:23,004 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:11:23,083 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.823 +2025-10-01 18:11:23,083 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:11:23,083 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:11:24,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:24,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:24,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:24,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:11:24,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:11:24,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:26,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:26,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:26,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:26,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:11:26,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:11:26,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:26,776 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:11:26,806 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:11:26,883 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.199 +2025-10-01 18:11:26,883 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:11:26,883 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:11:28,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:28,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:28,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:28,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:11:28,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:11:28,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:28,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:28,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:28,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:29,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:11:29,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:11:29,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:30,245 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:11:30,279 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:11:30,356 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.606 +2025-10-01 18:11:30,357 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:11:30,357 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:11:31,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:31,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:31,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:31,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:11:31,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:11:31,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:34,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:34,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:34,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:34,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:11:34,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:11:34,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:35,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:35,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:35,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:35,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:11:35,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:11:35,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:37,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:37,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:37,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:37,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:11:37,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:11:37,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:38,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:38,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:38,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:38,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:11:38,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:11:38,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:38,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:38,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:39,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:39,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:11:39,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:11:39,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:41,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:41,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:41,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:41,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:11:41,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:11:41,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:44,170 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:11:44,196 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:11:44,276 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.648 +2025-10-01 18:11:44,276 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:11:44,276 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:11:45,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:45,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:45,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:45,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:11:45,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:11:45,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:45,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:45,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:45,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:46,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:11:46,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:11:46,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:47,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:47,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:47,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:47,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:11:47,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:11:47,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:48,230 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:11:48,262 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:11:48,346 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.224 +2025-10-01 18:11:48,346 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 18:11:48,346 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:11:48,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:48,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:48,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:49,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:11:49,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:11:49,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:49,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:49,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:49,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:49,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:11:49,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:11:49,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:50,880 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:11:50,901 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:11:50,982 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.530 +2025-10-01 18:11:50,983 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:11:50,983 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:11:51,826 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:11:51,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:11:51,930 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.868 +2025-10-01 18:11:51,931 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:11:51,931 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:11:53,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:53,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:53,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:53,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:11:53,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:11:53,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:11:53,718 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:11:53,733 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 874, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:11:53,804 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.106 +2025-10-01 18:11:53,804 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 18:11:53,804 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 18:11:54,945 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:11:54,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:11:55,054 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=177.312 +2025-10-01 18:11:55,054 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:11:55,055 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:11:59,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:11:59,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:11:59,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:11:59,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:11:59,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:11:59,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:00,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:00,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:00,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:00,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:12:00,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:12:00,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:00,252 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:12:00,266 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:12:00,341 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.172 +2025-10-01 18:12:00,342 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:12:00,342 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:12:00,398 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:12:00,426 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:12:00,503 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.268 +2025-10-01 18:12:00,504 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:12:00,504 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:12:01,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:01,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:01,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:01,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:12:01,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:12:01,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:03,242 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:12:03,268 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:12:03,345 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.259 +2025-10-01 18:12:03,345 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:12:03,345 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:12:03,765 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:12:03,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:12:03,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:12:04,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 18:12:04,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 18:12:04,076 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:12:04,940 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:12:04,966 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:12:05,039 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=217.670 +2025-10-01 18:12:05,039 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:12:05,039 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:12:05,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:05,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:05,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:06,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:12:06,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:12:06,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:06,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:06,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:06,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:06,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:12:06,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:12:06,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:06,685 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:12:06,708 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(897, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:12:06,790 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.565 +2025-10-01 18:12:06,790 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:12:06,791 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:12:07,161 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:12:07,189 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:12:07,263 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.440 +2025-10-01 18:12:07,264 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:12:07,264 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:12:08,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:08,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:08,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:08,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:12:08,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:12:08,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:10,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:10,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:10,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:10,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:12:10,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:12:10,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:11,560 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:12:11,583 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(943, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:12:11,660 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.514 +2025-10-01 18:12:11,660 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:12:11,660 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:12:11,708 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:12:11,729 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1068, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:12:11,802 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=5.021 +2025-10-01 18:12:11,803 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:12:11,803 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:12:12,075 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:12:12,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:12:12,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:12:12,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 18:12:12,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 18:12:12,382 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:12:13,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:13,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:13,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:13,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:12:13,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:12:13,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:15,514 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:12:15,531 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:12:15,600 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=156.988 +2025-10-01 18:12:15,601 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 18:12:15,601 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 18:12:17,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:17,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:17,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:17,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:12:17,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:12:17,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:19,839 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:12:19,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:12:19,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:12:20,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 18:12:20,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 18:12:20,121 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:12:23,654 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:12:23,684 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:12:23,761 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.177 +2025-10-01 18:12:23,762 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:12:23,762 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:12:23,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:23,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:23,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:23,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 18:12:23,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 18:12:23,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:29,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:29,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:29,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:29,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:12:29,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:12:29,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:30,422 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:12:30,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:12:30,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:12:30,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 18:12:30,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 18:12:30,704 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:12:30,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:30,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:31,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:31,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:12:31,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:12:31,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:31,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:31,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:31,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:31,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 18:12:31,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 18:12:31,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:32,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:32,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:32,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:32,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:12:32,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:12:32,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:35,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:35,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:35,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:35,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:12:35,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:12:35,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:36,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:36,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:36,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:36,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:12:36,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:12:36,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:37,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:37,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:37,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:37,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:12:37,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:12:37,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:40,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:40,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:40,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:40,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:12:40,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:12:40,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:42,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:42,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:42,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:42,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:12:42,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:12:42,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:43,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:43,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:43,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:44,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:12:44,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:12:44,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:45,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:45,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:45,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:45,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:12:45,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:12:45,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:47,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:47,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:47,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:47,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:12:47,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:12:47,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:51,151 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:12:51,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:12:51,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:12:51,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 18:12:51,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 18:12:51,444 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:12:52,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:52,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:52,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:52,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:12:52,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:12:52,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:54,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:54,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:54,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:54,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:12:54,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:12:54,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:55,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:55,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:55,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:55,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:12:55,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:12:55,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:57,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:57,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:57,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:57,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:12:57,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:12:57,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:57,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:57,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:57,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:58,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:12:58,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:12:58,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:58,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:58,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:58,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:58,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:12:58,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:12:58,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:12:59,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:12:59,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:12:59,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:12:59,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:12:59,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:12:59,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:01,035 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:13:01,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:13:01,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:13:01,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-01 18:13:01,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-01 18:13:01,298 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:13:03,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:03,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:03,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:03,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:13:03,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:13:03,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:03,464 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:13:03,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:13:03,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:13:03,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 18:13:03,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 18:13:03,743 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:13:06,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:06,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:06,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:06,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:13:06,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:13:06,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:07,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:07,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:07,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:07,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:13:07,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:13:07,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:07,478 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:13:07,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:13:07,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:13:07,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 18:13:07,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 18:13:07,774 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:13:07,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:07,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:08,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:08,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:13:08,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:13:08,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:11,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:11,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:11,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:11,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:13:11,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:13:11,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:11,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:11,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:11,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:11,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:13:11,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:13:11,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:12,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:12,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:12,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:12,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:13:12,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:13:12,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:12,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:12,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:12,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:12,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:13:12,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:13:12,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:14,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:14,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:14,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:14,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:13:14,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:13:14,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:14,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:14,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:14,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:14,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:13:14,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:13:14,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:15,165 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:13:15,191 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:13:15,275 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.266 +2025-10-01 18:13:15,275 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:13:15,275 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:13:19,029 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:13:19,065 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:13:19,144 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=164.300 +2025-10-01 18:13:19,144 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:13:19,145 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:13:19,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:19,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:19,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:19,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:13:19,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:13:19,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:20,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:20,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:20,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:20,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:13:20,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:13:20,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:21,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:21,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:21,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:21,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:13:21,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:13:21,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:22,832 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:13:22,859 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:13:22,938 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.202 +2025-10-01 18:13:22,938 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:13:22,938 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:13:23,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:23,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:23,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:23,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:13:23,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:13:23,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:27,194 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:13:27,219 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:13:27,295 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.100 +2025-10-01 18:13:27,296 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:13:27,296 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:13:27,635 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:13:27,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:13:27,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:13:27,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 18:13:27,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 18:13:27,925 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:13:28,121 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:13:28,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:13:28,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:13:28,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 18:13:28,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 18:13:28,410 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:13:28,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:28,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:28,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:28,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 18:13:28,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 18:13:28,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:30,354 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:13:30,377 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:13:30,452 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.572 +2025-10-01 18:13:30,452 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:13:30,452 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:13:31,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:31,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:31,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:31,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:13:31,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:13:31,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:31,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:31,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:31,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:32,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:13:32,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:13:32,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:33,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:33,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:33,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:33,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:13:33,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:13:33,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:33,791 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:13:33,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:13:33,880 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.267 +2025-10-01 18:13:33,880 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:13:33,880 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:13:35,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:35,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:35,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:35,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:13:35,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:13:35,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:35,992 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:13:36,025 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:13:36,104 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.293 +2025-10-01 18:13:36,104 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:13:36,105 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:13:36,479 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:13:36,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:13:36,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:13:36,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 18:13:36,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 18:13:36,788 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:13:37,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:37,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:37,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:37,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:13:37,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:13:37,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:41,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:41,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:41,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:42,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:13:42,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:13:42,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:42,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:42,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:42,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:42,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:13:42,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:13:42,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:42,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:42,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:42,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:42,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 18:13:42,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 18:13:42,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:43,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:43,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:43,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:43,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:13:43,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:13:43,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:44,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:44,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:44,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:44,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:13:44,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:13:44,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:45,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:45,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:45,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:45,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 18:13:45,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 18:13:45,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:49,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:49,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:49,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:49,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:13:49,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:13:49,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:51,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:51,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:51,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:51,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:13:51,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:13:51,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:52,089 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:13:52,120 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:13:52,203 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.818 +2025-10-01 18:13:52,203 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:13:52,203 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:13:53,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:53,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:53,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:53,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:13:53,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:13:53,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:54,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:54,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:54,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:54,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:13:54,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:13:54,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:55,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:55,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:55,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:55,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:13:55,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:13:55,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:56,781 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:13:56,818 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:13:56,899 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.761 +2025-10-01 18:13:56,900 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:13:56,900 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:13:58,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:58,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:58,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:58,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:13:58,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:13:58,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:13:58,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:13:58,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:13:58,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:13:58,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:13:58,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:13:58,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:01,423 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:14:01,448 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:14:01,528 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.553 +2025-10-01 18:14:01,528 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:14:01,528 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:14:02,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:02,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:02,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:02,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:14:02,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:14:02,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:03,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:03,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:03,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:03,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 18:14:03,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 18:14:03,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:03,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:03,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:03,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:03,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:14:03,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:14:03,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:06,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:06,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:06,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:07,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:14:07,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:14:07,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:08,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:08,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:08,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:08,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:14:08,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:14:08,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:09,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:09,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:09,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:09,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:14:09,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:14:09,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:09,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:09,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:09,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:09,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:14:09,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:14:09,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:11,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:11,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:11,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:11,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:14:11,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:14:11,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:11,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:11,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:11,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:11,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:14:11,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:14:11,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:13,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:13,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:13,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:13,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:14:13,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:14:13,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:14,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:14,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:14,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:14,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:14:14,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:14:14,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:15,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:15,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:15,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:15,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:14:15,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:14:15,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:16,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:16,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:16,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:16,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:14:16,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:14:16,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:18,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:18,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:18,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:18,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:14:18,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:14:18,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:19,328 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:14:19,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:14:19,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:14:19,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 18:14:19,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 18:14:19,631 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:14:19,981 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:14:20,007 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:14:20,085 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.678 +2025-10-01 18:14:20,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:14:20,086 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:14:22,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:22,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:22,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:22,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:14:22,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:14:22,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:22,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:22,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:22,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:23,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:14:23,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:14:23,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:23,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:23,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:23,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:23,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:14:23,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:14:23,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:26,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:26,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:26,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:26,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:14:26,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:14:26,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:27,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:27,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:27,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:27,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:14:27,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:14:27,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:28,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:28,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:28,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:28,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:14:28,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:14:28,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:30,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:30,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:30,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:31,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:14:31,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:14:31,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:31,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:31,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:31,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:31,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:14:31,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:14:31,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:33,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:33,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:33,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:33,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:14:33,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:14:33,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:34,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:34,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:34,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:34,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:14:34,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:14:34,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:36,266 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:14:36,305 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:14:36,394 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.788 +2025-10-01 18:14:36,394 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 18:14:36,394 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 18:14:36,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:36,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:36,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:36,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:14:36,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:14:36,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:36,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:36,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:36,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:37,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:14:37,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:14:37,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:37,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:37,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:37,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:37,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:14:37,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:14:37,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:38,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:38,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:38,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:38,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:14:38,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:14:38,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:42,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:42,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:42,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:43,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:14:43,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:14:43,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:44,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:44,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:44,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:44,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:14:44,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:14:44,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:46,183 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:14:46,207 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:14:46,279 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.393 +2025-10-01 18:14:46,279 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:14:46,279 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:14:46,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:46,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:46,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:46,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:14:46,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:14:46,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:46,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:46,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:46,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:46,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:14:46,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:14:46,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:47,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:47,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:47,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:47,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:14:47,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:14:47,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:47,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:47,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:47,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:47,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:14:47,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:14:47,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:48,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:48,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:48,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:48,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:14:48,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:14:48,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:48,415 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:14:48,429 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:14:48,506 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.608 +2025-10-01 18:14:48,506 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:14:48,506 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:14:48,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:48,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:48,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:48,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:14:48,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:14:48,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:49,211 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:14:49,228 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(627, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:14:49,299 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.676 +2025-10-01 18:14:49,299 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 18:14:49,299 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 18:14:50,453 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:14:50,477 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:14:50,557 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.720 +2025-10-01 18:14:50,557 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:14:50,557 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:14:50,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:50,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:50,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:51,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:14:51,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:14:51,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:51,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:51,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:51,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:51,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:14:51,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:14:51,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:52,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:52,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:52,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:52,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:14:52,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:14:52,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:52,638 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:14:52,647 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 631, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:14:52,712 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.530 +2025-10-01 18:14:52,712 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.064s +2025-10-01 18:14:52,712 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.065s +2025-10-01 18:14:53,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:53,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:53,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:53,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:14:53,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:14:53,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:53,902 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:14:53,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:14:53,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:14:54,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 18:14:54,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-01 18:14:54,176 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:14:54,347 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:14:54,363 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:14:54,436 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.148 +2025-10-01 18:14:54,436 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:14:54,436 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:14:54,563 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:14:54,578 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:14:54,645 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.579 +2025-10-01 18:14:54,645 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 18:14:54,645 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s +2025-10-01 18:14:54,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:54,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:54,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:54,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:14:54,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:14:54,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:55,781 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:14:55,799 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 623, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:14:55,871 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.393 +2025-10-01 18:14:55,872 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:14:55,872 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:14:57,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:57,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:57,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:58,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:14:58,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:14:58,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:58,633 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:14:58,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:14:58,743 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.042 +2025-10-01 18:14:58,744 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:14:58,744 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:14:58,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:58,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:58,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:58,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:14:58,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:14:58,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:59,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:59,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:59,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:14:59,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:14:59,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:14:59,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:14:59,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:14:59,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:14:59,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:00,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:15:00,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:15:00,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:00,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:00,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:00,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:00,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:15:00,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:15:00,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:00,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:00,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:00,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:01,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:15:01,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:15:01,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:02,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:02,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:02,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:02,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:15:02,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:15:02,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:02,408 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:15:02,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:15:02,498 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.928 +2025-10-01 18:15:02,498 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:15:02,498 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:15:03,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:03,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:03,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:03,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:15:03,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:15:03,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:04,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:04,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:04,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:04,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:15:04,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:15:04,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:05,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:05,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:05,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:05,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:15:05,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:15:05,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:05,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:05,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:05,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:06,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:15:06,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:15:06,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:12,053 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:15:12,089 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:15:12,167 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.917 +2025-10-01 18:15:12,167 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:15:12,167 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:15:12,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:12,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:12,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:13,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:15:13,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:15:13,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:13,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:13,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:13,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:13,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:15:13,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:15:13,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:14,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:14,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:14,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:14,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:15:14,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:15:14,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:15,254 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:15:15,284 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 938, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:15:15,368 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=7.014 +2025-10-01 18:15:15,368 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 18:15:15,368 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 18:15:15,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:15,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:15,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:16,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:15:16,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:15:16,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:17,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:17,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:18,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:18,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:15:18,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:15:18,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:19,146 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:15:19,186 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 941, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:15:19,271 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=7.865 +2025-10-01 18:15:19,272 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:15:19,272 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:15:19,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:19,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:19,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:19,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 18:15:19,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 18:15:19,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:19,912 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:15:19,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:15:19,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:15:20,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 18:15:20,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 18:15:20,193 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:15:25,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:25,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:25,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:25,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:15:25,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:15:25,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:26,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:26,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:26,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:26,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:15:26,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:15:26,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:26,876 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:15:26,901 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:15:26,982 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.597 +2025-10-01 18:15:26,983 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:15:26,983 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:15:27,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:27,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:27,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:27,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:15:27,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:15:27,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:27,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:27,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:27,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:27,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:15:27,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:15:27,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:30,686 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:15:30,716 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:15:30,796 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.261 +2025-10-01 18:15:30,796 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:15:30,796 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:15:31,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:31,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:31,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:31,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:15:31,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:15:31,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:33,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:33,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:33,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:33,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:15:33,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:15:33,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:34,534 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:15:34,563 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:15:34,640 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.129 +2025-10-01 18:15:34,640 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:15:34,640 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:15:37,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:37,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:37,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:37,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:15:37,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:15:37,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:39,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:39,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:39,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:39,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:15:39,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:15:39,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:41,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:41,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:41,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:41,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:15:41,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:15:41,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:45,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:45,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:45,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:45,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:15:45,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:15:45,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:46,621 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:15:46,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:15:46,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:15:46,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 18:15:46,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-01 18:15:46,896 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:15:49,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:49,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:49,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:49,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:15:49,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:15:49,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:50,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:50,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:50,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:50,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:15:50,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:15:50,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:51,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:51,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:51,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:52,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:15:52,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:15:52,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:15:54,446 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:15:54,475 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:15:54,563 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.299 +2025-10-01 18:15:54,564 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:15:54,564 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 18:15:55,012 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:15:55,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:15:55,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:15:55,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 18:15:55,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 18:15:55,286 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:15:56,156 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:15:56,175 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:15:56,251 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.452 +2025-10-01 18:15:56,251 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:15:56,251 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:15:59,377 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:15:59,400 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:15:59,479 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.390 +2025-10-01 18:15:59,479 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:15:59,479 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:15:59,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:15:59,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:15:59,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:15:59,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:15:59,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:15:59,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:00,406 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:16:00,432 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:16:00,512 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.069 +2025-10-01 18:16:00,512 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:16:00,512 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:16:00,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:00,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:00,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:00,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:16:00,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:16:00,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:02,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:02,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:02,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:02,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:16:02,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:16:02,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:02,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:16:02,933 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:16:03,014 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.005 +2025-10-01 18:16:03,014 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:16:03,014 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:16:04,143 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:16:04,167 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:16:04,245 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=184.247 +2025-10-01 18:16:04,246 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:16:04,246 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:16:05,423 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:16:05,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:16:05,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:16:05,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 18:16:05,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 18:16:05,715 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:16:06,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:06,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:06,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:06,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:16:06,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:16:06,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:09,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:09,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:09,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:09,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:16:09,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:16:09,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:11,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:11,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:11,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:11,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:16:11,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:16:11,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:13,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:13,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:13,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:13,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:16:13,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:16:13,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:14,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:14,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:14,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:14,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:16:14,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:16:14,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:17,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:17,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:17,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:17,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 18:16:17,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 18:16:17,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:17,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:17,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:17,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:17,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:16:17,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:16:17,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:17,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:17,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:17,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:18,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:16:18,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:16:18,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:19,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:19,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:19,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:19,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:16:19,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:16:19,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:20,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:20,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:20,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:20,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:16:20,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:16:20,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:22,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:22,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:22,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:22,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:16:22,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:16:22,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:22,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:22,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:22,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:22,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:16:22,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:16:22,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:22,813 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:16:22,850 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:16:22,935 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.803 +2025-10-01 18:16:22,935 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:16:22,935 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 18:16:23,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:23,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:23,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:24,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:16:24,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:16:24,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:26,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:26,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:26,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:26,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:16:26,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:16:26,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:27,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:27,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:27,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:27,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:16:27,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:16:27,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:28,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:28,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:28,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:28,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:16:28,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:16:28,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:29,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:29,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:29,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:29,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:16:29,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:16:29,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:31,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:31,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:31,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:31,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:16:31,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:16:31,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:36,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:36,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:36,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:36,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:16:36,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:16:36,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:36,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:36,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:36,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:36,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:16:36,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:16:36,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:36,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:36,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:36,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:36,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:16:36,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:16:36,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:37,548 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:16:37,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:16:37,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:16:37,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 18:16:37,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 18:16:37,837 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:16:38,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:38,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:38,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:38,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:16:38,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:16:38,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:41,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:41,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:41,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:41,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:16:41,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:16:41,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:42,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:42,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:42,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:42,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:16:42,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:16:42,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:43,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:43,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:43,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:43,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:16:43,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:16:43,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:43,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:43,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:43,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:43,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:16:43,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:16:43,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:44,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:44,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:44,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:44,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:16:44,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:16:44,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:44,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:44,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:44,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:45,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:16:45,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:16:45,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:45,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:45,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:45,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:45,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:16:45,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:16:45,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:46,934 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:16:46,959 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:16:47,035 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.377 +2025-10-01 18:16:47,036 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:16:47,036 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:16:47,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:47,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:47,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:47,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:16:47,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:16:47,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:48,766 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:16:48,795 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:16:48,868 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.332 +2025-10-01 18:16:48,868 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:16:48,868 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:16:51,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:51,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:51,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:51,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:16:51,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:16:51,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:51,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:51,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:51,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:52,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:16:52,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:16:52,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:52,129 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:16:52,151 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:16:52,224 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.347 +2025-10-01 18:16:52,225 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:16:52,225 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:16:52,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:52,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:52,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:52,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:16:52,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:16:52,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:52,767 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:16:52,785 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:16:52,857 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.211 +2025-10-01 18:16:52,858 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:16:52,858 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:16:52,879 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:16:52,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:16:52,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:16:53,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 18:16:53,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 18:16:53,155 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:16:53,423 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:16:53,441 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:16:53,512 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.513 +2025-10-01 18:16:53,512 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:16:53,512 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 18:16:55,516 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:16:55,541 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:16:55,620 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=14.353 +2025-10-01 18:16:55,620 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:16:55,620 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:16:57,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:57,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:57,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:57,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:16:57,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:16:57,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:16:57,667 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:16:57,698 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:16:57,776 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.777 +2025-10-01 18:16:57,776 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:16:57,776 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:16:58,528 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:16:58,565 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:16:58,643 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=170.387 +2025-10-01 18:16:58,644 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:16:58,644 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:16:59,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:16:59,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:16:59,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:16:59,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:16:59,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:16:59,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:00,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:00,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:00,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:00,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:17:00,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:17:00,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:00,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:00,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:00,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:00,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:17:00,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:17:00,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:02,748 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:17:02,768 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:17:02,846 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.149 +2025-10-01 18:17:02,847 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:17:02,847 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:17:03,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:03,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:03,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:03,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:17:03,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:17:03,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:03,818 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:17:03,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:17:03,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:17:04,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 18:17:04,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 18:17:04,130 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:17:04,917 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:17:04,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:17:04,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:17:05,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 18:17:05,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 18:17:05,213 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:17:06,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:06,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:06,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:06,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:17:06,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:17:06,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:07,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:07,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:07,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:07,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:17:07,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:17:07,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:08,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:08,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:08,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:08,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:17:08,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:17:08,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:09,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:09,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:09,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:09,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:17:09,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:17:09,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:10,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:10,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:10,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:10,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:17:10,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:17:10,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:13,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:13,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:14,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:14,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:17:14,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:17:14,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:14,566 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:17:14,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:17:14,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:17:14,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 18:17:14,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 18:17:14,835 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:17:16,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:16,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:17,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:17,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:17:17,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:17:17,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:17,992 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:17:18,023 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:17:18,100 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.743 +2025-10-01 18:17:18,100 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:17:18,101 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:17:18,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:18,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:18,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:18,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:17:18,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:17:18,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:18,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:18,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:19,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:19,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:17:19,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:17:19,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:19,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:19,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:19,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:19,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:17:19,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:17:19,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:22,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:22,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:22,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:22,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:17:22,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:17:22,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:24,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:24,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:24,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:24,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:17:24,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:17:24,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:25,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:25,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:25,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:25,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:17:25,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:17:25,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:26,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:26,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:26,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:26,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:17:26,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:17:26,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:27,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:27,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:27,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:27,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:17:27,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:17:27,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:29,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:29,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:29,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:29,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:17:29,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:17:29,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:30,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:30,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:30,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:30,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:17:30,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:17:30,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:30,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:30,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:30,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:30,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:17:30,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:17:30,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:32,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:32,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:32,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:32,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:17:32,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:17:32,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:33,502 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:17:33,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:17:33,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:17:33,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.240s +2025-10-01 18:17:33,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.240s (avg: 0.120s/image) +2025-10-01 18:17:33,743 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:17:34,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:34,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:34,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:34,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:17:34,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:17:34,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:34,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:34,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:34,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:35,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:17:35,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:17:35,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:38,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:38,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:38,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:38,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:17:38,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:17:38,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:39,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:39,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:39,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:39,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:17:39,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:17:39,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:39,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:39,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:39,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:39,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:17:39,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:17:39,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:41,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:41,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:41,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:41,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:17:41,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:17:41,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:42,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:42,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:42,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:42,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:17:42,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:17:42,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:43,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:43,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:43,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:43,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:17:43,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:17:43,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:43,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:43,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:43,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:43,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:17:43,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:17:43,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:44,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:44,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:44,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:44,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:17:44,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:17:44,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:44,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:44,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:44,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:44,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 18:17:44,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 18:17:44,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:44,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:44,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:44,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:44,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 18:17:44,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 18:17:44,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:45,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:45,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:45,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:45,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 18:17:45,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 18:17:45,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:46,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:46,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:46,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:46,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:17:46,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:17:46,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:46,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:46,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:46,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:46,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:17:46,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:17:46,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:47,893 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:17:47,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:17:47,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:17:48,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 18:17:48,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 18:17:48,186 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:17:48,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:48,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:48,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:48,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:17:48,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:17:48,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:49,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:49,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:49,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:49,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:17:49,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:17:49,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:49,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:49,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:49,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:49,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:17:49,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:17:49,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:52,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:52,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:52,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:52,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:17:52,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:17:52,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:53,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:53,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:53,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:53,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:17:53,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:17:53,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:55,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:55,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:56,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:56,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:17:56,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:17:56,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:17:56,458 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:17:56,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:17:56,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:17:56,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 18:17:56,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 18:17:56,727 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:17:57,718 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:17:57,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:17:57,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:17:58,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 18:17:58,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 18:17:58,007 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:17:58,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:17:58,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:17:58,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:17:58,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:17:58,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:17:58,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:02,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:02,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:02,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:02,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:18:02,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:18:02,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:02,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:02,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:02,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:02,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:18:02,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:18:02,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:03,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:03,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:03,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:03,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:18:03,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:18:03,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:03,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:03,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:03,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:04,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:18:04,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:18:04,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:04,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:04,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:04,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:04,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:18:04,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:18:04,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:05,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:05,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:05,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:05,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:18:05,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:18:05,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:09,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:09,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:09,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:09,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:18:09,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:18:09,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:09,870 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:18:09,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:18:09,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:18:10,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 18:18:10,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.131s/image) +2025-10-01 18:18:10,134 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:18:11,873 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:18:11,891 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:18:11,971 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.441 +2025-10-01 18:18:11,972 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:18:11,972 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:18:11,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:11,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:12,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:12,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:18:12,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:18:12,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:13,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:13,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:13,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:13,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:18:13,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:18:13,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:14,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:14,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:14,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:14,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:18:14,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:18:14,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:15,538 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:18:15,567 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:18:15,643 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.518 +2025-10-01 18:18:15,643 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:18:15,643 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:18:15,757 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:18:15,776 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:18:15,857 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.168 +2025-10-01 18:18:15,857 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:18:15,857 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:18:19,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:19,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:19,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:19,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:18:19,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:18:19,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:19,763 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:18:19,789 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:18:19,871 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.415 +2025-10-01 18:18:19,871 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:18:19,872 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:18:20,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:20,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:20,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:20,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:18:20,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:18:20,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:20,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:20,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:20,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:20,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:18:20,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:18:20,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:20,534 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:18:20,562 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:18:20,644 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.943 +2025-10-01 18:18:20,644 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:18:20,644 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:18:24,940 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:18:24,969 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:18:25,050 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.041 +2025-10-01 18:18:25,051 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:18:25,051 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:18:26,657 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:18:26,681 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:18:26,761 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.018 +2025-10-01 18:18:26,762 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:18:26,762 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:18:29,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:29,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:30,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:30,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:18:30,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:18:30,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:30,317 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:18:30,347 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:18:30,426 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=202.393 +2025-10-01 18:18:30,426 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:18:30,426 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:18:30,462 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:18:30,477 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:18:30,554 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.961 +2025-10-01 18:18:30,554 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:18:30,554 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:18:31,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:31,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:31,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:31,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:18:31,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:18:31,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:34,250 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:18:34,269 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:18:34,347 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.153 +2025-10-01 18:18:34,348 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:18:34,348 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:18:34,607 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:18:34,632 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:18:34,709 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=183.599 +2025-10-01 18:18:34,709 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:18:34,709 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:18:35,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:35,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:35,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:35,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:18:35,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:18:35,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:36,140 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:18:36,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:18:36,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:18:36,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.247s +2025-10-01 18:18:36,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.247s (avg: 0.124s/image) +2025-10-01 18:18:36,388 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:18:38,205 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:18:38,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:18:38,296 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.416 +2025-10-01 18:18:38,297 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:18:38,297 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:18:38,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:38,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:38,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:38,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:18:38,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:18:38,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:40,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:40,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:40,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:40,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:18:40,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:18:40,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:44,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:44,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:44,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:44,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:18:44,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:18:44,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:44,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:44,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:44,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:44,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:18:44,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:18:44,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:44,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:44,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:44,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:45,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:18:45,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:18:45,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:49,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:49,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:49,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:49,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:18:49,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:18:49,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:49,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:49,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:49,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:49,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:18:49,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:18:49,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:49,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:49,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:49,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:50,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 18:18:50,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 18:18:50,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:51,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:51,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:51,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:51,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:18:51,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:18:51,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:53,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:53,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:53,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:53,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:18:53,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:18:53,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:55,695 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:18:55,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:18:55,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:18:55,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 18:18:55,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 18:18:55,979 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:18:57,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:57,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:58,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:58,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:18:58,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:18:58,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:18:58,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:18:58,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:18:58,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:18:58,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:18:58,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:18:58,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:01,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:01,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:01,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:02,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:19:02,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:19:02,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:03,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:03,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:03,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:03,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:19:03,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:19:03,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:03,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:03,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:03,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:03,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:19:03,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:19:03,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:04,026 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:19:04,059 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(990, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:19:04,151 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.195 +2025-10-01 18:19:04,151 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 18:19:04,152 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 18:19:05,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:05,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:05,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:05,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:19:05,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:19:05,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:05,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:05,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:05,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:06,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 18:19:06,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 18:19:06,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:06,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:06,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:06,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:07,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:19:07,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:19:07,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:07,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:07,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:07,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:07,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:19:07,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:19:07,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:10,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:10,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:10,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:10,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:19:10,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:19:10,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:10,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:10,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:10,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:10,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:19:10,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:19:10,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:11,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:11,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:11,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:11,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:19:11,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:19:11,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:13,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:13,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:13,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:13,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:19:13,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:19:13,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:14,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:14,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:14,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:14,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:19:14,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:19:14,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:15,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:15,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:15,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:15,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:19:15,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:19:15,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:15,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:15,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:15,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:15,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:19:15,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:19:15,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:19,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:19,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:19,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:19,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:19:19,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:19:19,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:20,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:20,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:20,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:20,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:19:20,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:19:20,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:20,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:20,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:20,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:20,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s +2025-10-01 18:19:20,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image) +2025-10-01 18:19:20,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:21,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:21,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:21,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:21,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:19:21,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:19:21,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:25,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:25,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:25,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:25,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:19:25,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:19:25,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:26,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:26,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:26,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:26,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:19:26,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:19:26,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:28,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:28,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:28,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:29,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:19:29,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:19:29,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:29,220 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:19:29,249 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:19:29,337 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.362 +2025-10-01 18:19:29,337 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:19:29,337 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 18:19:32,233 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:19:32,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:19:32,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:19:32,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 18:19:32,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 18:19:32,527 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:19:32,584 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:19:32,606 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:19:32,684 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.142 +2025-10-01 18:19:32,684 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:19:32,684 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:19:32,852 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:19:32,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:19:32,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:19:33,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.252s +2025-10-01 18:19:33,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.252s (avg: 0.126s/image) +2025-10-01 18:19:33,106 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:19:33,145 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:19:33,163 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:19:33,231 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.290 +2025-10-01 18:19:33,232 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 18:19:33,232 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 18:19:33,300 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:19:33,314 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:19:33,381 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.224 +2025-10-01 18:19:33,381 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 18:19:33,382 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 18:19:34,161 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:19:34,192 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:19:34,271 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.983 +2025-10-01 18:19:34,272 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:19:34,272 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:19:35,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:35,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:35,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:35,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:19:35,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:19:35,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:35,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:35,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:35,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:36,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:19:36,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:19:36,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:36,524 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:19:36,545 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:19:36,622 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.406 +2025-10-01 18:19:36,622 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:19:36,623 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:19:36,788 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:19:36,811 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:19:36,883 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.404 +2025-10-01 18:19:36,883 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:19:36,883 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:19:37,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:37,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:37,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:37,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:19:37,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:19:37,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:38,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:38,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:38,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:38,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:19:38,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:19:38,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:38,356 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:19:38,374 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:19:38,443 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.988 +2025-10-01 18:19:38,443 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 18:19:38,444 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 18:19:39,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:19:39,927 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:19:40,002 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.885 +2025-10-01 18:19:40,002 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:19:40,002 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:19:40,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:40,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:40,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:40,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:19:40,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:19:40,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:40,376 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:19:40,401 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:19:40,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.025 +2025-10-01 18:19:40,471 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 18:19:40,471 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 18:19:42,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:42,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:42,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:42,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:19:42,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:19:42,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:43,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:43,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:43,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:43,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:19:43,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:19:43,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:45,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:45,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:45,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:45,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:19:45,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:19:45,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:45,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:45,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:45,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:45,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 18:19:45,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 18:19:45,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:46,909 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:19:46,930 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:19:47,011 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.928 +2025-10-01 18:19:47,012 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:19:47,012 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:19:47,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:47,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:47,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:47,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:19:47,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:19:47,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:52,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:52,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:52,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:52,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:19:52,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:19:52,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:56,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:56,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:56,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:56,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:19:56,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:19:56,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:19:58,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:19:58,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:19:58,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:19:58,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:19:58,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:19:58,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:00,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:00,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:00,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:00,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:20:00,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:20:00,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:01,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:01,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:01,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:01,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:20:01,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:20:01,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:06,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:06,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:06,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:06,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:20:06,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:20:06,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:09,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:09,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:09,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:09,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:20:09,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:20:09,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:11,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:11,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:11,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:11,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:20:11,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:20:11,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:11,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:11,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:11,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:11,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:20:11,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:20:11,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:11,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:11,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:11,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:12,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:20:12,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:20:12,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:14,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:14,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:14,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:14,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:20:14,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:20:14,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:14,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:14,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:14,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:14,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:20:14,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:20:14,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:16,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:16,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:16,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:16,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:20:16,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:20:16,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:17,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:17,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:17,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:17,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:20:17,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:20:17,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:19,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:19,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:19,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:19,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:20:19,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:20:19,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:21,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:21,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:21,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:21,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:20:21,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:20:21,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:22,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:22,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:22,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:22,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:20:22,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:20:22,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:22,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:22,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:22,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:23,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:20:23,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:20:23,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:24,861 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:20:24,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:20:24,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:20:25,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 18:20:25,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 18:20:25,163 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:20:25,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:25,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:25,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:26,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:20:26,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:20:26,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:26,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:26,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:26,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:26,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:20:26,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:20:26,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:27,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:27,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:27,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:27,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:20:27,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:20:27,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:28,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:28,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:28,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:28,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:20:28,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:20:28,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:28,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:28,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:28,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:29,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:20:29,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:20:29,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:31,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:31,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:31,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:31,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:20:31,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:20:31,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:32,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:32,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:32,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:32,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:20:32,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:20:32,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:35,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:35,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:35,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:35,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:20:35,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:20:35,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:35,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:20:35,799 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:20:35,889 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.447 +2025-10-01 18:20:35,889 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 18:20:35,889 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 18:20:36,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:36,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:36,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:36,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:20:36,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:20:36,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:36,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:36,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:36,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:36,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:20:36,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:20:36,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:37,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:37,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:37,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:37,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:20:37,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:20:37,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:37,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:37,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:37,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:37,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:20:37,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:20:37,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:38,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:38,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:38,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:39,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 18:20:39,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 18:20:39,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:39,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:20:39,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:20:39,937 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.524 +2025-10-01 18:20:39,937 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:20:39,938 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 18:20:40,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:40,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:41,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:41,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:20:41,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:20:41,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:42,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:42,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:42,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:42,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:20:42,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:20:42,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:42,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:42,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:42,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:42,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:20:42,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:20:42,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:43,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:43,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:43,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:43,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:20:43,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:20:43,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:44,434 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:20:44,454 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:20:44,539 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.497 +2025-10-01 18:20:44,539 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:20:44,540 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 18:20:44,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:44,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:44,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:44,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:20:44,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:20:44,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:46,878 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:20:46,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:20:46,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:20:47,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 18:20:47,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 18:20:47,166 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:20:49,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:49,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:49,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:49,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:20:49,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:20:49,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:50,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:50,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:50,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:50,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:20:50,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:20:50,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:52,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:52,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:52,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:52,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:20:52,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:20:52,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:53,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:53,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:53,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:53,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:20:53,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:20:53,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:56,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:56,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:56,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:56,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:20:56,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:20:56,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:56,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:56,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:56,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:56,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:20:56,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:20:56,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:57,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:57,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:57,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:57,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:20:57,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:20:57,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:20:57,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:20:57,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:20:57,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:20:57,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:20:57,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:20:57,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:00,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:00,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:00,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:00,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:21:00,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:21:00,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:03,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:03,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:03,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:03,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:21:03,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:21:03,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:03,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:03,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:03,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:03,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 18:21:03,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 18:21:03,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:03,925 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:21:03,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:21:03,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:21:04,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 18:21:04,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 18:21:04,224 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:21:06,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:06,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:06,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:06,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:21:06,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:21:06,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:07,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:07,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:07,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:07,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:21:07,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:21:07,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:07,719 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:21:07,747 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:21:07,823 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.348 +2025-10-01 18:21:07,823 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:21:07,823 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:21:09,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:09,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:09,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:09,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:21:09,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:21:09,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:11,459 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:21:11,486 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:21:11,574 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.100 +2025-10-01 18:21:11,574 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:21:11,574 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 18:21:11,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:11,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:11,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:11,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 18:21:11,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 18:21:11,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:12,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:12,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:12,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:12,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:21:12,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:21:12,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:13,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:13,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:13,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:13,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 18:21:13,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 18:21:13,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:14,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:14,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:14,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:14,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:21:14,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:21:14,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:16,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:16,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:16,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:16,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 18:21:16,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 18:21:16,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:16,748 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:21:16,775 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:21:16,861 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.839 +2025-10-01 18:21:16,861 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:21:16,862 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 18:21:18,335 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:21:18,362 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:21:18,435 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.803 +2025-10-01 18:21:18,436 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:21:18,436 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:21:19,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:19,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:19,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:19,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:21:19,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:21:19,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:19,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:19,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:19,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:19,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:21:19,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:21:19,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:20,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:20,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:20,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:20,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:21:20,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:21:20,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:22,358 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:21:22,385 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:21:22,463 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.029 +2025-10-01 18:21:22,463 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:21:22,464 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:21:24,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:24,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:24,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:24,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:21:24,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:21:24,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:24,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:24,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:24,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:24,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:21:24,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:21:24,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:25,924 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:21:25,955 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:21:26,033 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.077 +2025-10-01 18:21:26,033 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:21:26,033 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:21:27,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:27,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:27,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:27,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:21:27,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:21:27,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:31,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:31,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:31,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:31,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:21:31,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:21:31,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:33,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:33,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:33,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:33,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:21:33,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:21:33,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:35,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:35,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:35,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:35,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 18:21:35,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 18:21:35,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:35,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:35,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:35,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:36,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:21:36,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:21:36,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:36,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:36,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:36,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:36,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 18:21:36,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 18:21:36,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:37,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:37,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:37,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:37,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:21:37,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:21:37,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:41,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:41,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:41,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:42,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 18:21:42,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 18:21:42,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:42,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:42,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:42,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:42,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:21:42,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:21:42,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:44,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:44,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:44,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:44,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:21:44,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:21:44,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:45,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:45,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:45,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:45,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:21:45,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:21:45,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:46,919 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:21:46,947 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(918, 848, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:21:47,029 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.127 +2025-10-01 18:21:47,029 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:21:47,029 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:21:47,576 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:21:47,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:21:47,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:21:47,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.327s +2025-10-01 18:21:47,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.327s (avg: 0.164s/image) +2025-10-01 18:21:47,905 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:21:50,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:50,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:50,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:50,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:21:50,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:21:50,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:53,588 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:21:53,608 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(725, 601, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:21:53,681 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.641 +2025-10-01 18:21:53,682 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:21:53,682 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:21:53,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:53,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:53,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:54,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:21:54,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:21:54,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:54,101 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:21:54,130 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:21:54,216 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.258 +2025-10-01 18:21:54,216 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:21:54,217 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:21:54,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:54,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:54,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:54,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:21:54,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:21:54,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:55,935 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:21:55,968 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:21:56,040 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.395 +2025-10-01 18:21:56,040 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:21:56,040 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:21:57,933 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:21:57,962 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:21:58,052 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.640 +2025-10-01 18:21:58,052 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 18:21:58,053 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 18:21:59,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:59,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:59,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:59,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-01 18:21:59,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-01 18:21:59,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:21:59,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:21:59,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:21:59,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:21:59,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:21:59,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:21:59,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:01,823 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:22:01,858 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:22:01,953 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.888 +2025-10-01 18:22:01,954 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 18:22:01,954 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 18:22:04,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:04,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:04,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:04,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s +2025-10-01 18:22:04,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image) +2025-10-01 18:22:04,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:04,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:04,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:04,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:04,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:22:04,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:22:04,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:05,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:05,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:05,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:05,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:22:05,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:22:05,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:08,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:08,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:08,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:08,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 18:22:08,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 18:22:08,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:10,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:10,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:10,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:10,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:22:10,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:22:10,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:14,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:14,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:14,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:14,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:22:14,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:22:14,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:14,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:14,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:14,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:14,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 18:22:14,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 18:22:14,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:15,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:15,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:15,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:15,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:22:15,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:22:15,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:17,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:17,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:17,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:17,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:22:17,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:22:17,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:17,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:17,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:17,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:17,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:22:17,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:22:17,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:19,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:19,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:19,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:19,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:22:19,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:22:19,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:20,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:20,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:20,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:20,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:22:20,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:22:20,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:24,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:24,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:24,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:25,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 18:22:25,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 18:22:25,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:25,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:25,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:25,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:25,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:22:25,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:22:25,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:26,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:26,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:26,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:26,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:22:26,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:22:26,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:28,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:28,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:28,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:28,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:22:28,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:22:28,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:28,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:28,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:28,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:29,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:22:29,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:22:29,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:29,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:29,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:29,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:29,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:22:29,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:22:29,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:29,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:29,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:29,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:30,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:22:30,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:22:30,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:30,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:30,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:30,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:30,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 18:22:30,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 18:22:30,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:33,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:33,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:33,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:33,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 18:22:33,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 18:22:33,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:37,885 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:22:37,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:22:37,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:22:38,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 18:22:38,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 18:22:38,171 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:22:42,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:42,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:42,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:42,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:22:42,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:22:42,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:43,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:43,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:43,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:43,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-01 18:22:43,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-01 18:22:43,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:43,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:43,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:43,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:43,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:22:43,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:22:43,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:46,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:46,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:46,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:46,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:22:46,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:22:46,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:48,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:48,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:48,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:48,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:22:48,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:22:48,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:49,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:49,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:49,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:49,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 18:22:49,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 18:22:49,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:49,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:49,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:49,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:50,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:22:50,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:22:50,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:51,190 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:22:51,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:22:51,298 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.527 +2025-10-01 18:22:51,299 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:22:51,299 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:22:52,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:52,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:52,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:52,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:22:52,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:22:52,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:53,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:22:53,552 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:22:53,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.376 +2025-10-01 18:22:53,631 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:22:53,631 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:22:53,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:53,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:53,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:53,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:22:53,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:22:53,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:54,272 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:22:54,303 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:22:54,377 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.305 +2025-10-01 18:22:54,377 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:22:54,377 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:22:55,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:55,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:55,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:55,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:22:55,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:22:55,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:56,377 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:22:56,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:22:56,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:22:56,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.316s +2025-10-01 18:22:56,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.316s (avg: 0.158s/image) +2025-10-01 18:22:56,695 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:22:57,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:57,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:57,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:57,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:22:57,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:22:57,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:57,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:57,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:57,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:57,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:22:57,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:22:57,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:22:58,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:22:58,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:22:58,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:22:59,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:22:59,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:22:59,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:00,025 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:00,061 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:00,138 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.900 +2025-10-01 18:23:00,138 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:23:00,139 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:23:02,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:02,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:02,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:02,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:23:02,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:23:02,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:03,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:03,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:03,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:03,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:23:03,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:23:03,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:03,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:03,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:03,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:03,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:23:03,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:23:03,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:04,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:04,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:04,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:04,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:23:04,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:23:04,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:06,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:06,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:06,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:06,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:23:06,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:23:06,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:06,360 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:06,374 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:06,449 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.187 +2025-10-01 18:23:06,449 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:23:06,449 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:23:06,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:06,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:06,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:06,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:23:06,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:23:06,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:09,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:09,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:09,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:09,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:23:09,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:23:09,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:10,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:10,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:10,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:10,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:23:10,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:23:10,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:11,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:11,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:11,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:11,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:23:11,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:23:11,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:11,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:11,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:11,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:11,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:23:11,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:23:11,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:12,532 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:12,577 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:12,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.738 +2025-10-01 18:23:12,669 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 18:23:12,669 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 18:23:15,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:15,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:15,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:15,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:23:15,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:23:15,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:15,519 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:15,546 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:15,634 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.156 +2025-10-01 18:23:15,635 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 18:23:15,635 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 18:23:16,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:16,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:16,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:16,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:23:16,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:23:16,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:17,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:17,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:17,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:17,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:23:17,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:23:17,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:17,201 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:17,230 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:17,318 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.072 +2025-10-01 18:23:17,318 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:23:17,319 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 18:23:18,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:18,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:18,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:18,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:23:18,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:23:18,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:18,771 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:18,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:18,869 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.097 +2025-10-01 18:23:18,869 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:23:18,870 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:23:19,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:19,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:19,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:19,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:23:19,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:23:19,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:21,826 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:21,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:21,944 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.193 +2025-10-01 18:23:21,944 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 18:23:21,944 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 18:23:22,187 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:22,205 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:22,285 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.559 +2025-10-01 18:23:22,285 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:23:22,285 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:23:22,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:22,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:22,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:23,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:23:23,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:23:23,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:24,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:24,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:24,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:25,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:23:25,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:23:25,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:27,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:27,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:27,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:27,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:23:27,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:23:27,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:29,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:29,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:29,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:29,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:23:29,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:23:29,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:29,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:29,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:29,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:30,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:23:30,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:23:30,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:31,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:31,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:31,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:31,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:23:31,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:23:31,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:33,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:33,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:33,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:33,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:23:33,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:23:33,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:34,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:34,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:34,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:35,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:23:35,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:23:35,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:35,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:35,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:35,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:35,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:23:35,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:23:35,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:38,401 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:38,441 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(962, 962, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:38,541 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.194 +2025-10-01 18:23:38,541 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 18:23:38,541 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 18:23:39,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:39,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:39,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:39,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:23:39,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:23:39,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:40,627 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:40,659 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:40,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.403 +2025-10-01 18:23:40,735 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:23:40,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:23:41,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:41,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:41,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:41,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:23:41,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:23:41,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:42,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:42,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:42,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:42,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:23:42,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:23:42,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:42,550 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:42,583 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(959, 959, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:42,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.570 +2025-10-01 18:23:42,668 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:23:42,668 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 18:23:44,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:44,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:44,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:44,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 18:23:44,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 18:23:44,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:44,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:44,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:44,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:44,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:23:44,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:23:44,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:44,769 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:44,792 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:44,872 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.672 +2025-10-01 18:23:44,873 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:23:44,873 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:23:45,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:45,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:45,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:45,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:23:45,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:23:45,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:46,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:46,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:46,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:46,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:23:46,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:23:46,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:46,620 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:46,650 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(958, 958, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:46,730 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.050 +2025-10-01 18:23:46,731 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:23:46,731 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:23:47,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:47,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:47,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:47,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:23:47,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:23:47,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:47,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:47,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:47,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:48,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 18:23:48,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 18:23:48,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:48,413 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:48,436 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:48,510 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.155 +2025-10-01 18:23:48,510 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:23:48,510 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:23:48,529 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:48,552 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:48,625 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=184.547 +2025-10-01 18:23:48,625 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:23:48,625 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:23:49,021 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:49,059 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:49,148 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=19.650 +2025-10-01 18:23:49,148 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:23:49,148 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 18:23:50,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:50,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:50,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:50,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:23:50,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:23:50,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:52,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:52,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:52,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:52,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:23:52,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:23:52,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:53,071 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:53,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:53,219 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.356 +2025-10-01 18:23:53,219 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-01 18:23:53,219 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-01 18:23:53,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:53,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:53,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:53,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-01 18:23:53,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-01 18:23:53,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:54,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:54,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:54,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:54,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:23:54,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:23:54,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:54,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:54,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:55,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:55,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:23:55,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:23:55,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:55,202 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:23:55,227 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:23:55,299 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=204.351 +2025-10-01 18:23:55,300 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:23:55,300 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:23:55,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:55,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:55,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:55,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:23:55,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:23:55,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:56,237 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:23:56,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:23:56,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:23:56,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.312s +2025-10-01 18:23:56,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.312s (avg: 0.156s/image) +2025-10-01 18:23:56,550 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:23:56,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:56,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:56,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:56,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:23:56,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:23:56,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:57,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:57,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:57,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:57,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:23:57,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:23:57,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:23:58,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:23:58,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:23:58,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:23:58,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:23:58,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:23:58,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:00,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:00,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:00,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:00,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:24:00,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:24:00,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:01,177 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:24:01,199 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:24:01,271 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.074 +2025-10-01 18:24:01,272 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:24:01,272 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:24:01,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:01,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:01,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:01,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 18:24:01,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 18:24:01,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:02,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:02,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:02,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:02,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:24:02,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:24:02,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:04,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:04,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:04,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:04,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:24:04,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:24:04,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:05,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:05,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:05,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:05,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:24:05,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:24:05,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:05,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:05,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:05,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:06,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:24:06,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:24:06,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:06,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:06,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:06,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:07,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:24:07,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:24:07,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:10,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:10,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:10,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:10,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:24:10,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:24:10,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:11,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:11,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:11,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:11,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 18:24:11,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 18:24:11,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:13,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:13,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:13,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:13,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:24:13,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:24:13,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:14,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:14,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:14,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:14,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:24:14,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:24:14,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:17,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:17,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:17,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:17,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.206s +2025-10-01 18:24:17,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.206s (avg: 0.206s/image) +2025-10-01 18:24:17,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:17,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:17,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:17,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:17,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:24:17,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:24:17,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:17,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:17,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:17,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:17,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:24:17,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:24:17,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:18,102 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:24:18,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:24:18,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:24:18,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 18:24:18,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 18:24:18,394 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:24:19,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:19,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:19,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:19,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:24:19,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:24:19,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:20,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:20,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:20,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:20,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:24:20,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:24:20,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:21,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:21,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:21,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:21,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:24:21,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:24:21,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:22,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:22,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:22,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:22,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 18:24:22,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 18:24:22,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:22,654 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:24:22,673 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:24:22,753 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.983 +2025-10-01 18:24:22,754 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:24:22,754 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:24:22,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:22,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:23,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:23,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:24:23,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:24:23,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:23,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:23,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:23,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:23,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:24:23,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:24:23,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:23,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:23,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:23,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:24,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:24:24,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:24:24,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:24,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:24,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:24,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:24,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:24:24,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:24:24,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:26,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:26,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:26,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:26,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:24:26,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:24:26,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:27,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:27,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:27,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:27,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:24:27,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:24:27,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:28,303 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:24:28,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:24:28,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:24:28,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 18:24:28,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 18:24:28,607 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:24:28,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:28,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:28,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:29,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 18:24:29,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 18:24:29,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:29,160 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:24:29,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:24:29,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:24:29,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 18:24:29,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 18:24:29,434 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:24:29,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:29,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:29,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:29,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:24:29,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:24:29,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:31,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:31,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:31,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:31,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:24:31,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:24:31,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:32,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:32,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:32,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:32,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:24:32,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:24:32,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:35,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:35,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:35,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:35,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:24:35,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:24:35,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:35,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:35,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:35,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:36,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:24:36,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:24:36,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:36,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:36,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:36,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:36,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:24:36,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:24:36,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:36,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:36,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:36,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:36,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:24:36,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:24:36,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:37,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:37,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:37,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:37,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:24:37,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:24:37,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:38,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:38,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:38,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:38,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:24:38,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:24:38,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:39,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:39,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:39,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:39,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:24:39,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:24:39,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:40,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:40,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:40,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:40,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:24:40,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:24:40,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:41,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:41,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:41,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:41,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:24:41,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:24:41,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:42,530 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:24:42,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:24:42,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:24:42,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-01 18:24:42,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.129s/image) +2025-10-01 18:24:42,789 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:24:42,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:42,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:42,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:43,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:24:43,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:24:43,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:44,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:44,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:44,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:44,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:24:44,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:24:44,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:45,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:45,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:45,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:45,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:24:45,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:24:45,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:46,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:46,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:46,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:46,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:24:46,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:24:46,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:46,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:46,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:46,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:46,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:24:46,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:24:46,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:47,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:48,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:48,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:48,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:24:48,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:24:48,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:48,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:48,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:48,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:48,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:24:48,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:24:48,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:49,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:49,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:49,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:49,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:24:49,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:24:49,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:50,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:50,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:50,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:50,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:24:50,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:24:50,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:50,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:50,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:50,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:50,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:24:50,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:24:50,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:51,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:51,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:51,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:52,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:24:52,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:24:52,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:52,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:52,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:52,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:52,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:24:52,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:24:52,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:53,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:53,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:53,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:54,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 18:24:54,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 18:24:54,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:54,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:54,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:54,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:54,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:24:54,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:24:54,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:56,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:56,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:56,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:56,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:24:56,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:24:56,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:56,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:56,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:56,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:56,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:24:56,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:24:56,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:57,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:57,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:57,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:57,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:24:57,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:24:57,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:24:58,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:24:58,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:24:58,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:24:58,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 18:24:58,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 18:24:58,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:00,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:00,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:00,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:00,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:25:00,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:25:00,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:01,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:01,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:01,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:01,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 18:25:01,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 18:25:01,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:02,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:02,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:02,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:02,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:25:02,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:25:02,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:02,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:02,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:02,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:03,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.204s +2025-10-01 18:25:03,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image) +2025-10-01 18:25:03,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:03,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:03,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:03,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:03,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:25:03,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:25:03,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:05,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:05,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:05,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:05,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:25:05,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:25:05,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:07,670 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:25:07,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:25:07,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:25:07,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 18:25:07,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 18:25:07,955 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:25:08,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:08,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:08,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:08,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:25:08,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:25:08,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:09,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:09,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:09,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:09,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:25:09,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:25:09,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:10,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:10,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:10,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:10,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:25:10,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:25:10,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:12,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:12,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:12,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:12,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 18:25:12,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 18:25:12,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:12,522 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:12,552 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:12,633 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.409 +2025-10-01 18:25:12,634 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:25:12,634 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:25:12,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:12,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:13,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:13,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:25:13,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:25:13,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:13,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:13,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:13,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:13,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:25:13,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:25:13,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:16,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:16,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:16,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:16,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:25:16,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:25:16,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:17,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:17,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:17,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:17,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 18:25:17,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 18:25:17,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:20,145 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:20,181 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:20,270 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=17.418 +2025-10-01 18:25:20,271 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 18:25:20,271 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 18:25:22,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:22,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:22,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:22,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:25:22,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:25:22,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:22,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:22,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:22,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:23,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 18:25:23,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 18:25:23,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:23,244 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:23,282 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:23,362 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.894 +2025-10-01 18:25:23,362 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:25:23,362 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:25:24,279 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:24,314 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:24,402 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.535 +2025-10-01 18:25:24,402 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:25:24,402 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 18:25:26,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:26,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:26,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:26,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:25:26,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:25:26,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:26,754 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:26,785 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:26,863 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.830 +2025-10-01 18:25:26,863 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:25:26,863 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:25:28,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:28,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:28,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:28,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:25:28,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:25:28,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:29,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:29,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:29,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:29,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:25:29,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:25:29,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:29,644 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:29,678 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:29,763 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.079 +2025-10-01 18:25:29,763 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:25:29,764 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:25:30,399 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:30,424 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:30,499 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.541 +2025-10-01 18:25:30,500 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:25:30,500 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:25:32,677 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:32,704 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:32,786 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.209 +2025-10-01 18:25:32,787 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:25:32,787 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:25:33,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:33,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:33,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:33,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 18:25:33,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 18:25:33,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:34,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:34,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:34,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:34,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:25:34,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:25:34,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:35,841 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:35,863 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:35,941 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.972 +2025-10-01 18:25:35,941 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:25:35,941 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:25:39,126 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:39,148 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:39,228 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=17.092 +2025-10-01 18:25:39,229 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:25:39,229 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:25:40,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:40,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:40,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:40,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:25:40,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:25:40,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:42,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:42,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:42,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:42,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:25:42,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:25:42,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:43,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:43,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:43,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:43,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:25:43,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:25:43,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:44,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:44,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:44,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:44,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:25:44,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:25:44,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:45,774 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:45,795 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:45,870 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.841 +2025-10-01 18:25:45,870 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:25:45,870 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:25:49,387 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:49,408 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:49,487 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.923 +2025-10-01 18:25:49,487 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:25:49,487 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:25:51,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:51,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:51,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:51,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:25:51,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:25:51,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:52,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:52,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:52,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:52,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:25:52,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:25:52,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:52,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:52,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:52,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:52,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:25:52,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:25:52,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:53,180 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:25:53,206 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:25:53,284 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.175 +2025-10-01 18:25:53,284 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:25:53,284 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:25:54,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:54,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:54,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:54,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:25:54,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:25:54,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:55,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:55,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:55,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:55,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 18:25:55,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 18:25:55,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:25:58,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:25:58,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:25:58,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:25:58,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:25:58,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:25:58,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:00,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:00,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:00,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:00,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:26:00,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:26:00,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:00,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:00,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:00,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:00,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:26:00,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:26:00,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:02,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:02,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:02,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:02,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:26:02,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:26:02,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:03,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:03,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:03,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:03,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:26:03,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:26:03,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:04,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:04,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:04,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:04,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:26:04,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:26:04,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:05,140 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:26:05,162 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:26:05,239 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.506 +2025-10-01 18:26:05,240 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:26:05,240 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:26:06,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:06,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:06,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:06,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:26:06,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:26:06,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:06,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:06,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:06,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:06,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.126s +2025-10-01 18:26:06,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.126s (avg: 0.126s/image) +2025-10-01 18:26:06,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:07,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:07,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:07,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:07,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 18:26:07,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 18:26:07,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:08,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:08,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:08,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:08,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:26:08,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:26:08,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:09,418 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:26:09,437 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:26:09,514 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.810 +2025-10-01 18:26:09,514 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:26:09,514 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:26:09,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:09,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:09,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:09,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:26:09,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:26:09,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:09,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:09,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:10,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:10,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:26:10,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:26:10,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:10,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:10,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:10,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:10,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:26:10,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:26:10,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:10,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:10,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:10,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:11,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:26:11,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:26:11,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:12,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:12,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:12,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:12,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:26:12,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:26:12,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:13,672 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:26:13,696 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:26:13,773 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.177 +2025-10-01 18:26:13,774 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:26:13,774 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:26:14,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:14,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:14,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:14,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:26:14,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:26:14,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:15,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:15,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:15,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:16,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:26:16,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:26:16,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:16,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:16,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:16,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:16,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:26:16,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:26:16,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:16,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:16,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:16,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:16,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:26:16,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:26:16,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:17,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:17,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:17,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:17,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:26:17,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:26:17,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:17,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:17,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:17,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:17,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:26:17,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:26:17,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:19,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:19,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:19,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:19,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:26:19,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:26:19,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:19,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:19,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:19,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:19,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:26:19,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:26:19,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:20,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:20,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:20,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:20,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:26:20,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:26:20,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:22,242 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:26:22,284 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:26:22,366 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.010 +2025-10-01 18:26:22,366 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:26:22,366 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:26:22,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:22,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:22,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:22,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:26:22,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:26:22,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:23,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:23,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:23,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:23,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:26:23,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:26:23,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:24,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:24,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:24,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:24,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:26:24,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:26:24,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:26,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:26,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:26,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:26,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:26:26,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:26:26,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:27,801 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:26:27,838 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:26:27,921 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.968 +2025-10-01 18:26:27,922 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:26:27,922 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:26:28,419 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:26:28,453 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:26:28,534 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.338 +2025-10-01 18:26:28,534 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:26:28,534 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:26:28,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:28,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:28,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:28,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:26:28,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:26:28,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:29,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:29,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:29,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:29,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:26:29,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:26:29,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:30,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:30,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:30,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:30,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:26:30,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:26:30,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:30,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:30,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:30,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:30,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:26:30,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:26:30,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:32,047 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:26:32,072 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:26:32,151 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.005 +2025-10-01 18:26:32,151 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:26:32,151 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:26:32,692 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:26:32,721 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1067, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:26:32,800 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=6.275 +2025-10-01 18:26:32,801 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:26:32,801 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:26:33,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:33,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:33,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:33,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:26:33,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:26:33,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:34,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:34,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:34,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:34,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:26:34,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:26:34,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:34,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:34,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:34,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:35,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:26:35,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:26:35,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:35,567 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:26:35,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:26:35,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:26:35,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 18:26:35,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-01 18:26:35,848 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:26:36,379 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:26:36,406 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:26:36,481 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.770 +2025-10-01 18:26:36,482 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:26:36,482 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:26:41,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:41,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:41,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:41,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 18:26:41,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 18:26:41,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:41,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:41,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:41,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:41,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:26:41,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:26:41,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:49,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:49,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:49,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:49,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:26:49,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:26:49,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:51,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:51,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:51,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:51,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:26:51,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:26:51,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:26:54,568 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:26:54,599 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:26:54,686 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.068 +2025-10-01 18:26:54,687 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 18:26:54,687 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 18:26:58,112 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:26:58,131 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:26:58,210 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=19.644 +2025-10-01 18:26:58,211 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:26:58,211 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:26:59,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:26:59,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:26:59,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:26:59,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:26:59,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:26:59,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:01,487 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:27:01,513 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:27:01,594 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.000 +2025-10-01 18:27:01,594 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:27:01,594 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:27:06,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:06,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:06,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:06,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:27:06,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:27:06,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:07,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:07,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:07,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:07,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:27:07,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:27:07,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:07,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:07,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:07,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:07,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.209s +2025-10-01 18:27:07,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.209s (avg: 0.209s/image) +2025-10-01 18:27:07,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:09,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:09,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:09,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:09,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:27:09,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:27:09,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:13,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:13,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:13,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:13,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:27:13,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:27:13,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:17,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:17,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:17,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:17,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:27:17,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:27:17,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:21,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:21,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:21,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:21,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:27:21,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:27:21,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:22,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:22,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:22,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:22,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:27:22,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:27:22,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:22,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:22,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:22,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:22,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:27:22,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:27:22,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:25,411 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:27:25,435 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:27:25,514 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.192 +2025-10-01 18:27:25,514 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:27:25,514 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:27:26,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:26,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:26,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:26,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:27:26,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:27:26,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:27,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:27,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:27,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:28,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:27:28,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:27:28,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:28,652 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:27:28,681 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:27:28,764 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.496 +2025-10-01 18:27:28,764 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:27:28,764 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:27:29,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:29,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:29,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:29,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:27:29,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:27:29,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:31,153 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:27:31,175 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:27:31,260 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=6.733 +2025-10-01 18:27:31,260 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:27:31,261 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 18:27:31,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:31,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:31,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:32,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:27:32,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:27:32,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:32,205 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:27:32,233 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:27:32,317 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.465 +2025-10-01 18:27:32,318 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 18:27:32,318 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 18:27:34,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:34,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:34,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:34,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:27:34,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:27:34,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:34,454 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:27:34,468 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:27:34,544 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.429 +2025-10-01 18:27:34,545 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:27:34,545 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:27:34,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:34,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:34,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:35,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:27:35,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:27:35,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:36,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:36,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:36,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:36,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:27:36,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:27:36,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:37,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:37,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:37,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:37,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:27:37,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:27:37,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:38,581 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:27:38,601 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:27:38,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=174.865 +2025-10-01 18:27:38,675 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:27:38,676 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:27:38,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:38,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:38,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:38,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:27:38,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:27:38,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:39,766 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:27:39,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:27:39,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:27:40,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 18:27:40,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 18:27:40,062 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:27:40,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:40,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:40,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:40,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:27:40,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:27:40,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:41,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:41,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:41,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:41,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:27:41,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:27:41,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:42,323 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:27:42,346 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 836, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:27:42,426 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.983 +2025-10-01 18:27:42,426 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:27:42,426 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:27:42,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:42,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:42,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:43,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:27:43,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:27:43,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:44,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:44,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:45,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:45,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:27:45,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:27:45,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:46,904 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:27:46,950 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:27:47,038 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.772 +2025-10-01 18:27:47,038 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:27:47,038 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 18:27:47,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:47,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:47,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:48,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:27:48,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:27:48,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:48,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:48,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:48,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:48,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:27:48,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:27:48,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:49,649 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:27:49,682 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 821, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:27:49,761 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.088 +2025-10-01 18:27:49,761 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:27:49,761 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:27:50,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:50,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:50,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:50,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:27:50,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:27:50,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:51,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:51,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:51,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:51,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:27:51,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:27:51,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:52,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:52,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:52,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:52,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:27:52,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:27:52,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:52,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:52,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:52,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:52,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:27:52,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:27:52,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:52,928 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:27:52,966 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:27:53,051 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.712 +2025-10-01 18:27:53,052 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:27:53,052 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:27:55,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:55,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:55,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:55,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:27:55,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:27:55,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:57,251 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:27:57,277 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(787, 787, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:27:57,346 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.743 +2025-10-01 18:27:57,346 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 18:27:57,346 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 18:27:57,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:57,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:57,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:57,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:27:57,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:27:58,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:58,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:58,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:58,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:58,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:27:58,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:27:58,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:58,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:27:58,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:27:58,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:27:58,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:27:58,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:27:58,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:27:59,085 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:27:59,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:27:59,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:27:59,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 18:27:59,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 18:27:59,388 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:28:02,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:02,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:02,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:03,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:28:03,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:28:03,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:03,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:03,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:03,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:03,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:28:03,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:28:03,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:04,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:04,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:04,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:04,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:28:04,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:28:04,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:11,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:11,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:11,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:11,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:28:11,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:28:11,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:13,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:13,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:13,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:13,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:28:13,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:28:13,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:17,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:17,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:17,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:17,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:28:17,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:28:17,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:17,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:17,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:17,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:17,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:28:17,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:28:17,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:19,829 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:28:19,857 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:28:19,941 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.178 +2025-10-01 18:28:19,941 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 18:28:19,941 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:28:22,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:22,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:22,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:22,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:28:22,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:28:22,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:23,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:23,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:23,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:23,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:28:23,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:28:23,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:24,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:28:24,454 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:28:24,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.434 +2025-10-01 18:28:24,547 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 18:28:24,547 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 18:28:25,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:25,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:25,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:25,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 18:28:25,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 18:28:25,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:26,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:26,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:26,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:26,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:28:26,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:28:26,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:27,933 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:28:27,957 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:28:28,033 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.151 +2025-10-01 18:28:28,034 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:28:28,034 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:28:28,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:28,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:28,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:28,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:28:28,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:28:28,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:30,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:30,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:30,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:30,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:28:30,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:28:30,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:30,827 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:28:30,854 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(666, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:28:30,927 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.575 +2025-10-01 18:28:30,927 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:28:30,928 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:28:30,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:30,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:30,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:31,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:28:31,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:28:31,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:31,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:31,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:31,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:31,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:28:31,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:28:31,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:34,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:34,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:34,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:34,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:28:34,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:28:34,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:35,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:35,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:35,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:35,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:28:35,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:28:35,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:35,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:35,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:35,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:35,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:28:35,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:28:35,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:36,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:36,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:36,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:36,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:28:36,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:28:36,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:36,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:36,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:36,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:36,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:28:36,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:28:36,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:37,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:37,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:37,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:37,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 18:28:37,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 18:28:37,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:38,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:38,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:38,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:38,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:28:38,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:28:38,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:38,772 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:28:38,792 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:28:38,864 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.878 +2025-10-01 18:28:38,865 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:28:38,865 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:28:40,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:40,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:40,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:40,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:28:40,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:28:40,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:41,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:41,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:41,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:41,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:28:41,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:28:41,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:41,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:41,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:41,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:41,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:28:41,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:28:41,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:41,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:41,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:41,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:41,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:28:41,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:28:41,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:42,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:42,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:42,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:42,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 18:28:42,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 18:28:42,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:42,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:42,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:42,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:43,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:28:43,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:28:43,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:44,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:44,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:44,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:44,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:28:44,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:28:44,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:46,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:46,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:46,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:46,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 18:28:46,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 18:28:46,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:46,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:46,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:46,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:46,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:28:46,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:28:46,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:48,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:48,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:48,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:48,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:28:48,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:28:48,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:48,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:48,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:48,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:49,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:28:49,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:28:49,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:50,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:50,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:50,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:50,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:28:50,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:28:50,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:51,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:51,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:51,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:52,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:28:52,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:28:52,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:52,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:52,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:52,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:52,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:28:52,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:28:52,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:53,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:53,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:53,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:53,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:28:53,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:28:53,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:54,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:54,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:54,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:54,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:28:54,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:28:54,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:54,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:54,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:54,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:54,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:28:54,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:28:54,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:56,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:56,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:56,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:56,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:28:56,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:28:56,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:57,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:57,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:57,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:57,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:28:57,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:28:57,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:58,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:58,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:58,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:58,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:28:58,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:28:58,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:28:59,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:28:59,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:28:59,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:28:59,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:28:59,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:28:59,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:01,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:01,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:01,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:01,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:29:01,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:29:01,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:02,525 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:29:02,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:29:02,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:29:02,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 18:29:02,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 18:29:02,819 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:29:04,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:04,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:04,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:04,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:29:04,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:29:04,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:04,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:04,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:04,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:04,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:29:04,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:29:04,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:07,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:07,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:07,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:07,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:29:07,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:29:07,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:07,994 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:08,018 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:08,096 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.066 +2025-10-01 18:29:08,097 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:29:08,097 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:29:08,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:08,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:08,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:08,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:29:08,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:29:08,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:08,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:08,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:09,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:09,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:29:09,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:29:09,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:09,352 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:09,388 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:09,466 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.423 +2025-10-01 18:29:09,467 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:29:09,467 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:29:10,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:10,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:10,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:11,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:29:11,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:29:11,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:11,248 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:11,265 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(640, 640, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:11,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.402 +2025-10-01 18:29:11,336 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:29:11,337 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 18:29:11,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:11,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:11,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:11,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:29:11,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:29:11,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:14,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:14,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:14,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:14,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:29:14,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:29:14,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:14,892 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:14,909 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:14,983 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.514 +2025-10-01 18:29:14,983 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:29:14,984 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:29:15,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:15,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:15,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:15,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:29:15,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:29:15,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:15,366 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:15,391 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:15,468 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.207 +2025-10-01 18:29:15,468 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:29:15,469 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:29:15,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:15,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:15,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:16,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:29:16,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:29:16,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:16,750 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:29:16,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:29:16,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:29:17,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 18:29:17,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 18:29:17,047 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:29:19,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:19,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:19,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:19,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:29:19,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:29:19,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:19,619 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:19,643 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:19,722 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.178 +2025-10-01 18:29:19,722 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:29:19,722 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:29:19,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:19,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:19,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:20,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:29:20,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:29:20,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:21,425 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:21,450 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:21,530 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.880 +2025-10-01 18:29:21,530 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:29:21,531 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:29:21,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:21,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:21,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:22,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:29:22,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:29:22,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:22,972 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:23,009 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:23,096 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.539 +2025-10-01 18:29:23,097 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 18:29:23,097 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 18:29:23,651 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 18:29:23,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 18:29:23,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 18:29:24,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.434s +2025-10-01 18:29:24,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.434s (avg: 0.145s/image) +2025-10-01 18:29:24,087 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 18:29:25,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:25,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:25,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:25,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:29:25,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:29:25,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:26,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:26,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:26,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:26,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:29:26,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:29:26,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:26,483 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:26,509 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:26,588 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.604 +2025-10-01 18:29:26,588 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:29:26,588 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:29:29,562 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:29:29,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:29:29,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:29:29,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 18:29:29,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 18:29:29,846 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:29:30,139 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:30,158 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:30,227 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=182.744 +2025-10-01 18:29:30,227 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 18:29:30,227 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 18:29:30,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:30,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:30,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:30,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 18:29:30,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 18:29:30,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:31,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:31,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:31,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:31,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:29:31,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:29:31,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:32,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:32,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:32,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:32,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:29:32,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:29:32,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:33,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:33,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:33,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:33,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:29:33,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:29:33,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:33,607 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:33,631 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:33,704 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.220 +2025-10-01 18:29:33,705 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:29:33,705 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:29:33,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:33,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:34,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:34,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:29:34,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:29:34,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:35,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:35,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:35,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:35,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:29:35,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:29:35,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:36,271 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:29:36,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:29:36,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:29:36,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 18:29:36,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 18:29:36,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:29:37,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:37,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:37,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:37,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:29:37,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:29:37,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:38,102 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:29:38,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:29:38,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:29:38,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +2025-10-01 18:29:38,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.319s (avg: 0.159s/image) +2025-10-01 18:29:38,423 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:29:38,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:38,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:38,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:38,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 18:29:38,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 18:29:38,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:38,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:38,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:38,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:39,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:29:39,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:29:39,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:40,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:40,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:40,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:41,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:29:41,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:29:41,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:41,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:41,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:41,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:41,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:29:41,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:29:41,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:43,145 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:43,181 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:43,262 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.131 +2025-10-01 18:29:43,262 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:29:43,262 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:29:44,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:44,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:44,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:44,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:29:44,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:29:44,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:46,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:46,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:46,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:46,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:29:46,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:29:46,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:47,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:47,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:47,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:47,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:29:47,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:29:47,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:47,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:47,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:47,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:47,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 18:29:47,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 18:29:47,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:48,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:48,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:48,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:49,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:29:49,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:29:49,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:49,136 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:49,149 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:49,223 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.141 +2025-10-01 18:29:49,224 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:29:49,224 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:29:50,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:50,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:50,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:50,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:29:50,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:29:50,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:50,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:50,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:50,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:50,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:29:50,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:29:50,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:52,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:52,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:52,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:52,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:29:52,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:29:52,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:53,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:53,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:53,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:53,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:29:53,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:29:53,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:53,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:53,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:54,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:54,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:29:54,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:29:54,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:54,276 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:29:54,290 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:29:54,364 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.778 +2025-10-01 18:29:54,365 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:29:54,365 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:29:55,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:55,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:55,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:55,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:29:55,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:29:55,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:56,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:29:56,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:29:56,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:29:56,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:29:56,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:29:56,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:29:59,224 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:29:59,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:29:59,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:29:59,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 18:29:59,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-01 18:29:59,530 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:29:59,851 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:29:59,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:29:59,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:30:00,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.239s +2025-10-01 18:30:00,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.239s (avg: 0.119s/image) +2025-10-01 18:30:00,091 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:30:01,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:01,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:01,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:01,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:30:01,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:30:01,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:03,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:03,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:03,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:03,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:30:03,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:30:03,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:04,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:04,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:04,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:04,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:30:04,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:30:04,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:05,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:05,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:06,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:06,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:30:06,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:30:06,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:07,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:07,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:07,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:08,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:30:08,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:30:08,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:09,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:09,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:09,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:09,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:30:09,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:30:09,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:10,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:10,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:10,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:10,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:30:10,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:30:10,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:10,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:10,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:10,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:10,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:30:10,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:30:10,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:11,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:11,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:11,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:11,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:30:11,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:30:11,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:12,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:12,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:12,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:12,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:30:12,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:30:12,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:13,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:13,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:13,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:13,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:30:13,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:30:13,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:14,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:14,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:14,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:14,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:30:14,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:30:14,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:15,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:15,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:15,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:15,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:30:15,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:30:15,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:16,817 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:30:16,841 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:30:16,927 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.840 +2025-10-01 18:30:16,927 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:30:16,927 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:30:17,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:17,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:17,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:17,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:30:17,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:30:17,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:17,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:17,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:17,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:17,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:30:17,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:30:17,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:18,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:18,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:18,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:18,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:30:18,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:30:18,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:18,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:18,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:18,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:18,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:30:18,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:30:18,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:20,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:20,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:20,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:20,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:30:20,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:30:20,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:21,036 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:30:21,071 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:30:21,153 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.844 +2025-10-01 18:30:21,154 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:30:21,154 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:30:22,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:22,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:22,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:22,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:30:22,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:30:22,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:22,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:22,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:22,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:22,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:30:22,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:30:22,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:23,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:23,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:23,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:23,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:30:23,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:30:23,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:23,891 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:30:23,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:30:23,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:30:24,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 18:30:24,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-01 18:30:24,195 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:30:24,670 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:30:24,695 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:30:24,769 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.312 +2025-10-01 18:30:24,769 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:30:24,769 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:30:26,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:26,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:26,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:26,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:30:26,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:30:26,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:27,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:27,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:27,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:27,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:30:27,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:30:27,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:28,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:28,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:28,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:28,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:30:28,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:30:28,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:28,638 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:30:28,662 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:30:28,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.779 +2025-10-01 18:30:28,735 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:30:28,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 18:30:29,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:29,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:29,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:29,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:30:29,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:30:29,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:29,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:29,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:29,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:30,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:30:30,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:30:30,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:32,199 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:30:32,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:30:32,296 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.827 +2025-10-01 18:30:32,297 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:30:32,297 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:30:32,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:32,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:32,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:33,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:30:33,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:30:33,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:33,269 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:30:33,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:30:33,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:30:33,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 18:30:33,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 18:30:33,567 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:30:33,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:33,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:33,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:33,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 18:30:33,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 18:30:33,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:35,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:35,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:35,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:35,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:30:35,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:30:35,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:36,130 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:30:36,155 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:30:36,228 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.051 +2025-10-01 18:30:36,229 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:30:36,229 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:30:37,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:37,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:37,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:37,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:30:37,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:30:37,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:38,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:38,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:38,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:38,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 18:30:38,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 18:30:38,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:39,310 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:30:39,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:30:39,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:30:39,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-01 18:30:39,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +2025-10-01 18:30:39,632 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:30:42,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:42,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:42,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:42,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:30:42,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:30:42,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:42,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:42,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:42,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:42,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:30:42,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:30:42,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:43,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:43,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:43,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:43,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:30:43,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:30:43,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:43,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:43,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:43,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:43,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:30:43,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:30:43,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:44,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:44,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:44,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:44,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:30:44,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:30:44,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:44,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:44,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:44,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:44,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:30:44,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:30:44,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:46,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:46,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:46,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:46,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:30:46,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:30:46,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:46,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:46,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:46,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:47,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:30:47,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:30:47,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:48,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:48,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:48,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:48,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:30:48,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:30:48,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:48,632 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:30:48,655 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(929, 904, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:30:48,741 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.655 +2025-10-01 18:30:48,741 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:30:48,741 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:30:49,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:49,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:49,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:49,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:30:49,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:30:49,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:50,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:50,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:50,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:50,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:30:50,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:30:50,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:50,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:50,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:50,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:50,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:30:50,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:30:50,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:51,283 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:30:51,306 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:30:51,380 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.742 +2025-10-01 18:30:51,380 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:30:51,380 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:30:51,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:51,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:52,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:52,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:30:52,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:30:52,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:52,637 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:30:52,656 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(916, 850, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:30:52,736 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.669 +2025-10-01 18:30:52,736 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:30:52,737 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:30:53,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:53,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:53,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:53,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:30:53,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:30:53,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:54,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:54,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:54,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:54,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 18:30:54,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 18:30:54,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:55,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:55,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:55,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:55,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:30:55,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:30:55,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:55,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:55,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:55,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:56,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:30:56,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:30:56,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:56,582 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:30:56,609 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:30:56,688 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.738 +2025-10-01 18:30:56,688 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:30:56,689 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:30:57,359 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:30:57,395 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(843, 872, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:30:57,481 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.001 +2025-10-01 18:30:57,481 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:30:57,481 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:30:58,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:30:58,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:30:58,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:30:58,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:30:58,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:30:58,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:30:59,582 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:30:59,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:30:59,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:30:59,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-01 18:30:59,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.154s/image) +2025-10-01 18:30:59,892 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:31:00,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:00,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:00,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:00,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:31:00,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:31:00,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:00,692 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:31:00,711 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:31:00,785 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.297 +2025-10-01 18:31:00,785 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:31:00,785 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:31:04,104 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:31:04,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:31:04,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:31:04,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 18:31:04,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 18:31:04,402 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:31:04,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:04,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:04,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:04,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:31:04,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:31:04,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:08,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:08,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:08,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:08,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:31:08,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:31:08,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:08,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:08,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:08,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:08,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:31:08,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:31:08,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:09,637 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:31:09,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:31:09,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:31:09,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.332s +2025-10-01 18:31:09,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.332s (avg: 0.166s/image) +2025-10-01 18:31:09,971 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:31:10,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:10,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:10,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:10,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:31:10,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:31:10,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:10,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:10,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:10,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:11,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:31:11,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:31:11,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:11,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:11,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:11,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:11,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:31:11,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:31:11,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:12,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:12,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:12,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:12,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:31:12,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:31:12,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:16,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:16,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:16,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:16,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:31:16,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:31:16,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:17,339 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:31:17,362 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:31:17,434 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.180 +2025-10-01 18:31:17,435 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:31:17,435 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:31:18,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:18,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:18,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:18,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:31:18,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:31:18,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:19,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:19,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:19,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:19,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:31:19,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:31:19,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:21,205 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:31:21,229 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:31:21,301 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.572 +2025-10-01 18:31:21,301 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:31:21,301 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 18:31:22,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:22,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:22,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:22,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:31:22,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:31:22,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:23,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:23,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:23,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:23,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:31:23,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:31:23,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:24,790 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:31:24,817 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:31:24,891 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.284 +2025-10-01 18:31:24,891 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:31:24,892 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:31:27,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:27,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:27,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:27,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:31:27,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:31:27,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:28,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:28,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:28,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:28,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:31:28,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:31:28,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:29,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:29,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:29,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:29,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:31:29,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:31:29,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:30,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:30,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:30,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:30,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:31:30,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:31:30,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:30,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:30,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:30,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:30,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:31:30,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:31:30,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:31,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:31,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:31,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:31,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:31:31,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:31:31,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:32,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:32,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:32,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:32,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:31:32,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:31:32,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:37,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:37,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:37,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:38,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:31:38,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:31:38,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:38,373 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:31:38,412 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:31:38,503 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.282 +2025-10-01 18:31:38,503 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 18:31:38,503 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 18:31:38,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:38,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:38,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:38,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 18:31:38,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 18:31:38,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:40,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:40,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:40,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:40,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:31:40,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:31:40,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:42,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:42,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:42,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:42,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:31:42,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:31:42,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:42,685 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:31:42,709 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:31:42,786 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.329 +2025-10-01 18:31:42,786 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:31:42,786 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:31:43,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:43,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:43,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:43,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:31:43,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:31:43,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:44,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:44,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:44,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:44,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:31:44,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:31:44,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:45,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:45,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:45,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:46,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:31:46,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:31:46,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:46,476 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:31:46,499 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:31:46,573 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.889 +2025-10-01 18:31:46,573 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:31:46,573 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:31:48,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:48,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:48,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:48,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:31:48,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:31:48,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:49,148 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:31:49,182 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:31:49,256 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.565 +2025-10-01 18:31:49,256 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:31:49,257 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:31:53,705 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:31:53,740 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:31:53,818 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=169.423 +2025-10-01 18:31:53,819 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:31:53,819 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:31:56,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:56,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:56,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:56,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:31:56,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:31:56,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:57,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:57,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:57,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:57,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:31:57,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:31:57,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:31:57,566 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:31:57,588 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:31:57,660 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=202.999 +2025-10-01 18:31:57,660 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:31:57,660 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:31:59,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:31:59,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:31:59,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:31:59,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 18:31:59,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 18:31:59,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:04,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:04,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:04,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:04,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:32:04,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:32:04,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:07,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:07,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:07,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:07,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:32:07,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:32:07,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:07,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:07,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:08,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:08,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:32:08,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:32:08,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:09,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:09,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:09,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:09,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:32:09,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:32:09,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:11,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:11,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:11,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:11,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:32:11,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:32:11,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:12,138 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:32:12,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:32:12,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:32:12,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 18:32:12,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 18:32:12,414 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:32:17,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:17,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:17,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:17,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 18:32:17,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 18:32:17,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:22,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:22,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:22,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:22,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:32:22,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:32:22,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:26,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:26,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:26,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:26,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:32:26,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:32:26,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:28,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:28,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:28,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:28,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:32:28,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:32:28,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:32,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:32,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:32,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:32,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:32:32,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:32:32,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:32,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:32,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:32,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:32,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:32:32,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:32:32,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:33,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:33,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:33,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:33,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:32:33,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:32:33,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:37,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:37,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:37,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:37,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:32:37,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:32:37,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:39,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:39,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:40,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:40,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:32:40,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:32:40,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:45,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:45,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:45,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:45,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:32:45,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:32:45,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:46,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:46,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:46,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:46,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:32:46,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:32:46,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:48,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:48,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:48,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:48,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:32:48,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:32:48,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:49,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:49,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:49,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:49,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:32:49,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:32:49,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:53,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:53,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:53,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:54,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:32:54,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:32:54,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:54,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:32:54,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:32:54,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:32:54,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:32:54,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:32:54,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:32:55,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:32:55,630 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:32:55,716 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.604 +2025-10-01 18:32:55,717 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:32:55,717 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:33:00,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:00,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:00,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:00,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:33:00,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:33:00,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:04,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:04,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:04,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:04,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:33:04,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:33:04,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:08,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:08,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:08,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:08,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:33:08,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:33:08,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:14,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:14,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:14,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:14,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:33:14,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:33:14,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:15,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:15,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:15,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:15,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:33:15,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:33:15,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:19,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:19,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:19,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:19,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:33:19,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:33:19,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:23,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:23,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:23,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:23,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:33:23,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:33:23,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:24,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:24,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:24,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:24,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:33:24,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:33:24,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:29,105 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:29,131 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:29,220 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.937 +2025-10-01 18:33:29,221 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 18:33:29,221 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 18:33:29,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:29,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:29,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:29,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:33:29,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:33:29,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:32,269 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:32,299 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:32,388 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.259 +2025-10-01 18:33:32,389 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 18:33:32,389 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 18:33:32,759 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:32,783 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:32,859 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.666 +2025-10-01 18:33:32,859 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:33:32,859 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:33:33,242 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:33,264 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:33,337 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.246 +2025-10-01 18:33:33,338 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:33:33,338 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:33:33,788 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:33,823 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:33,903 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.261 +2025-10-01 18:33:33,904 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:33:33,904 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:33:34,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:34,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:34,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:34,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:33:34,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:33:34,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:35,396 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:35,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:35,505 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=204.705 +2025-10-01 18:33:35,506 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:33:35,506 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:33:35,736 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:35,757 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:35,832 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.158 +2025-10-01 18:33:35,832 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:33:35,832 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:33:36,152 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:36,190 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:36,269 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.827 +2025-10-01 18:33:36,270 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:33:36,270 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:33:36,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:36,894 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:36,970 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.587 +2025-10-01 18:33:36,970 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:33:36,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:33:37,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:37,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:38,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:38,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:33:38,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:33:38,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:38,175 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:38,192 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:38,265 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.140 +2025-10-01 18:33:38,265 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:33:38,266 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:33:38,449 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:38,483 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:38,561 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.351 +2025-10-01 18:33:38,561 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:33:38,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:33:38,751 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:38,771 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:38,844 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.040 +2025-10-01 18:33:38,844 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:33:38,844 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:33:39,039 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:39,060 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:39,135 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.848 +2025-10-01 18:33:39,135 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:33:39,135 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:33:39,611 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:39,639 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:39,713 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.536 +2025-10-01 18:33:39,713 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:33:39,713 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:33:40,174 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:40,206 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:40,284 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.454 +2025-10-01 18:33:40,284 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:33:40,284 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:33:42,901 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:42,924 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:43,000 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.932 +2025-10-01 18:33:43,000 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:33:43,000 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:33:43,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:43,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:43,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:43,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:33:43,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:33:43,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:46,325 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:46,349 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:46,427 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.645 +2025-10-01 18:33:46,427 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:33:46,427 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:33:48,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:48,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:48,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:48,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:33:48,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:33:48,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:49,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:49,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:49,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:49,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:33:49,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:33:49,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:49,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:49,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:49,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:49,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:33:49,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:33:49,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:52,090 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:33:52,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:33:52,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:33:52,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 18:33:52,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-01 18:33:52,376 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:33:53,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:53,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:53,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:53,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:33:53,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:33:53,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:55,266 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:33:55,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:33:55,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:33:55,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 18:33:55,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +2025-10-01 18:33:55,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:33:56,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:56,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:56,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:56,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:33:56,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:33:56,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:56,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:56,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:56,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:57,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:33:57,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:33:57,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:58,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:58,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:58,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:59,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:33:59,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:33:59,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:33:59,213 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:33:59,232 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:33:59,307 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.343 +2025-10-01 18:33:59,308 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:33:59,308 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:33:59,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:33:59,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:33:59,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:33:59,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:33:59,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:33:59,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:01,604 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:34:01,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:34:01,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:34:01,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-01 18:34:01,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.155s/image) +2025-10-01 18:34:01,915 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:34:02,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:02,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:02,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:02,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:34:02,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:34:02,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:04,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:04,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:04,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:04,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:34:04,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:34:04,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:04,606 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:34:04,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:34:04,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:34:04,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 18:34:04,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 18:34:04,893 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:34:07,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:07,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:07,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:07,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:34:07,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:34:07,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:08,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:08,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:08,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:08,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:34:08,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:34:08,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:12,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:12,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:12,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:12,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:34:12,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:34:12,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:12,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:12,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:12,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:13,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:34:13,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:34:13,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:13,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:13,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:13,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:13,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:34:13,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:34:13,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:15,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:15,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:15,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:15,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:34:15,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:34:15,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:17,703 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:34:17,731 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(794, 719, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:34:17,812 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.778 +2025-10-01 18:34:17,812 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:34:17,812 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:34:17,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:17,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:18,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:18,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:34:18,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:34:18,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:18,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:18,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:18,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:19,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:34:19,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:34:19,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:21,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:21,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:21,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:21,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:34:21,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:34:21,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:23,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:23,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:23,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:23,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:34:23,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:34:23,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:24,203 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:34:24,225 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(930, 880, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:34:24,312 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.638 +2025-10-01 18:34:24,313 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:34:24,313 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 18:34:24,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:24,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:24,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:24,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:34:24,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:34:24,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:24,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:24,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:24,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:24,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:34:24,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:34:24,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:29,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:29,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:29,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:29,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:34:29,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:34:29,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:29,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:29,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:30,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:30,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:34:30,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:34:30,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:34,360 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:34:34,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:34:34,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:34:34,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 18:34:34,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 18:34:34,651 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:34:35,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:35,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:35,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:35,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:34:35,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:34:35,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:35,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:35,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:35,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:35,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:34:35,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:34:35,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:39,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:39,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:39,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:39,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:34:39,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:34:39,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:40,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:40,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:40,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:40,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:34:40,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:34:40,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:40,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:40,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:40,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:40,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:34:40,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:34:40,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:41,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:41,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:41,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:41,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:34:41,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:34:41,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:44,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:44,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:44,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:44,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:34:44,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:34:44,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:45,345 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:34:45,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:34:45,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:34:45,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 18:34:45,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 18:34:45,631 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:34:46,105 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:34:46,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:34:46,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:34:46,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 18:34:46,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 18:34:46,398 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:34:46,852 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 18:34:46,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 18:34:46,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 18:34:47,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.424s +2025-10-01 18:34:47,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.424s (avg: 0.141s/image) +2025-10-01 18:34:47,277 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 18:34:47,826 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:34:47,874 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:34:47,958 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.543 +2025-10-01 18:34:47,958 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:34:47,958 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:34:50,647 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:34:50,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:34:50,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:34:50,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 18:34:50,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 18:34:50,947 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:34:51,348 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:34:51,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:34:51,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:34:51,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 18:34:51,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 18:34:51,630 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:34:52,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:52,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:52,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:52,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:34:52,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:34:52,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:52,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:52,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:52,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:52,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:34:52,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:34:52,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:53,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:53,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:53,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:53,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:34:53,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:34:53,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:53,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:53,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:53,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:54,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:34:54,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:34:54,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:54,735 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:34:54,776 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:34:54,853 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=219.779 +2025-10-01 18:34:54,853 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:34:54,853 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:34:55,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:55,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:55,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:55,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:34:55,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:34:55,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:34:56,271 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:34:56,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:34:56,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:34:56,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 18:34:56,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 18:34:56,563 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:34:57,084 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:34:57,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:34:57,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:34:57,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 18:34:57,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 18:34:57,376 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:34:57,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:34:57,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:34:58,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:34:58,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:34:58,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:34:58,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:00,209 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:35:00,236 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:35:00,318 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.863 +2025-10-01 18:35:00,318 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:35:00,318 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:35:01,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:01,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:01,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:02,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:35:02,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:35:02,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:03,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:03,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:03,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:04,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:35:04,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:35:04,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:06,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:06,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:06,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:06,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:35:06,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:35:06,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:07,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:07,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:07,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:07,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:35:07,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:35:07,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:10,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:10,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:10,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:10,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:35:10,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:35:10,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:10,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:10,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:10,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:11,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:35:11,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:35:11,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:11,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:11,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:11,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:11,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:35:11,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:35:11,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:12,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:12,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:12,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:12,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:35:12,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:35:12,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:15,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:15,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:15,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:15,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:35:15,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:35:15,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:16,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:16,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:16,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:16,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:35:16,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:35:16,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:16,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:16,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:16,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:16,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:35:16,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:35:16,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:17,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:17,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:17,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:17,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:35:17,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:35:17,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:18,611 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:35:18,660 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:35:18,749 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.593 +2025-10-01 18:35:18,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 18:35:18,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 18:35:21,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:21,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:21,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:21,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:35:21,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:35:21,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:21,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:21,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:21,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:21,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:35:21,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:35:21,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:21,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:21,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:21,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:22,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:35:22,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:35:22,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:22,277 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:35:22,304 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:35:22,384 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.364 +2025-10-01 18:35:22,384 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:35:22,384 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:35:24,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:24,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:24,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:24,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:35:24,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:35:24,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:25,052 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:35:25,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:35:25,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:35:25,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 18:35:25,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 18:35:25,338 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:35:25,915 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:35:25,941 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:35:26,019 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.663 +2025-10-01 18:35:26,019 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:35:26,019 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:35:28,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:28,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:28,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:28,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:35:28,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:35:28,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:29,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:29,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:29,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:29,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:35:29,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:35:29,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:30,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:30,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:30,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:30,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:35:30,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:35:30,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:30,949 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:35:30,974 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:35:31,050 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.222 +2025-10-01 18:35:31,050 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:35:31,050 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:35:32,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:32,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:32,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:32,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:35:32,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:35:32,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:33,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:33,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:33,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:33,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:35:33,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:35:33,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:34,138 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:35:34,172 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:35:34,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.092 +2025-10-01 18:35:34,250 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:35:34,250 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:35:36,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:36,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:36,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:36,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:35:36,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:35:36,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:36,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:36,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:36,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:36,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:35:36,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:35:36,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:37,787 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:35:37,808 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:35:37,880 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.526 +2025-10-01 18:35:37,880 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:35:37,880 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 18:35:39,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:39,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:39,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:39,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:35:39,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:35:39,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:40,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:40,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:40,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:40,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 18:35:40,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 18:35:40,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:41,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:41,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:41,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:41,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:35:41,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:35:41,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:43,849 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:35:43,873 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:35:43,954 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.783 +2025-10-01 18:35:43,954 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:35:43,954 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:35:44,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:44,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:44,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:44,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:35:44,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:35:44,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:44,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:44,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:44,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:44,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:35:44,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:35:44,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:45,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:45,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:45,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:45,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:35:45,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:35:45,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:48,408 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:35:48,431 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:35:48,505 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.943 +2025-10-01 18:35:48,505 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:35:48,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:35:49,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:49,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:49,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:49,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:35:49,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:35:49,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:49,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:49,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:49,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:49,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:35:49,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:35:49,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:50,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:50,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:50,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:50,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:35:50,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:35:50,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:50,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:50,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:50,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:50,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:35:50,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:35:50,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:51,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:51,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:51,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:51,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:35:51,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:35:51,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:52,425 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:35:52,447 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:35:52,519 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.483 +2025-10-01 18:35:52,520 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:35:52,520 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 18:35:54,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:54,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:54,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:54,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:35:54,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:35:54,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:54,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:54,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:54,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:55,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:35:55,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:35:55,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:55,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:55,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:55,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:55,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:35:55,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:35:55,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:56,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:56,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:56,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:56,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:35:56,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:35:56,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:59,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:35:59,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:35:59,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:35:59,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:35:59,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:35:59,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:35:59,913 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:35:59,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:35:59,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:36:00,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 18:36:00,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 18:36:00,202 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:36:02,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:02,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:02,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:02,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:36:02,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:36:02,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:02,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:02,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:02,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:03,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:36:03,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:36:03,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:03,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:03,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:04,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:04,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:36:04,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:36:04,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:04,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:04,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:04,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:04,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:36:04,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:36:04,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:05,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:05,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:05,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:06,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 18:36:06,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 18:36:06,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:10,643 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:36:10,677 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:36:10,760 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.558 +2025-10-01 18:36:10,760 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:36:10,760 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:36:10,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:10,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:10,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:11,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:36:11,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:36:11,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:13,388 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:36:13,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:36:13,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:36:13,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 18:36:13,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 18:36:13,682 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:36:14,229 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:36:14,256 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:36:14,333 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.638 +2025-10-01 18:36:14,334 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:36:14,334 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:36:14,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:14,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:14,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:15,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:36:15,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:36:15,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:17,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:17,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:17,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:17,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:36:17,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:36:17,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:17,497 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:36:17,521 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:36:17,602 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.445 +2025-10-01 18:36:17,602 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:36:17,602 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:36:18,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:18,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:19,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:19,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:36:19,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:36:19,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:20,790 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:36:20,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:36:20,897 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.011 +2025-10-01 18:36:20,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:36:20,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:36:22,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:22,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:22,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:22,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:36:22,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:36:22,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:22,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:22,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:22,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:22,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:36:22,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:36:22,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:23,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:23,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:23,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:23,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:36:23,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:36:23,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:25,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:25,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:25,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:25,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:36:25,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:36:25,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:27,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:27,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:27,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:27,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:36:27,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:36:27,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:28,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:28,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:28,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:28,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:36:28,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:36:28,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:29,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:29,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:29,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:29,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:36:29,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:36:29,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:30,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:30,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:30,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:30,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:36:30,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:36:30,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:32,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:32,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:32,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:33,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:36:33,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:36:33,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:34,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:34,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:34,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:34,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:36:34,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:36:34,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:37,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:37,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:37,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:37,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 18:36:37,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 18:36:37,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:38,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:38,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:38,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:38,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:36:38,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:36:38,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:40,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:40,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:40,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:40,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:36:40,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:36:40,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:40,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:40,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:40,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:40,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 18:36:40,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 18:36:40,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:41,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:41,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:41,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:41,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:36:41,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:36:41,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:41,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:41,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:41,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:41,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:36:41,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:36:41,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:42,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:42,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:42,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:42,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:36:42,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:36:42,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:43,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:43,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:43,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:43,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:36:43,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:36:43,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:43,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:43,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:43,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:43,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:36:43,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:36:43,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:47,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:47,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:47,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:47,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:36:47,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:36:47,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:48,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:48,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:48,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:48,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:36:48,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:36:48,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:49,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:49,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:49,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:49,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:36:49,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:36:49,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:51,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:51,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:51,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:51,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:36:51,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:36:51,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:54,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:54,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:54,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:54,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:36:54,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:36:54,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:55,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:55,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:55,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:55,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:36:55,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:36:55,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:57,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:36:57,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:36:57,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:36:57,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:36:57,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:36:57,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:36:57,940 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:36:57,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:36:57,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:36:58,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 18:36:58,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 18:36:58,217 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:37:01,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:01,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:01,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:01,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:37:01,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:37:01,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:01,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:01,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:01,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:02,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:37:02,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:37:02,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:02,383 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:37:02,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:37:02,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:37:02,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 18:37:02,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 18:37:02,681 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:37:06,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:06,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:06,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:06,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 18:37:06,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 18:37:06,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:07,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:07,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:07,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:07,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:37:07,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:37:07,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:07,832 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:37:07,847 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:37:07,927 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.429 +2025-10-01 18:37:07,928 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:37:07,928 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:37:09,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:09,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:09,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:09,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:37:09,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:37:09,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:10,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:10,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:10,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:10,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:37:10,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:37:10,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:11,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:11,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:11,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:11,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:37:11,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:37:11,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:12,053 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:37:12,088 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:37:12,170 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.249 +2025-10-01 18:37:12,171 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:37:12,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:37:14,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:14,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:14,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:14,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:37:14,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:37:14,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:16,708 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:37:16,741 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:37:16,822 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.454 +2025-10-01 18:37:16,822 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:37:16,822 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:37:18,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:18,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:18,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:18,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:37:18,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:37:18,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:20,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:20,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:20,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:21,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:37:21,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:37:21,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:21,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:21,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:21,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:21,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:37:21,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:37:21,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:26,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:26,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:26,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:26,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:37:26,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:37:26,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:27,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:27,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:27,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:27,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:37:27,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:37:27,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:27,968 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:37:27,991 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:37:28,063 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.603 +2025-10-01 18:37:28,064 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:37:28,064 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 18:37:28,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:28,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:28,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:28,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 18:37:28,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 18:37:28,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:30,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:30,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:30,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:30,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:37:30,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:37:30,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:31,327 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:37:31,358 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:37:31,432 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.736 +2025-10-01 18:37:31,433 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:37:31,433 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:37:31,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:31,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:31,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:32,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:37:32,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:37:32,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:34,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:34,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:34,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:34,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:37:34,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:37:34,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:34,661 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:37:34,684 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:37:34,757 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.067 +2025-10-01 18:37:34,758 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:37:34,758 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:37:35,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:35,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:35,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:35,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:37:35,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:37:35,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:35,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:35,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:35,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:36,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:37:36,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:37:36,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:41,207 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:37:41,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:37:41,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:37:41,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-01 18:37:41,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +2025-10-01 18:37:41,523 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:37:42,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:42,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:42,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:42,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:37:42,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:37:42,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:44,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:44,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:44,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:44,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:37:44,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:37:44,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:45,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:45,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:45,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:45,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:37:45,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:37:45,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:46,262 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:37:46,284 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:37:46,359 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.342 +2025-10-01 18:37:46,359 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:37:46,359 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:37:46,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:46,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:46,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:47,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:37:47,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:37:47,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:48,650 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:37:48,670 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:37:48,742 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.287 +2025-10-01 18:37:48,743 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:37:48,743 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:37:49,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:49,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:49,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:49,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:37:49,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:37:49,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:50,946 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:37:50,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:37:51,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:37:51,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 18:37:51,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 18:37:51,234 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:37:51,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:51,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:51,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:51,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:37:51,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:37:51,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:54,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:54,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:54,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:54,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:37:54,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:37:54,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:55,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:55,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:55,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:55,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:37:55,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:37:55,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:56,148 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:37:56,178 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:37:56,258 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.443 +2025-10-01 18:37:56,258 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:37:56,258 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:37:58,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:37:58,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:37:58,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:37:58,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:37:58,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:37:58,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:37:59,275 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:37:59,301 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:37:59,378 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.372 +2025-10-01 18:37:59,378 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:37:59,378 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:38:02,421 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:38:02,446 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:38:02,522 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.131 +2025-10-01 18:38:02,522 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:38:02,522 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:38:02,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:02,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:03,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:03,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:38:03,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:38:03,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:04,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:04,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:04,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:04,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:38:04,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:38:04,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:04,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:04,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:04,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:05,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:38:05,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:38:05,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:05,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:05,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:05,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:05,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:38:05,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:38:05,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:07,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:07,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:07,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:08,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:38:08,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:38:08,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:10,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:10,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:10,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:10,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:38:10,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:38:10,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:12,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:12,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:12,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:12,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:38:12,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:38:12,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:12,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:12,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:13,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:13,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:38:13,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:38:13,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:15,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:15,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:15,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:15,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:38:15,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:38:15,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:15,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:15,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:15,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:15,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:38:15,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:38:15,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:19,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:19,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:19,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:19,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:38:19,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:38:19,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:22,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:22,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:23,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:23,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:38:23,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:38:23,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:24,420 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:38:24,456 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:38:24,534 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.529 +2025-10-01 18:38:24,534 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:38:24,534 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:38:24,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:24,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:24,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:24,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:38:24,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:38:24,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:25,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:25,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:25,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:25,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:38:25,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:38:25,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:25,765 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:38:25,797 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:38:25,874 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.878 +2025-10-01 18:38:25,875 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:38:25,875 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:38:27,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:27,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:27,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:27,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:38:27,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:38:27,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:28,825 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:38:28,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:38:28,929 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.386 +2025-10-01 18:38:28,930 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:38:28,930 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:38:29,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:29,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:29,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:29,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:38:29,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:38:29,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:31,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:31,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:31,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:31,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:38:31,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:38:31,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:32,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:32,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:32,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:32,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:38:32,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:38:32,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:33,523 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:38:33,546 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:38:33,622 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.649 +2025-10-01 18:38:33,622 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:38:33,622 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:38:33,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:33,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:33,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:33,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:38:33,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:38:33,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:36,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:36,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:36,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:36,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 18:38:36,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 18:38:36,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:40,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:40,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:40,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:40,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:38:40,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:38:40,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:44,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:44,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:44,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:44,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:38:44,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:38:44,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:47,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:47,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:47,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:47,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:38:47,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:38:47,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:49,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:49,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:49,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:49,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:38:49,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:38:49,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:53,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:53,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:53,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:54,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:38:54,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:38:54,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:54,789 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:38:54,813 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 801, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:38:54,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.437 +2025-10-01 18:38:54,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 18:38:54,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:38:55,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:55,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:55,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:55,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:38:55,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:38:55,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:56,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:56,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:56,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:56,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:38:56,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:38:56,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:38:58,212 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:38:58,235 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(803, 803, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:38:58,311 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.832 +2025-10-01 18:38:58,312 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:38:58,312 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:38:58,660 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:38:58,694 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:38:58,774 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.662 +2025-10-01 18:38:58,775 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:38:58,775 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:38:59,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:38:59,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:38:59,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:38:59,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:38:59,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:38:59,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:02,117 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:39:02,140 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(797, 797, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:39:02,217 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.302 +2025-10-01 18:39:02,217 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:39:02,217 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:39:02,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:02,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:02,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:02,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:39:02,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:39:02,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:05,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:05,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:05,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:05,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:39:05,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:39:05,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:05,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:05,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:05,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:05,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:39:05,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:39:05,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:07,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:07,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:07,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:08,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:39:08,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:39:08,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:09,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:09,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:09,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:09,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:39:09,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:39:09,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:09,507 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:39:09,534 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:39:09,623 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.267 +2025-10-01 18:39:09,623 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:39:09,623 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 18:39:10,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:10,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:10,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:10,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:39:10,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:39:10,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:10,569 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:39:10,591 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:39:10,663 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.061 +2025-10-01 18:39:10,664 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:39:10,664 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:39:11,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:11,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:11,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:11,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:39:11,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:39:11,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:13,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:13,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:13,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:13,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:39:13,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:39:13,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:14,622 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:39:14,663 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:39:14,748 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.655 +2025-10-01 18:39:14,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:39:14,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:39:14,978 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:39:15,009 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:39:15,091 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.523 +2025-10-01 18:39:15,092 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 18:39:15,092 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:39:15,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:15,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:15,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:15,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:39:15,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:39:15,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:15,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:15,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:15,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:15,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 18:39:15,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 18:39:15,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:16,791 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:39:16,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:39:16,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:39:17,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.318s +2025-10-01 18:39:17,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.318s (avg: 0.159s/image) +2025-10-01 18:39:17,110 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:39:18,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:39:18,722 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:39:18,798 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.380 +2025-10-01 18:39:18,798 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:39:18,798 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:39:20,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:20,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:20,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:20,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:39:20,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:39:20,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:21,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:21,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:21,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:21,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:39:21,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:39:21,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:21,946 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:39:21,973 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:39:22,049 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.477 +2025-10-01 18:39:22,049 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:39:22,050 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:39:23,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:23,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:23,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:23,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:39:23,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:39:23,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:24,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:24,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:24,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:24,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:39:24,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:39:24,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:24,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:24,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:24,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:24,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:39:24,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:39:24,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:25,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:25,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:25,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:25,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:39:25,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:39:25,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:25,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:25,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:25,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:26,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:39:26,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:39:26,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:27,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:27,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:27,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:27,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:39:27,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:39:27,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:28,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:28,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:28,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:28,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:39:28,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:39:28,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:28,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:28,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:29,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:29,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:39:29,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:39:29,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:30,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:30,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:30,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:30,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:39:30,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:39:30,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:30,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:30,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:30,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:30,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:39:30,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:39:30,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:31,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:31,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:31,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:32,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:39:32,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:39:32,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:32,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:32,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:32,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:32,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:39:32,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:39:32,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:35,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:35,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:35,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:35,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:39:35,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:39:35,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:35,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:35,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:35,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:35,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:39:35,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:39:35,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:36,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:36,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:36,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:36,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:39:36,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:39:36,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:36,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:36,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:36,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:36,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:39:36,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:39:36,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:37,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:37,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:37,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:38,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:39:38,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:39:38,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:39,710 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:39:39,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:39:39,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:39:40,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 18:39:40,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 18:39:40,007 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:39:40,236 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:39:40,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:39:40,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:39:40,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 18:39:40,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 18:39:40,521 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:39:41,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:41,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:41,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:42,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:39:42,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:39:42,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:42,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:42,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:42,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:42,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:39:42,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:39:42,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:43,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:43,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:43,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:43,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:39:43,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:39:43,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:43,915 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:39:43,943 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:39:44,024 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.488 +2025-10-01 18:39:44,025 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:39:44,025 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:39:46,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:46,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:46,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:46,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 18:39:46,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 18:39:46,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:47,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:47,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:47,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:47,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:39:47,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:39:47,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:47,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:47,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:47,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:47,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:39:47,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:39:47,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:47,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:47,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:47,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:48,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:39:48,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:39:48,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:48,087 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:39:48,111 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:39:48,188 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.791 +2025-10-01 18:39:48,188 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:39:48,189 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:39:48,610 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:39:48,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:39:48,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:39:48,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-01 18:39:48,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +2025-10-01 18:39:48,870 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:39:51,304 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:39:51,329 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:39:51,409 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.133 +2025-10-01 18:39:51,410 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:39:51,410 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:39:51,755 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:39:51,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:39:51,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:39:52,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 18:39:52,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 18:39:52,048 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:39:54,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:54,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:54,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:54,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:39:54,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:39:54,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:54,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:54,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:54,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:54,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:39:54,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:39:54,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:55,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:55,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:55,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:55,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:39:55,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:39:55,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:56,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:56,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:56,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:56,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:39:56,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:39:56,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:56,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:56,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:56,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:57,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:39:57,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:39:57,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:58,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:58,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:58,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:58,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:39:58,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:39:58,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:39:59,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:39:59,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:39:59,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:39:59,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:39:59,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:39:59,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:00,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:00,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:00,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:00,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:40:00,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:40:00,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:02,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:02,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:02,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:02,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:40:02,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:40:02,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:05,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:05,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:05,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:05,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:40:05,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:40:05,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:06,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:06,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:06,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:06,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:40:06,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:40:06,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:07,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:07,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:07,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:07,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:40:07,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:40:07,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:08,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:08,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:08,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:08,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:40:08,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:40:08,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:08,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:08,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:08,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:08,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 18:40:08,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 18:40:08,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:15,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:15,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:15,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:15,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:40:15,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:40:15,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:15,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:15,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:15,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:15,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:40:15,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:40:15,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:16,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:16,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:16,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:16,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:40:16,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:40:16,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:16,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:16,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:17,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:17,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:40:17,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:40:17,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:23,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:23,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:23,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:23,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:40:23,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:40:23,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:23,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:23,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:23,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:24,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:40:24,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:40:24,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:26,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:26,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:26,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:26,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:40:26,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:40:26,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:27,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:27,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:27,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:27,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:40:27,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:40:27,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:28,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:28,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:28,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:28,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:40:28,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:40:28,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:29,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:29,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:29,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:29,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:40:29,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:40:29,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:30,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:30,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:30,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:31,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:40:31,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:40:31,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:33,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:33,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:33,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:33,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:40:33,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:40:33,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:34,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:34,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:35,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:35,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:40:35,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:40:35,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:35,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:35,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:35,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:35,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:40:35,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:40:35,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:36,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:36,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:36,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:36,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:40:36,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:40:36,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:37,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:37,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:37,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:37,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:40:37,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:40:37,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:38,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:38,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:38,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:39,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:40:39,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:40:39,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:39,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:39,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:39,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:39,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:40:39,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:40:39,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:40,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:40,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:40,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:40,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:40:40,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:40:40,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:40,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:40,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:40,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:41,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:40:41,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:40:41,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:41,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:41,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:41,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:41,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 18:40:41,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 18:40:41,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:41,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:41,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:41,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:42,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:40:42,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:40:42,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:42,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:42,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:43,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:43,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:40:43,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:40:43,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:43,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:43,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:43,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:43,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:40:43,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:40:43,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:46,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:46,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:46,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:46,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:40:46,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:40:46,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:46,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:46,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:46,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:47,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:40:47,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:40:47,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:47,343 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:40:47,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:40:47,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:40:47,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +2025-10-01 18:40:47,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +2025-10-01 18:40:47,605 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:40:48,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:48,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:48,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:48,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:40:48,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:40:48,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:48,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:48,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:48,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:48,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:40:48,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:40:48,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:51,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:51,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:51,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:52,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:40:52,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:40:52,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:52,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:52,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:52,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:52,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:40:52,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:40:52,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:53,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:53,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:53,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:53,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:40:53,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:40:53,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:54,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:54,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:54,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:54,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:40:54,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:40:54,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:54,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:54,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:54,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:54,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:40:54,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:40:54,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:55,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:55,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:55,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:56,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:40:56,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:40:56,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:58,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:58,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:58,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:58,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:40:58,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:40:58,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:40:59,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:40:59,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:40:59,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:40:59,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:40:59,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:40:59,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:01,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:01,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:01,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:01,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:41:01,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:41:01,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:01,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:01,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:01,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:02,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:41:02,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:41:02,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:04,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:04,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:04,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:04,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:41:04,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:41:04,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:05,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:05,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:05,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:05,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:41:05,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:41:05,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:06,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:06,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:06,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:06,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:41:06,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:41:06,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:08,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:08,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:08,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:08,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:41:08,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:41:08,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:09,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:09,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:09,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:09,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:41:09,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:41:09,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:10,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:10,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:10,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:10,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:41:10,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:41:10,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:11,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:11,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:11,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:12,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:41:12,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:41:12,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:12,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:12,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:12,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:12,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:41:12,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:41:12,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:14,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:14,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:14,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:15,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:41:15,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:41:15,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:15,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:15,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:15,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:15,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:41:15,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:41:15,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:16,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:16,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:16,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:16,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:41:16,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:41:16,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:17,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:17,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:17,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:17,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:41:17,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:41:17,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:17,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:17,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:17,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:18,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:41:18,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:41:18,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:18,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:18,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:18,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:19,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:41:19,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:41:19,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:22,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:22,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:22,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:22,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 18:41:22,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 18:41:22,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:22,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:22,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:22,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:22,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:41:22,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:41:22,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:23,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:23,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:23,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:23,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:41:23,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:41:23,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:23,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:23,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:23,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:23,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:41:23,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:41:23,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:24,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:24,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:24,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:24,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:41:24,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:41:24,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:27,607 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:41:27,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:41:27,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:41:27,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 18:41:27,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 18:41:27,883 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:41:30,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:30,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:30,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:30,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:41:30,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:41:30,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:30,931 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:30,955 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:31,032 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=168.618 +2025-10-01 18:41:31,033 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:41:31,033 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:41:32,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:32,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:32,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:32,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:41:32,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:41:32,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:33,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:33,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:33,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:33,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:41:33,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:41:33,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:34,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:34,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:34,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:34,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:41:34,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:41:34,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:37,529 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:37,556 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:37,634 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=203.296 +2025-10-01 18:41:37,635 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:41:37,635 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:41:37,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:37,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:37,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:37,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:41:37,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:41:37,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:40,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:40,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:40,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:40,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:41:40,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:41:40,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:41,313 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:41,337 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:41,414 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.719 +2025-10-01 18:41:41,414 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:41:41,415 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:41:44,189 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:44,216 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:44,305 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.143 +2025-10-01 18:41:44,305 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 18:41:44,305 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 18:41:44,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:44,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:44,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:44,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:41:44,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:41:44,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:44,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:44,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:44,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:45,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:41:45,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:41:45,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:45,676 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:45,697 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:45,769 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.625 +2025-10-01 18:41:45,770 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:41:45,770 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:41:46,210 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:46,250 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:46,340 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.497 +2025-10-01 18:41:46,340 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 18:41:46,341 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 18:41:47,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:47,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:47,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:47,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:41:47,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:41:47,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:48,275 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:48,307 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(917, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:48,393 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.607 +2025-10-01 18:41:48,393 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:41:48,393 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:41:49,553 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:49,577 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(729, 681, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:49,670 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.556 +2025-10-01 18:41:49,671 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 18:41:49,671 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 18:41:51,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:51,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:51,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:51,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:41:51,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:41:51,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:52,745 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:52,777 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:52,858 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.090 +2025-10-01 18:41:52,859 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:41:52,859 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:41:53,195 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:53,239 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(911, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:53,324 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.126 +2025-10-01 18:41:53,324 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 18:41:53,324 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 18:41:53,516 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:53,542 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:53,610 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.880 +2025-10-01 18:41:53,611 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 18:41:53,611 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 18:41:53,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:53,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:54,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:54,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:41:54,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:41:54,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:54,350 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:41:54,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:41:54,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:41:54,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 18:41:54,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 18:41:54,638 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:41:55,853 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:55,875 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(733, 637, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:55,952 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.456 +2025-10-01 18:41:55,952 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:41:55,953 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:41:57,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:41:57,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:41:57,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:41:57,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 18:41:57,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 18:41:57,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:41:57,357 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:41:57,403 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:41:57,488 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.902 +2025-10-01 18:41:57,488 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:41:57,488 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:42:00,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:00,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:00,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:00,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:42:00,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:42:00,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:01,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:01,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:01,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:01,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:42:01,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:42:01,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:06,185 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:42:06,214 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:42:06,295 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.816 +2025-10-01 18:42:06,295 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:42:06,296 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:42:07,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:07,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:07,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:07,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:42:07,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:42:07,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:08,046 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:42:08,074 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:42:08,158 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.162 +2025-10-01 18:42:08,158 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 18:42:08,158 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 18:42:11,702 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:42:11,724 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:42:11,813 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.754 +2025-10-01 18:42:11,813 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 18:42:11,814 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 18:42:11,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:11,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:11,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:12,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:42:12,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:42:12,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:12,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:12,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:12,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:12,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:42:12,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:42:12,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:12,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:12,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:12,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:12,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:42:12,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:42:12,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:15,045 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:42:15,069 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:42:15,166 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.946 +2025-10-01 18:42:15,166 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 18:42:15,166 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 18:42:15,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:15,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:15,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:15,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:42:15,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:42:15,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:18,441 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:42:18,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:42:18,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:42:18,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 18:42:18,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 18:42:18,743 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:42:19,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:19,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:19,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:19,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:42:19,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:42:19,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:20,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:20,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:20,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:20,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:42:20,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:42:20,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:24,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:24,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:24,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:24,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:42:24,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:42:24,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:25,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:25,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:25,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:25,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:42:25,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:42:25,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:28,359 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:42:28,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:42:28,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:42:28,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 18:42:28,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 18:42:28,636 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:42:29,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:29,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:30,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:30,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:42:30,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:42:30,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:34,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:34,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:34,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:34,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:42:34,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:42:34,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:35,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:35,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:35,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:35,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:42:35,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:42:35,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:37,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:37,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:37,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:38,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:42:38,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:42:38,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:38,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:38,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:38,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:38,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 18:42:38,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 18:42:38,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:39,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:39,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:39,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:39,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:42:39,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:42:39,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:40,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:40,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:40,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:40,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:42:40,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:42:40,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:41,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:41,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:41,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:41,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:42:41,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:42:41,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:44,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:44,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:44,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:44,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:42:44,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:42:44,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:45,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:45,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:45,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:45,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:42:45,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:42:45,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:46,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:46,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:46,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:46,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:42:46,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:42:46,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:48,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:48,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:48,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:48,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:42:48,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:42:48,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:49,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:49,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:49,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:49,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 18:42:49,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 18:42:49,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:50,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:50,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:50,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:50,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:42:50,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:42:50,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:51,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:51,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:51,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:51,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:42:51,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:42:51,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:51,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:51,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:52,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:52,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:42:52,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:42:52,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:55,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:55,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:55,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:55,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:42:55,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:42:55,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:55,924 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:42:55,946 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:42:56,029 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=179.838 +2025-10-01 18:42:56,030 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 18:42:56,030 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:42:57,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:57,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:57,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:57,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:42:57,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:42:57,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:57,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:42:57,516 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:42:57,589 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.641 +2025-10-01 18:42:57,589 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:42:57,589 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:42:57,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:57,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:57,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:58,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:42:58,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:42:58,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:59,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:59,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:59,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:42:59,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:42:59,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:42:59,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:42:59,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:42:59,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:42:59,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:00,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:43:00,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:43:00,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:00,245 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:43:00,267 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:43:00,340 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=196.980 +2025-10-01 18:43:00,340 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:43:00,340 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:43:01,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:01,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:01,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:01,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:43:01,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:43:01,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:01,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:01,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:01,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:01,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:43:01,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:43:01,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:03,653 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:43:03,678 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:43:03,750 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.254 +2025-10-01 18:43:03,750 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:43:03,750 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:43:04,182 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:43:04,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:43:04,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:43:04,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 18:43:04,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 18:43:04,485 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:43:04,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:04,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:04,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:04,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:43:04,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:43:04,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:08,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:08,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:08,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:08,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:43:08,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:43:08,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:08,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:08,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:08,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:08,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:43:08,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:43:08,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:08,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:08,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:08,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:08,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:43:08,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:43:08,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:11,125 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:43:11,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:43:11,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:43:11,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 18:43:11,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 18:43:11,426 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:43:11,780 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:43:11,813 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:43:11,889 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.200 +2025-10-01 18:43:11,890 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:43:11,890 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:43:12,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:12,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:12,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:12,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:43:12,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:43:12,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:15,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:15,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:15,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:15,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:43:15,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:43:15,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:18,240 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:43:18,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:43:18,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:43:18,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-01 18:43:18,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.154s/image) +2025-10-01 18:43:18,551 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:43:22,608 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:43:22,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:43:22,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:43:22,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 18:43:22,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 18:43:22,895 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:43:23,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:23,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:23,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:23,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:43:23,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:43:23,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:26,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:26,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:26,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:26,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:43:26,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:43:26,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:29,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:29,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:29,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:29,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:43:29,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:43:29,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:30,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:30,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:30,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:30,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:43:30,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:43:30,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:32,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:32,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:32,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:32,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:43:32,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:43:32,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:33,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:33,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:33,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:33,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:43:33,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:43:33,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:35,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:35,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:35,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:35,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:43:35,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:43:35,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:38,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:38,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:38,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:38,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:43:38,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:43:38,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:38,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:38,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:38,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:38,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:43:38,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:43:38,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:38,969 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:43:38,995 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:43:39,074 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.292 +2025-10-01 18:43:39,074 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:43:39,074 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:43:40,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:40,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:40,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:40,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:43:40,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:43:40,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:41,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:41,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:41,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:42,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:43:42,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:43:42,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:42,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:42,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:42,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:42,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:43:42,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:43:42,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:42,844 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:43:42,870 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:43:42,943 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=19.014 +2025-10-01 18:43:42,944 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:43:42,944 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:43:45,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:45,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:45,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:45,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:43:45,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:43:45,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:46,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:46,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:46,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:46,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:43:46,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:43:46,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:46,275 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:43:46,299 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:43:46,374 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.506 +2025-10-01 18:43:46,374 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:43:46,374 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:43:47,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:47,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:47,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:47,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:43:47,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:43:47,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:47,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:47,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:47,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:47,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:43:47,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:43:47,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:50,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:50,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:50,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:50,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:43:50,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:43:50,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:50,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:50,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:50,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:50,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:43:50,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:43:50,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:51,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:51,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:51,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:51,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:43:51,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:43:51,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:51,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:51,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:51,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:51,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:43:51,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:43:51,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:52,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:52,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:52,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:52,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:43:52,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:43:52,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:56,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:56,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:56,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:56,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:43:56,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:43:56,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:56,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:56,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:56,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:57,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:43:57,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:43:57,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:43:58,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:43:58,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:43:58,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:43:58,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:43:58,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:43:58,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:00,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:00,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:00,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:00,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:44:00,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:44:00,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:01,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:01,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:01,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:01,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:44:01,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:44:01,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:05,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:05,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:05,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:05,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:44:05,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:44:05,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:06,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:06,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:06,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:06,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:44:06,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:44:06,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:10,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:10,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:10,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:10,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:44:10,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:44:10,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:10,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:10,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:10,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:10,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:44:10,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:44:10,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:14,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:14,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:14,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:14,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:44:14,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:44:14,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:14,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:14,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:14,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:15,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:44:15,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:44:15,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:15,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:15,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:15,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:15,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 18:44:15,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 18:44:15,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:16,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:16,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:16,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:16,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:44:16,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:44:16,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:17,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:17,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:17,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:17,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:44:17,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:44:17,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:17,777 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:44:17,803 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:44:17,884 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.695 +2025-10-01 18:44:17,884 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:44:17,885 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:44:18,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:18,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:18,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:18,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:44:18,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:44:18,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:21,146 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:44:21,168 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:44:21,240 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.241 +2025-10-01 18:44:21,241 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:44:21,241 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:44:21,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:21,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:21,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:22,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:44:22,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:44:22,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:22,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:22,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:22,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:22,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:44:22,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:44:22,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:23,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:23,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:23,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:23,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:44:23,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:44:23,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:23,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:23,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:23,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:23,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:44:23,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:44:23,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:24,433 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:44:24,458 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:44:24,531 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.500 +2025-10-01 18:44:24,531 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:44:24,532 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:44:26,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:26,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:26,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:26,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:44:26,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:44:26,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:27,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:27,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:27,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:27,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:44:27,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:44:27,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:32,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:32,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:32,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:32,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:44:32,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:44:32,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:37,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:37,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:37,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:37,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:44:37,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:44:37,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:38,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:38,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:38,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:38,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:44:38,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:44:38,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:39,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:39,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:39,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:39,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:44:39,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:44:39,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:39,656 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:44:39,684 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:44:39,761 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=183.492 +2025-10-01 18:44:39,762 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:44:39,762 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:44:43,285 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:44:43,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:44:43,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:44:43,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 18:44:43,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 18:44:43,566 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:44:43,942 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:44:43,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:44:44,053 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.285 +2025-10-01 18:44:44,054 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:44:44,054 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:44:45,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:45,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:45,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:45,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:44:45,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:44:45,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:47,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:47,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:47,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:47,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:44:47,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:44:47,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:49,627 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:44:49,659 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:44:49,735 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.919 +2025-10-01 18:44:49,735 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:44:49,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:44:51,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:51,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:51,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:51,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:44:51,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:44:51,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:51,652 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:44:51,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:44:51,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:44:51,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 18:44:51,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-01 18:44:51,921 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:44:54,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:54,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:54,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:54,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:44:54,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:44:54,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:55,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:55,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:55,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:55,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:44:55,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:44:55,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:44:57,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:44:57,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:44:58,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:44:58,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:44:58,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:44:58,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:01,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:01,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:01,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:01,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:45:01,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:45:01,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:03,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:03,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:03,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:04,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:45:04,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:45:04,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:06,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:06,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:06,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:06,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:45:06,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:45:06,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:07,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:07,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:07,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:07,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:45:07,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:45:07,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:08,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:08,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:08,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:08,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:45:08,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:45:08,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:08,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:08,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:08,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:08,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:45:08,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:45:08,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:09,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:09,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:09,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:09,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 18:45:09,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 18:45:09,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:10,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:10,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:10,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:10,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:45:10,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:45:10,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:18,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:18,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:18,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:18,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:45:18,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:45:18,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:20,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:20,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:20,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:20,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:45:20,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:45:20,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:22,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:22,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:22,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:22,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:45:22,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:45:22,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:30,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:30,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:30,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:31,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:45:31,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:45:31,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:32,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:32,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:32,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:32,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:45:32,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:45:32,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:33,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:33,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:33,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:33,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:45:33,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:45:33,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:36,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:36,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:36,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:36,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:45:36,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:45:36,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:37,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:37,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:38,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:38,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:45:38,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:45:38,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:38,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:38,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:38,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:38,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:45:38,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:45:38,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:39,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:39,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:39,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:39,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:45:39,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:45:39,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:40,009 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:45:40,031 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:45:40,119 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.122 +2025-10-01 18:45:40,119 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:45:40,119 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 18:45:43,324 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:45:43,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:45:43,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:45:43,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 18:45:43,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 18:45:43,614 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:45:43,893 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:45:43,941 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:45:44,033 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.215 +2025-10-01 18:45:44,033 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 18:45:44,033 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 18:45:47,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:47,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:47,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:47,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:45:47,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:45:47,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:48,220 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:45:48,251 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:45:48,341 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.237 +2025-10-01 18:45:48,341 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 18:45:48,342 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 18:45:50,161 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:45:50,211 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:45:50,292 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.636 +2025-10-01 18:45:50,292 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:45:50,293 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:45:51,341 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:45:51,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:45:51,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:45:51,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 18:45:51,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 18:45:51,617 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:45:57,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:57,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:57,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:57,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:45:57,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:45:57,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:45:59,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:45:59,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:45:59,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:45:59,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:45:59,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:45:59,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:07,593 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:46:07,617 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(792, 622, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:46:07,701 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.941 +2025-10-01 18:46:07,702 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:46:07,702 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 18:46:07,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:07,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:07,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:07,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:46:07,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:46:07,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:08,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:08,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:08,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:08,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:46:08,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:46:08,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:09,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:09,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:09,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:09,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:46:09,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:46:09,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:10,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:10,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:10,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:10,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:46:10,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:46:10,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:13,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:13,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:13,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:13,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:46:13,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:46:13,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:13,453 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:46:13,477 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:46:13,553 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=196.928 +2025-10-01 18:46:13,553 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:46:13,554 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:46:13,710 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:46:13,729 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(813, 703, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:46:13,800 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.398 +2025-10-01 18:46:13,800 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 18:46:13,800 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 18:46:18,719 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:46:18,763 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:46:18,840 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=194.355 +2025-10-01 18:46:18,841 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:46:18,841 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:46:21,853 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:46:21,891 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:46:21,977 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.890 +2025-10-01 18:46:21,977 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:46:21,977 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:46:22,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:22,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:22,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:22,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:46:22,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:46:22,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:26,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:26,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:27,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:27,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:46:27,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:46:27,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:30,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:30,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:30,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:30,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:46:30,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:46:30,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:33,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:33,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:33,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:33,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:46:33,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:46:33,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:34,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:34,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:34,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:34,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:46:34,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:46:34,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:35,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:35,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:35,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:35,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:46:35,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:46:35,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:36,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:36,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:36,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:36,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:46:36,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:46:36,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:38,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:38,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:38,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:38,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:46:38,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:46:38,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:39,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:39,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:39,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:40,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:46:40,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:46:40,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:40,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:40,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:40,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:40,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:46:40,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:46:40,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:41,158 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:46:41,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:46:41,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:46:41,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 18:46:41,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 18:46:41,445 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:46:43,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:43,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:43,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:43,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:46:43,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:46:43,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:44,025 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:46:44,047 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:46:44,139 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.361 +2025-10-01 18:46:44,140 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 18:46:44,140 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 18:46:45,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:45,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:45,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:45,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:46:45,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:46:45,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:45,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:45,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:45,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:45,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:46:45,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:46:45,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:47,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:47,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:47,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:47,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:46:47,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:46:47,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:48,674 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:46:48,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:46:48,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:46:48,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 18:46:48,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 18:46:48,960 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:46:49,428 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:46:49,463 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:46:49,563 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.880 +2025-10-01 18:46:49,563 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 18:46:49,563 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 18:46:49,868 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:46:49,901 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:46:49,987 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.660 +2025-10-01 18:46:49,987 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:46:49,988 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 18:46:51,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:51,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:51,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:51,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:46:51,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:46:51,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:54,087 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:46:54,124 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:46:54,212 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=194.052 +2025-10-01 18:46:54,212 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:46:54,212 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 18:46:54,761 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:46:54,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:46:54,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:46:55,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 18:46:55,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 18:46:55,052 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:46:55,570 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:46:55,611 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:46:55,704 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.530 +2025-10-01 18:46:55,705 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 18:46:55,705 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 18:46:58,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:46:58,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:46:58,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:46:58,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:46:58,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:46:58,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:46:59,001 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:46:59,037 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:46:59,126 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.405 +2025-10-01 18:46:59,126 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:46:59,126 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 18:47:02,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:02,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:02,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:02,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:47:02,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:47:02,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:02,729 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:47:02,764 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:47:02,853 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.980 +2025-10-01 18:47:02,853 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 18:47:02,853 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 18:47:03,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:03,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:03,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:03,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:47:03,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:47:03,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:04,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:04,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:04,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:04,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:47:04,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:47:04,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:06,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:06,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:06,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:06,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:47:06,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:47:06,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:07,165 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:47:07,189 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(658, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:47:07,268 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.347 +2025-10-01 18:47:07,268 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:47:07,268 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:47:08,417 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:47:08,451 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:47:08,529 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.910 +2025-10-01 18:47:08,530 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:47:08,530 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:47:11,250 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:47:11,278 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:47:11,355 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.803 +2025-10-01 18:47:11,355 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:47:11,355 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:47:12,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:12,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:12,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:12,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:47:12,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:47:12,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:13,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:13,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:13,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:13,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:47:13,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:47:13,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:14,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:14,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:14,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:14,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:47:14,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:47:14,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:18,992 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:47:18,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:47:19,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:47:19,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 18:47:19,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 18:47:19,282 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:47:19,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:19,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:19,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:19,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:47:19,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:47:19,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:20,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:20,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:20,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:20,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:47:20,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:47:20,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:21,176 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:47:21,203 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:47:21,287 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.920 +2025-10-01 18:47:21,287 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 18:47:21,287 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:47:22,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:22,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:22,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:22,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:47:22,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:47:22,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:24,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:24,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:24,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:24,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:47:24,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:47:24,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:24,696 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:47:24,715 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:47:24,783 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.315 +2025-10-01 18:47:24,784 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 18:47:24,784 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 18:47:25,008 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:47:25,033 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:47:25,111 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.025 +2025-10-01 18:47:25,112 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:47:25,112 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:47:26,424 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:47:26,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:47:26,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:47:26,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 18:47:26,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 18:47:26,712 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:47:26,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:26,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:26,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:27,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:47:27,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:47:27,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:28,206 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:47:28,228 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(799, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:47:28,295 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.568 +2025-10-01 18:47:28,295 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 18:47:28,295 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s +2025-10-01 18:47:28,535 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:47:28,554 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:47:28,623 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.692 +2025-10-01 18:47:28,623 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 18:47:28,623 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 18:47:28,703 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:47:28,726 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:47:28,804 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.375 +2025-10-01 18:47:28,804 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:47:28,805 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:47:29,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:29,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:29,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:29,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:47:29,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:47:29,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:31,275 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:47:31,291 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:47:31,359 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.982 +2025-10-01 18:47:31,359 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 18:47:31,359 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 18:47:31,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:31,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:31,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:31,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:47:31,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:47:31,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:33,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:33,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:33,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:33,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:47:33,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:47:33,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:35,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:35,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:35,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:36,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:47:36,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:47:36,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:38,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:38,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:38,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:38,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.204s +2025-10-01 18:47:38,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image) +2025-10-01 18:47:38,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:38,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:38,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:38,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:39,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:47:39,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:47:39,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:40,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:40,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:40,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:41,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:47:41,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:47:41,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:42,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:42,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:42,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:42,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:47:42,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:47:42,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:49,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:49,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:49,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:49,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:47:49,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:47:49,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:52,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:52,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:52,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:53,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:47:53,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:47:53,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:53,713 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:47:53,752 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:47:53,842 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.779 +2025-10-01 18:47:53,842 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 18:47:53,842 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 18:47:54,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:54,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:54,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:54,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:47:54,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:47:54,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:56,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:56,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:56,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:56,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:47:56,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:47:56,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:47:56,983 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:47:56,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:47:57,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:47:57,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 18:47:57,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 18:47:57,267 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:47:57,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:47:57,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:47:57,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:47:57,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:47:57,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:47:57,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:00,180 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:48:00,227 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:48:00,314 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.704 +2025-10-01 18:48:00,315 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 18:48:00,315 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 18:48:01,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:01,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:01,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:01,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:48:01,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:48:01,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:01,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:01,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:01,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:01,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:48:01,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:48:01,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:03,579 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:48:03,612 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:48:03,696 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.583 +2025-10-01 18:48:03,696 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:48:03,697 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:48:04,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:04,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:04,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:04,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:48:04,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:48:04,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:05,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:05,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:05,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:05,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:48:05,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:48:05,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:06,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:06,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:06,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:06,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:48:06,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:48:06,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:07,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:07,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:07,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:07,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:48:07,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:48:07,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:09,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:09,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:09,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:09,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:48:09,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:48:09,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:09,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:09,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:09,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:10,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:48:10,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:48:10,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:10,394 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:48:10,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:48:10,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:48:10,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 18:48:10,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 18:48:10,688 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:48:15,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:15,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:15,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:15,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:48:15,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:48:15,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:15,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:15,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:15,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:16,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:48:16,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:48:16,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:16,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:16,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:16,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:16,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:48:16,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:48:16,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:17,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:17,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:17,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:17,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:48:17,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:48:17,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:17,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:17,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:17,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:18,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:48:18,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:48:18,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:21,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:21,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:21,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:21,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:48:21,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:48:21,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:23,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:23,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:23,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:23,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:48:23,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:48:23,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:23,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:23,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:23,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:24,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:48:24,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:48:24,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:24,623 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:48:24,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:48:24,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:48:24,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-01 18:48:24,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +2025-10-01 18:48:24,946 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:48:25,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:25,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:25,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:25,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:48:25,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:48:25,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:25,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:25,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:25,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:25,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 18:48:25,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 18:48:25,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:27,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:27,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:27,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:27,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:48:27,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:48:27,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:28,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:28,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:28,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:28,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:48:28,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:48:28,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:28,813 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:48:28,839 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:48:28,920 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.426 +2025-10-01 18:48:28,920 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:48:28,920 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:48:29,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:29,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:29,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:29,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:48:29,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:48:29,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:29,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:29,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:29,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:29,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:48:29,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:48:29,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:31,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:31,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:31,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:31,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:48:31,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:48:31,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:32,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:32,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:32,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:32,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:48:32,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:48:32,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:35,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:35,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:35,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:36,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:48:36,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:48:36,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:36,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:36,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:36,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:36,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:48:36,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:48:36,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:36,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:36,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:36,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:36,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:48:36,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:48:36,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:38,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:38,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:39,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:39,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:48:39,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:48:39,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:39,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:39,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:39,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:39,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:48:39,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:48:39,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:41,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:41,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:41,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:41,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:48:41,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:48:41,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:42,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:42,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:42,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:42,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:48:42,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:48:42,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:45,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:45,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:46,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:46,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:48:46,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:48:46,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:46,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:46,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:46,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:46,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:48:46,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:48:46,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:46,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:46,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:46,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:46,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:48:46,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:48:46,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:50,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:50,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:50,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:50,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:48:50,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:48:50,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:50,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:50,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:50,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:51,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:48:51,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:48:51,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:54,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:54,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:54,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:54,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:48:54,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:48:54,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:57,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:57,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:57,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:57,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:48:57,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:48:57,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:48:58,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:48:58,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:48:58,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:48:59,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 18:48:59,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 18:48:59,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:00,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:00,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:00,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:00,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:49:00,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:49:00,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:01,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:01,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:01,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:02,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:49:02,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:49:02,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:02,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:02,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:02,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:02,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:49:02,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:49:02,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:10,345 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:49:10,363 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:49:10,443 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.581 +2025-10-01 18:49:10,444 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:49:10,444 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:49:10,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:10,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:10,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:10,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:49:10,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:49:10,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:15,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:15,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:15,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:15,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:49:15,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:49:15,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:16,414 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:49:16,439 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:49:16,521 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.365 +2025-10-01 18:49:16,521 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:49:16,522 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:49:19,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:19,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:19,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:19,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:49:19,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:49:19,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:19,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:19,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:19,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:19,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-01 18:49:19,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-01 18:49:19,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:19,794 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:49:19,821 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:49:19,900 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.107 +2025-10-01 18:49:19,901 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:49:19,901 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:49:19,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:19,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:19,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:20,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:49:20,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:49:20,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:20,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:20,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:20,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:20,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:49:20,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:49:20,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:20,625 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:49:20,650 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:49:20,725 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.030 +2025-10-01 18:49:20,726 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:49:20,726 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:49:21,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:21,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:21,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:21,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:49:21,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:49:21,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:23,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:23,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:23,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:23,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:49:23,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:49:23,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:24,346 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:49:24,373 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:49:24,452 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.097 +2025-10-01 18:49:24,452 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:49:24,452 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:49:26,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:26,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:26,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:26,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 18:49:26,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 18:49:26,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:27,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:27,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:27,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:27,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:49:27,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:49:27,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:27,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:27,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:27,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:27,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 18:49:27,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 18:49:27,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:28,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:28,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:28,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:28,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:49:28,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:49:28,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:28,437 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:49:28,459 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:49:28,530 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.826 +2025-10-01 18:49:28,531 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:49:28,531 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 18:49:28,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:28,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:28,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:28,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:49:28,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:49:28,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:30,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:30,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:30,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:30,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:49:30,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:49:30,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:30,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:30,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:30,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:30,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:49:30,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:49:30,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:33,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:33,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:33,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:33,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:49:33,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:49:33,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:33,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:33,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:33,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:34,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.209s +2025-10-01 18:49:34,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.209s (avg: 0.209s/image) +2025-10-01 18:49:34,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:34,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:34,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:34,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:34,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:49:34,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:49:34,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:34,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:34,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:34,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:34,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 18:49:34,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 18:49:34,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:38,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:38,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:38,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:38,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:49:38,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:49:38,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:38,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:38,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:38,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:39,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:49:39,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:49:39,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:39,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:39,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:39,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:39,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:49:39,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:49:39,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:39,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:39,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:39,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:39,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:49:39,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:49:39,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:42,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:42,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:42,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:42,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:49:42,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:49:42,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:42,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:42,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:42,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:42,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:49:42,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:49:42,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:45,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:45,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:45,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:45,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:49:45,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:49:45,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:45,620 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:49:45,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:49:45,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:49:45,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 18:49:45,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-01 18:49:45,895 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:49:46,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:46,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:46,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:46,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:49:46,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:49:46,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:46,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:46,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:46,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:46,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:49:46,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:49:46,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:50,215 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:49:50,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:49:50,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:49:50,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 18:49:50,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-01 18:49:50,490 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:49:51,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:51,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:51,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:51,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:49:51,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:49:51,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:52,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:52,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:52,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:52,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:49:52,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:49:52,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:54,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:54,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:54,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:54,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:49:54,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:49:54,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:54,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:54,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:54,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:54,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:49:54,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:49:54,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:56,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:56,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:56,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:56,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:49:56,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:49:56,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:57,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:57,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:57,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:58,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:49:58,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:49:58,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:49:58,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:49:58,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:49:59,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:49:59,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:49:59,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:49:59,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:00,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:00,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:00,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:00,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:50:00,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:50:00,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:01,839 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:50:01,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:50:01,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:50:02,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 18:50:02,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-01 18:50:02,114 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:50:04,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:04,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:04,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:04,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:50:04,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:50:04,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:05,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:05,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:05,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:05,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:50:05,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:50:05,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:07,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:07,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:07,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:07,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:50:07,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:50:07,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:08,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:08,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:08,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:08,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:50:08,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:50:08,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:11,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:11,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:11,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:11,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:50:11,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:50:11,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:21,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:21,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:21,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:21,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:50:21,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:50:21,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:27,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:27,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:27,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:27,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:50:27,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:50:27,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:31,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:50:31,600 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:50:31,686 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.616 +2025-10-01 18:50:31,686 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:50:31,686 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:50:35,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:35,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:35,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:36,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:50:36,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:50:36,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:37,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:37,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:37,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:38,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:50:38,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:50:38,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:40,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:40,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:40,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:40,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:50:40,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:50:40,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:41,403 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:50:41,429 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:50:41,515 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.181 +2025-10-01 18:50:41,515 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:50:41,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:50:43,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:43,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:43,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:43,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:50:43,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:50:43,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:44,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:44,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:44,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:44,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:50:44,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:50:44,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:45,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:45,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:45,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:45,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:50:45,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:50:45,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:45,476 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:50:45,501 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:50:45,579 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.203 +2025-10-01 18:50:45,579 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:50:45,580 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:50:48,824 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:50:48,850 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:50:48,929 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.453 +2025-10-01 18:50:48,929 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:50:48,929 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:50:50,214 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:50:50,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:50:50,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:50:50,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 18:50:50,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 18:50:50,506 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:50:52,464 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:50:52,491 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:50:52,582 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.815 +2025-10-01 18:50:52,582 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 18:50:52,582 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 18:50:54,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:54,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:54,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:54,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:50:54,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:50:54,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:57,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:57,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:57,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:57,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:50:57,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:50:57,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:50:58,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:50:58,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:50:58,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:50:58,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:50:58,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:50:58,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:00,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:00,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:00,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:01,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:51:01,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:51:01,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:02,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:02,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:02,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:02,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:51:02,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:51:02,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:06,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:06,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:06,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:07,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:51:07,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:51:07,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:07,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:07,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:07,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:07,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:51:07,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:51:07,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:07,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:07,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:07,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:07,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:51:07,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:51:07,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:10,088 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:51:10,116 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:51:10,200 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.352 +2025-10-01 18:51:10,200 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 18:51:10,200 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:51:11,682 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:51:11,725 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:51:11,813 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.061 +2025-10-01 18:51:11,814 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 18:51:11,814 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 18:51:12,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:12,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:12,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:12,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:51:12,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:51:12,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:12,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:12,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:12,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:12,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:51:12,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:51:12,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:13,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:13,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:13,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:13,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:51:13,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:51:13,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:14,077 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:51:14,107 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:51:14,187 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.053 +2025-10-01 18:51:14,188 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:51:14,188 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:51:14,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:14,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:14,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:14,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 18:51:14,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 18:51:14,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:15,629 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:51:15,670 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(992, 992, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:51:15,757 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.515 +2025-10-01 18:51:15,757 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:51:15,757 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 18:51:16,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:16,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:16,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:16,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:51:16,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:51:16,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:17,983 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:51:18,013 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:51:18,093 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.561 +2025-10-01 18:51:18,093 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:51:18,094 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:51:18,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:18,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:18,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:18,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:51:18,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:51:18,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:18,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:18,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:18,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:19,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:51:19,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:51:19,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:19,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:19,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:19,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:19,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:51:19,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:51:19,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:19,977 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:51:20,028 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:51:20,119 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.788 +2025-10-01 18:51:20,119 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 18:51:20,119 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 18:51:20,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:20,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:20,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:20,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:51:20,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:51:20,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:23,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:23,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:23,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:23,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:51:23,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:51:23,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:24,402 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:51:24,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:51:24,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:51:24,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 18:51:24,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 18:51:24,685 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:51:25,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:25,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:25,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:25,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:51:25,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:51:25,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:25,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:25,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:25,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:25,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:51:25,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:51:25,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:27,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:27,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:27,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:27,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:51:27,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:51:27,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:27,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:27,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:27,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:27,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:51:27,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:51:27,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:30,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:30,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:30,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:30,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:51:30,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:51:30,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:31,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:31,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:31,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:31,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:51:31,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:51:31,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:31,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:31,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:31,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:32,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 18:51:32,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 18:51:32,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:32,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:32,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:32,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:32,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:51:32,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:51:32,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:34,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:34,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:34,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:34,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:51:34,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:51:34,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:35,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:35,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:35,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:35,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:51:35,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:51:35,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:36,526 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:51:36,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:51:36,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:51:36,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 18:51:36,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 18:51:36,824 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:51:37,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:37,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:37,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:37,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:51:37,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:51:37,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:38,105 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:51:38,152 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:51:38,238 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.298 +2025-10-01 18:51:38,238 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:51:38,238 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:51:38,425 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:51:38,446 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:51:38,513 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.707 +2025-10-01 18:51:38,513 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 18:51:38,513 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s +2025-10-01 18:51:41,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:41,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:41,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:41,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:51:41,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:51:41,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:41,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:41,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:41,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:41,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:51:41,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:51:41,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:42,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:42,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:42,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:42,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:51:42,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:51:42,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:42,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:42,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:42,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:42,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:51:42,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:51:42,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:43,737 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:51:43,770 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:51:43,844 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.436 +2025-10-01 18:51:43,844 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:51:43,844 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:51:44,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:44,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:44,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:44,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:51:44,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:51:44,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:45,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:45,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:45,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:45,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:51:45,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:51:45,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:46,169 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:51:46,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:51:46,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:51:46,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 18:51:46,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 18:51:46,453 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:51:47,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:47,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:47,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:47,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:51:47,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:51:47,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:49,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:49,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:49,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:49,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:51:49,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:51:49,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:49,919 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:51:49,951 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:51:50,027 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.437 +2025-10-01 18:51:50,028 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:51:50,028 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:51:50,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:50,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:50,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:50,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:51:50,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:51:50,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:52,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:52,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:52,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:52,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 18:51:52,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 18:51:52,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:52,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:52,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:52,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:52,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:51:52,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:51:52,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:53,433 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:51:53,460 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:51:53,539 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.760 +2025-10-01 18:51:53,540 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:51:53,540 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:51:54,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:54,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:54,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:54,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:51:54,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:51:54,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:55,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:55,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:55,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:55,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:51:55,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:51:55,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:55,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:55,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:55,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:55,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 18:51:55,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 18:51:55,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:51:56,995 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:51:57,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:51:57,098 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.760 +2025-10-01 18:51:57,098 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:51:57,099 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:51:59,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:51:59,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:51:59,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:51:59,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:51:59,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:51:59,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:01,404 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:52:01,426 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:52:01,502 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.267 +2025-10-01 18:52:01,503 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:52:01,503 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:52:03,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:03,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:03,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:03,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:52:03,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:52:03,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:05,974 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:52:05,994 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(737, 601, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:52:06,068 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.037 +2025-10-01 18:52:06,069 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:52:06,069 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:52:06,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:06,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:06,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:06,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:52:06,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:52:06,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:09,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:09,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:09,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:09,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:52:09,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:52:09,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:09,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:09,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:09,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:09,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:52:09,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:52:09,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:11,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:11,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:11,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:11,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:52:11,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:52:11,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:11,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:11,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:11,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:12,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:52:12,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:52:12,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:12,292 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:52:12,318 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1171, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:52:12,395 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.950 +2025-10-01 18:52:12,396 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:52:12,396 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:52:13,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:13,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:13,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:13,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:52:13,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:52:13,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:14,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:14,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:14,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:15,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:52:15,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:52:15,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:17,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:17,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:17,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:17,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:52:17,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:52:17,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:18,000 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 18:52:18,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 18:52:18,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 18:52:18,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.423s +2025-10-01 18:52:18,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.423s (avg: 0.141s/image) +2025-10-01 18:52:18,425 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 18:52:19,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:19,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:19,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:20,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:52:20,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:52:20,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:21,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:21,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:21,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:21,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:52:21,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:52:21,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:21,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:21,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:21,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:21,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:52:21,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:52:21,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:22,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:22,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:22,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:22,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:52:22,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:52:22,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:23,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:23,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:23,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:23,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:52:23,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:52:23,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:24,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:24,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:24,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:24,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:52:24,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:52:24,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:25,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:25,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:25,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:25,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:52:25,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:52:25,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:26,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:26,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:26,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:26,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:52:26,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:52:26,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:27,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:27,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:27,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:27,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:52:27,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:52:27,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:28,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:28,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:28,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:28,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:52:28,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:52:28,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:29,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:29,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:29,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:29,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:52:29,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:52:29,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:29,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:29,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:29,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:30,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:52:30,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:52:30,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:30,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:30,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:30,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:30,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:52:30,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:52:30,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:31,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:31,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:31,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:31,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:52:31,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:52:31,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:31,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:31,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:32,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:32,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:52:32,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:52:32,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:32,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:32,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:32,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:32,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:52:32,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:52:32,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:33,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:33,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:33,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:33,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:52:33,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:52:33,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:34,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:34,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:34,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:34,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:52:34,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:52:34,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:38,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:38,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:38,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:39,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:52:39,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:52:39,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:39,225 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:52:39,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:52:39,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:52:39,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 18:52:39,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 18:52:39,502 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:52:39,823 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:52:39,844 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(725, 725, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:52:39,915 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.182 +2025-10-01 18:52:39,916 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:52:39,916 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 18:52:41,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:41,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:41,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:41,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:52:41,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:52:41,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:44,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:44,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:44,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:44,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:52:44,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:52:44,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:46,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:46,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:46,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:46,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:52:46,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:52:46,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:46,787 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:52:46,817 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:52:46,908 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.094 +2025-10-01 18:52:46,908 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 18:52:46,908 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 18:52:47,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:47,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:47,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:47,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:52:47,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:52:47,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:48,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:48,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:48,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:48,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:52:48,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:52:48,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:51,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:51,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:51,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:51,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:52:51,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:52:51,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:52,075 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:52:52,099 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:52:52,185 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.716 +2025-10-01 18:52:52,186 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 18:52:52,186 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:52:53,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:53,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:53,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:53,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:52:53,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:52:53,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:53,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:53,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:53,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:54,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:52:54,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:52:54,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:57,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:57,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:57,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:57,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:52:57,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:52:57,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:57,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:57,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:57,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:57,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:52:57,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:52:57,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:52:58,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:52:58,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:52:58,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:52:59,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:52:59,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:52:59,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:00,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:00,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:00,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:00,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:53:00,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:53:00,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:03,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:03,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:03,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:03,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:53:03,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:53:03,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:04,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:04,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:05,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:05,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:53:05,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:53:05,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:05,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:05,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:05,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:05,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:53:05,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:53:05,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:07,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:07,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:07,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:07,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:53:07,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:53:07,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:07,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:07,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:07,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:07,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:53:07,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:53:07,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:08,253 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:53:08,285 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:53:08,368 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.070 +2025-10-01 18:53:08,368 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:53:08,368 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:53:11,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:11,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:11,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:11,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:53:11,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:53:11,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:11,768 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:53:11,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:53:11,864 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.031 +2025-10-01 18:53:11,865 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:53:11,865 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:53:11,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:11,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:11,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:12,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:53:12,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:53:12,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:12,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:12,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:12,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:13,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:53:13,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:53:13,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:15,364 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:53:15,389 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:53:15,464 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.049 +2025-10-01 18:53:15,464 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:53:15,464 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:53:16,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:16,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:16,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:16,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:53:16,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:53:16,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:17,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:17,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:17,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:17,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:53:17,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:53:17,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:18,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:18,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:18,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:19,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:53:19,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:53:19,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:19,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:19,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:19,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:19,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:53:19,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:53:19,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:21,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:21,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:21,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:21,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 18:53:21,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 18:53:21,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:21,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:21,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:21,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:21,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:53:21,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:53:21,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:22,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:22,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:22,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:22,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:53:22,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:53:22,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:23,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:23,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:24,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:24,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:53:24,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:53:24,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:25,807 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:53:25,830 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:53:25,906 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.886 +2025-10-01 18:53:25,906 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:53:25,906 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:53:27,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:27,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:27,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:27,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:53:27,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:53:27,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:27,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:27,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:27,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:27,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:53:27,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:53:27,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:28,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:28,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:28,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:28,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:53:28,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:53:28,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:29,085 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:53:29,109 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:53:29,184 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.329 +2025-10-01 18:53:29,184 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:53:29,185 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:53:29,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:29,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:29,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:29,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-01 18:53:29,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-01 18:53:29,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:32,465 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:53:32,480 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:53:32,556 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.055 +2025-10-01 18:53:32,556 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:53:32,556 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:53:32,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:32,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:32,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:32,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:53:32,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:53:32,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:35,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:35,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:35,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:36,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:53:36,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:53:36,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:37,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:37,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:37,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:37,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:53:37,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:53:37,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:38,315 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:53:38,348 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:53:38,431 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.486 +2025-10-01 18:53:38,432 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:53:38,432 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:53:39,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:39,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:39,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:39,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:53:39,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:53:39,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:43,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:43,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:43,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:43,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:53:43,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:53:43,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:44,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:44,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:44,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:44,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:53:44,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:53:44,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:44,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:44,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:45,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:45,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:53:45,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:53:45,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:46,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:46,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:46,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:47,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:53:47,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:53:47,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:47,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:47,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:47,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:47,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:53:47,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:53:47,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:49,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:49,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:49,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:49,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:53:49,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:53:49,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:51,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:51,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:51,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:51,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:53:51,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:53:51,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:52,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:52,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:52,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:52,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:53:52,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:53:52,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:54,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:54,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:54,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:54,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:53:54,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:53:54,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:57,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:57,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:57,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:57,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:53:57,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:53:57,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:57,801 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:53:57,828 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:53:57,910 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.850 +2025-10-01 18:53:57,910 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:53:57,910 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:53:58,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:58,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:58,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:58,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:53:58,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:53:58,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:53:58,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:53:58,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:53:58,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:53:58,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:53:58,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:53:58,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:00,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:00,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:00,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:00,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:54:00,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:54:00,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:01,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:01,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:01,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:01,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:54:01,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:54:01,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:01,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:01,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:01,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:01,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:54:01,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:54:01,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:02,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:02,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:02,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:02,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:54:02,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:54:02,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:03,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:03,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:03,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:03,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:54:03,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:54:03,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:03,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:03,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:03,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:04,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:54:04,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:54:04,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:06,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:06,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:06,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:06,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:54:06,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:54:06,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:07,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:07,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:07,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:07,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:54:07,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:54:07,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:08,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:08,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:08,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:08,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:54:08,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:54:08,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:08,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:08,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:08,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:08,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:54:08,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:54:08,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:09,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:09,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:09,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:09,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:54:09,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:54:09,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:10,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:10,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:10,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:11,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:54:11,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:54:11,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:12,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:12,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:12,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:13,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:54:13,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:54:13,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:14,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:14,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:14,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:14,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:54:14,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:54:14,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:14,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:14,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:14,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:14,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:54:14,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:54:14,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:16,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:16,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:16,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:16,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:54:16,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:54:16,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:17,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:17,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:17,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:17,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:54:17,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:54:17,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:18,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:18,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:18,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:18,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:54:18,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:54:18,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:19,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:19,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:19,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:19,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:54:19,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:54:19,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:19,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:19,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:19,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:20,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:54:20,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:54:20,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:20,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:20,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:20,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:20,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:54:20,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:54:20,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:21,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:21,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:21,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:21,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:54:21,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:54:21,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:23,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:23,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:23,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:24,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:54:24,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:54:24,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:24,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:24,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:24,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:24,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:54:24,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:54:24,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:28,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:28,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:28,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:28,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:54:28,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:54:28,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:28,574 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:54:28,608 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:54:28,694 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.232 +2025-10-01 18:54:28,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 18:54:28,695 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 18:54:29,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:29,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:29,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:29,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:54:29,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:54:29,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:29,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:29,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:29,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:30,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:54:30,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:54:30,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:31,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:31,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:31,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:31,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:54:31,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:54:31,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:31,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:31,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:32,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:32,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:54:32,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:54:32,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:32,482 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:54:32,510 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:54:32,590 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.446 +2025-10-01 18:54:32,590 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:54:32,590 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:54:32,900 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:54:32,922 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:54:32,997 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.748 +2025-10-01 18:54:32,997 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 18:54:32,998 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:54:34,617 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:54:34,636 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:54:34,710 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.154 +2025-10-01 18:54:34,711 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:54:34,711 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 18:54:36,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:36,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:36,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:36,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:54:36,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:54:36,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:37,335 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:54:37,357 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:54:37,437 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.735 +2025-10-01 18:54:37,438 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:54:37,438 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:54:37,659 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:54:37,695 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:54:37,772 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.229 +2025-10-01 18:54:37,773 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:54:37,773 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:54:38,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:38,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:38,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:38,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:54:38,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:54:38,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:40,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:40,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:40,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:40,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:54:40,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:54:40,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:41,863 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:54:41,886 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:54:41,963 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.178 +2025-10-01 18:54:41,963 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:54:41,964 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:54:42,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:42,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:42,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:42,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:54:42,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:54:42,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:43,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:43,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:43,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:43,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:54:43,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:54:43,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:45,477 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:54:45,497 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(781, 781, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:54:45,570 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.607 +2025-10-01 18:54:45,571 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:54:45,571 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:54:46,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:46,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:46,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:46,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:54:46,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:54:46,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:46,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:46,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:46,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:47,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:54:47,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:54:47,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:47,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:47,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:47,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:47,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:54:47,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:54:47,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:48,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:48,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:48,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:48,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:54:48,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:54:48,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:48,696 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:54:48,716 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:54:48,792 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.548 +2025-10-01 18:54:48,792 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:54:48,792 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:54:49,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:49,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:49,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:49,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:54:49,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:54:49,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:50,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:50,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:50,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:50,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:54:50,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:54:50,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:51,944 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:54:51,966 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:54:52,042 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.958 +2025-10-01 18:54:52,043 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:54:52,043 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:54:52,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:52,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:52,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:52,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 18:54:52,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 18:54:52,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:52,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:52,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:52,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:53,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:54:53,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:54:53,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:53,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:53,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:53,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:53,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:54:53,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:54:53,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:54,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:54,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:54,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:54,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:54:54,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:54:54,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:55,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:55,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:55,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:55,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:54:55,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:54:55,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:56,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:56,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:56,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:56,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:54:56,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:54:56,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:56,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:56,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:56,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:56,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:54:56,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:54:56,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:57,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:57,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:57,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:58,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:54:58,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:54:58,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:58,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:58,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:58,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:58,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:54:58,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:54:58,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:59,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:59,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:59,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:59,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:54:59,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:54:59,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:59,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:59,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:54:59,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:54:59,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:54:59,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:54:59,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:54:59,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:54:59,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:00,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:00,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:55:00,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:55:00,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:00,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:00,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:00,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:00,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:55:00,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:55:00,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:02,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:02,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:02,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:02,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.217s +2025-10-01 18:55:02,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.217s (avg: 0.217s/image) +2025-10-01 18:55:02,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:02,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:02,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:02,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:03,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:55:03,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:55:03,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:03,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:03,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:03,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:03,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:55:03,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:55:03,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:03,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:03,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:03,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:03,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:55:03,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:55:03,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:04,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:04,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:04,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:04,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:55:04,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:55:04,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:05,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:05,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:05,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:05,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:55:05,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:55:05,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:07,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:07,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:07,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:07,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:55:07,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:55:07,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:07,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:07,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:07,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:08,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:55:08,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:55:08,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:09,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:09,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:09,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:09,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:55:09,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:55:09,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:09,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:09,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:09,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:09,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:55:09,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:55:09,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:10,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:10,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:10,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:10,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:55:10,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:55:10,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:11,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:11,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:11,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:11,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:55:11,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:55:11,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:12,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:12,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:12,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:12,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:55:12,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:55:12,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:13,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:13,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:13,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:13,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:55:13,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:55:13,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:15,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:15,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:15,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:15,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:55:15,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:55:15,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:16,165 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:55:16,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:55:16,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:55:16,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 18:55:16,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 18:55:16,449 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:55:16,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:16,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:17,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:17,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:55:17,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:55:17,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:19,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:19,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:19,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:19,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:55:19,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:55:19,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:20,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:20,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:20,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:20,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:55:20,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:55:20,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:20,872 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:55:20,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:55:20,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:55:21,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 18:55:21,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 18:55:21,149 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:55:23,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:23,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:23,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:23,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:55:23,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:55:23,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:23,877 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:55:23,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:55:23,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:55:24,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 18:55:24,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 18:55:24,177 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:55:25,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:25,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:25,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:25,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:55:25,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:55:25,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:27,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:27,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:27,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:27,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:55:27,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:55:27,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:27,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:27,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:27,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:27,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 18:55:27,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 18:55:27,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:27,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:27,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:27,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:28,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 18:55:28,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 18:55:28,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:29,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:29,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:29,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:29,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:55:29,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:55:29,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:29,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:29,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:29,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:29,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:55:29,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:55:29,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:30,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:30,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:30,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:30,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:55:30,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:55:30,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:32,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:32,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:32,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:32,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:55:32,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:55:32,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:32,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:32,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:32,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:33,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:55:33,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:55:33,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:33,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:33,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:33,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:33,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:55:33,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:55:33,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:34,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:34,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:34,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:34,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:55:34,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:55:34,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:34,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:34,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:35,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:35,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:55:35,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:55:35,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:35,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:35,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:36,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:36,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:55:36,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:55:36,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:37,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:37,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:37,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:38,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:55:38,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:55:38,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:38,727 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:55:38,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:55:38,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:55:39,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 18:55:39,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 18:55:39,015 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:55:39,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:39,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:39,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:39,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:55:39,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:55:39,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:41,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:41,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:41,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:41,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:55:41,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:55:41,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:41,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:41,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:41,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:41,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:55:41,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:55:41,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:42,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:42,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:42,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:42,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:55:42,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:55:42,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:42,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:42,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:42,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:42,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 18:55:42,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 18:55:42,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:43,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:43,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:43,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:44,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:55:44,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:55:44,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:44,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:44,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:44,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:44,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 18:55:44,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 18:55:44,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:45,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:45,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:45,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:45,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:55:45,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:55:45,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:45,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:45,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:45,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:45,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 18:55:45,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 18:55:45,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:46,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:46,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:46,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:46,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:55:46,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:55:46,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:49,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:49,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:49,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:49,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:55:49,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:55:49,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:50,497 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:55:50,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:55:50,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:55:50,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-01 18:55:50,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +2025-10-01 18:55:50,813 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:55:56,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:56,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:56,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:56,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 18:55:56,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 18:55:56,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:55:57,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:55:57,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:55:57,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:55:57,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:55:57,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:55:57,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:01,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:01,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:01,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:01,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:56:01,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:56:01,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:08,553 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:56:08,580 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:56:08,665 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.794 +2025-10-01 18:56:08,665 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 18:56:08,666 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 18:56:10,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:10,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:10,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:10,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:56:10,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:56:10,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:16,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:16,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:16,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:17,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:56:17,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:56:17,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:17,469 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:56:17,498 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:56:17,578 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.261 +2025-10-01 18:56:17,578 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 18:56:17,578 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 18:56:20,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:20,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:20,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:20,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:56:20,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:56:20,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:21,012 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:56:21,041 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:56:21,119 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.644 +2025-10-01 18:56:21,119 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 18:56:21,119 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 18:56:22,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:22,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:22,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:22,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:56:22,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:56:22,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:24,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:24,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:24,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:24,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:56:24,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:56:24,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:24,288 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:56:24,306 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:56:24,385 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.764 +2025-10-01 18:56:24,385 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:56:24,386 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:56:26,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:26,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:26,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:26,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:56:26,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:56:26,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:29,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:29,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:29,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:29,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:56:29,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:56:29,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:31,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:31,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:31,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:32,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:56:32,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:56:32,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:34,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:34,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:34,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:34,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 18:56:34,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 18:56:34,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:35,336 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:56:35,358 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:56:35,437 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.693 +2025-10-01 18:56:35,438 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:56:35,438 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:56:35,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:35,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:35,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:35,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:56:35,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:56:35,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:37,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:37,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:37,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:37,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:56:37,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:56:37,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:38,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:38,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:38,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:38,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:56:38,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:56:38,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:41,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:41,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:41,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:41,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:56:41,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:56:41,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:44,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:44,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:44,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:44,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:56:44,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:56:44,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:47,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:47,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:47,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:48,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:56:48,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:56:48,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:49,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:49,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:49,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:49,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:56:49,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:56:49,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:50,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:50,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:50,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:50,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:56:50,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:56:50,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:52,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:52,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:52,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:53,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:56:53,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:56:53,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:53,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:53,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:53,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:53,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:56:53,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:56:53,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:54,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:54,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:55,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:55,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:56:55,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:56:55,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:58,351 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:56:58,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:56:58,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:56:58,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 18:56:58,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 18:56:58,635 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:56:58,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:58,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:58,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:58,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 18:56:58,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 18:56:59,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:56:59,040 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:56:59,066 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:56:59,139 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.041 +2025-10-01 18:56:59,139 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:56:59,139 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 18:56:59,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:56:59,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:56:59,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:56:59,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:56:59,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:56:59,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:01,761 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:57:01,801 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:57:01,889 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.351 +2025-10-01 18:57:01,890 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 18:57:01,890 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 18:57:02,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:02,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:02,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:02,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:57:02,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:57:02,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:03,022 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:57:03,053 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:57:03,137 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.328 +2025-10-01 18:57:03,137 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:57:03,137 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 18:57:03,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:03,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:03,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:03,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:57:03,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:57:03,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:03,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:03,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:03,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:04,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:57:04,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:57:04,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:05,964 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:57:05,989 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:57:06,065 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.192 +2025-10-01 18:57:06,066 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:57:06,066 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:57:06,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:06,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:06,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:06,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:57:06,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:57:06,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:06,622 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:57:06,644 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:57:06,712 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=216.235 +2025-10-01 18:57:06,712 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 18:57:06,712 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 18:57:08,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:08,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:08,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:08,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:57:08,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:57:08,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:10,167 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:57:10,198 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:57:10,277 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.076 +2025-10-01 18:57:10,277 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:57:10,277 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:57:11,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:11,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:11,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:11,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:57:11,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:57:11,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:13,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:13,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:13,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:13,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:57:13,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:57:13,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:14,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:14,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:14,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:14,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:57:14,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:57:14,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:14,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:14,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:14,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:14,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:57:14,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:57:14,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:16,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:16,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:16,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:16,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:57:16,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:57:16,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:18,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:18,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:18,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:18,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:57:18,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:57:18,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:19,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:19,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:19,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:19,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:57:19,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:57:19,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:22,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:22,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:22,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:22,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 18:57:22,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 18:57:22,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:23,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:23,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:23,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:23,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 18:57:23,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 18:57:23,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:23,533 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:57:23,555 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:57:23,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.069 +2025-10-01 18:57:23,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:57:23,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:57:23,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:23,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:23,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:24,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:57:24,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:57:24,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:26,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:26,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:26,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:27,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:57:27,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:57:27,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:27,406 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:57:27,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:57:27,501 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.283 +2025-10-01 18:57:27,501 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:57:27,502 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:57:27,978 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:57:28,015 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:57:28,092 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.176 +2025-10-01 18:57:28,092 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:57:28,092 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:57:28,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:28,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:28,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:28,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:57:28,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:57:28,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:29,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:29,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:29,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:29,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 18:57:29,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 18:57:29,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:30,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:30,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:30,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:30,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:57:30,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:57:30,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:31,312 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:57:31,333 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:57:31,410 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=205.484 +2025-10-01 18:57:31,410 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:57:31,410 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:57:33,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:33,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:33,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:33,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:57:33,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:57:33,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:34,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:34,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:34,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:34,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 18:57:34,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 18:57:34,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:36,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:36,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:36,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:36,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:57:36,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:57:36,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:36,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:36,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:37,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:37,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 18:57:37,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 18:57:37,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:38,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:38,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:38,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:38,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:57:38,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:57:38,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:39,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:39,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:39,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:39,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 18:57:39,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 18:57:39,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:40,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:40,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:40,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:40,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:57:40,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:57:40,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:41,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:41,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:41,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:41,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:57:41,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:57:41,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:43,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:43,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:43,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:43,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:57:43,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:57:43,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:44,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:44,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:44,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:44,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:57:44,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:57:44,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:44,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:44,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:44,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:44,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:57:44,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:57:44,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:46,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:46,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:46,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:47,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:57:47,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:57:47,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:47,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:47,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:47,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:47,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:57:47,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:57:47,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:47,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:47,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:47,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:47,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:57:47,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:57:47,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:48,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:48,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:48,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:48,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 18:57:48,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 18:57:48,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:48,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:48,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:48,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:48,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:57:48,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:57:48,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:51,925 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:57:51,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:57:51,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:57:52,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 18:57:52,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +2025-10-01 18:57:52,189 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:57:52,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:52,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:52,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:52,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:57:52,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:57:52,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:54,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:54,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:54,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:54,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:57:54,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:57:54,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:56,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:56,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:56,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:56,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:57:56,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:57:56,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:57:57,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:57:57,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:57:57,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:57:57,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:57:57,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:57:57,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:00,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:00,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:00,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:00,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:58:00,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:58:00,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:00,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:00,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:00,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:00,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:58:00,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:58:00,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:02,786 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:58:02,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(858, 763, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:58:02,883 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.235 +2025-10-01 18:58:02,883 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:58:02,883 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:58:03,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:03,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:03,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:03,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:58:03,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:58:03,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:05,428 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:58:05,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:58:05,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:58:05,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 18:58:05,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 18:58:05,724 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:58:07,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:07,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:07,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:07,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:58:07,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:58:07,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:07,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:07,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:07,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:08,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:58:08,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:58:08,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:08,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:08,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:08,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:08,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 18:58:08,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 18:58:08,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:09,086 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:58:09,101 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 639, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:58:09,174 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.844 +2025-10-01 18:58:09,174 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 18:58:09,175 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:58:09,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:09,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:09,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:09,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 18:58:09,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 18:58:09,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:11,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:11,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:11,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:11,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 18:58:11,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 18:58:11,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:11,553 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:58:11,576 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:58:11,652 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.547 +2025-10-01 18:58:11,653 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 18:58:11,653 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 18:58:11,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:11,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:11,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:12,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 18:58:12,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 18:58:12,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:12,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:12,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:12,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:12,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:58:12,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:58:12,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:14,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:14,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:14,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:14,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:58:14,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:58:14,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:15,003 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:58:15,026 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:58:15,114 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.266 +2025-10-01 18:58:15,115 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 18:58:15,115 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 18:58:15,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:15,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:15,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:15,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 18:58:15,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 18:58:15,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:16,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:16,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:16,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:17,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:58:17,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:58:17,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:18,432 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:58:18,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:58:18,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:58:18,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 18:58:18,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 18:58:18,742 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:58:18,801 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:58:18,823 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:58:18,902 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.810 +2025-10-01 18:58:18,902 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:58:18,902 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 18:58:19,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:19,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:19,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:19,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 18:58:19,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 18:58:19,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:21,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:21,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:21,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:21,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:58:21,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:58:21,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:21,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:21,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:21,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:22,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:58:22,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:58:22,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:24,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:24,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:24,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:25,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:58:25,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:58:25,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:28,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:28,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:28,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:28,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:58:28,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:58:28,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:29,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:29,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:29,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:29,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:58:29,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:58:29,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:29,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:29,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:29,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:30,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 18:58:30,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 18:58:30,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:31,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:31,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:31,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:31,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:58:31,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:58:31,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:32,470 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:58:32,505 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:58:32,593 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.047 +2025-10-01 18:58:32,593 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 18:58:32,593 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 18:58:32,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:32,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:32,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:33,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 18:58:33,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 18:58:33,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:33,088 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:58:33,100 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:58:33,172 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.705 +2025-10-01 18:58:33,172 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 18:58:33,172 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 18:58:33,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:33,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:33,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:33,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:58:33,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:58:33,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:33,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:33,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:33,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:34,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:58:34,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:58:34,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:37,638 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:58:37,662 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:58:37,744 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.178 +2025-10-01 18:58:37,744 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 18:58:37,744 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 18:58:38,496 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:58:38,541 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:58:38,628 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.256 +2025-10-01 18:58:38,628 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 18:58:38,628 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 18:58:38,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:38,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:39,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:39,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 18:58:39,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 18:58:39,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:39,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:39,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:39,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:39,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 18:58:39,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 18:58:39,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:41,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:41,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:41,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:41,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:58:41,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:58:41,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:43,845 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:58:43,891 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:58:43,984 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.942 +2025-10-01 18:58:43,984 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 18:58:43,984 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 18:58:44,431 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:58:44,454 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:58:44,533 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.685 +2025-10-01 18:58:44,533 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 18:58:44,534 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 18:58:48,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:48,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:48,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:48,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 18:58:48,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 18:58:48,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:51,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:51,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:51,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:51,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 18:58:51,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 18:58:51,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:58:56,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:58:56,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:58:56,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:58:56,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:58:56,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:58:56,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:06,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:06,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:06,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:06,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:59:06,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:59:06,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:11,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:11,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:11,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:11,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:59:11,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:59:11,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:15,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:15,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:15,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:15,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:59:15,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:59:15,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:16,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:16,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:16,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:16,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 18:59:16,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 18:59:16,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:22,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:22,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:22,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:22,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:59:22,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:59:22,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:23,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:23,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:23,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:23,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:59:23,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:59:23,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:23,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:23,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:23,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:23,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 18:59:23,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 18:59:23,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:27,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:27,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:27,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:27,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 18:59:27,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 18:59:27,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:28,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:28,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:28,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:29,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 18:59:29,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 18:59:29,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:29,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:29,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:29,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:29,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 18:59:29,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 18:59:29,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:31,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:31,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:31,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:31,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 18:59:31,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 18:59:31,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:34,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:34,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:34,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:35,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 18:59:35,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 18:59:35,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:35,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:35,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:35,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:36,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 18:59:36,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 18:59:36,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:36,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:36,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:36,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:36,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 18:59:36,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 18:59:36,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:36,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:36,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:36,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:36,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 18:59:36,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 18:59:36,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:38,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:38,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:38,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:38,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 18:59:38,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 18:59:38,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:39,575 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:59:39,605 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:59:39,688 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.603 +2025-10-01 18:59:39,688 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 18:59:39,688 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 18:59:40,350 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:59:40,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:59:40,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:59:40,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 18:59:40,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 18:59:40,630 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:59:43,044 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:59:43,071 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:59:43,148 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.425 +2025-10-01 18:59:43,149 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 18:59:43,149 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 18:59:43,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:43,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:43,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:44,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 18:59:44,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 18:59:44,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:44,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:44,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:44,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:44,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 18:59:44,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 18:59:44,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:46,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:46,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:46,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:46,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 18:59:46,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 18:59:46,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:46,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:59:46,839 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:59:46,913 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.745 +2025-10-01 18:59:46,913 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 18:59:46,913 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 18:59:50,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:50,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:50,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:50,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 18:59:50,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 18:59:50,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:51,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:51,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:51,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:51,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 18:59:51,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 18:59:51,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:52,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:52,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:52,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:52,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 18:59:52,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 18:59:52,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:56,331 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 18:59:56,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 18:59:56,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 18:59:56,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 18:59:56,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 18:59:56,624 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 18:59:57,120 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 18:59:57,154 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 18:59:57,245 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.495 +2025-10-01 18:59:57,245 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 18:59:57,246 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 18:59:59,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:59,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:59,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:59,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 18:59:59,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 18:59:59,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:59,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 18:59:59,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 18:59:59,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 18:59:59,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 18:59:59,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 18:59:59,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 18:59:59,978 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:00:00,005 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:00:00,077 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.979 +2025-10-01 19:00:00,077 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 19:00:00,077 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 19:00:02,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:02,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:02,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:02,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 19:00:02,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 19:00:02,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:04,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:04,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:04,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:04,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:00:04,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:00:04,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:05,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:05,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:05,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:06,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:00:06,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:00:06,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:06,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:06,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:06,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:06,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:00:06,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:00:06,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:06,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:06,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:06,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:07,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:00:07,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:00:07,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:08,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:08,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:09,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:09,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:00:09,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:00:09,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:09,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:09,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:09,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:09,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:00:09,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:00:09,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:10,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:10,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:10,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:10,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:00:10,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:00:10,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:11,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:11,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:11,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:11,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:00:11,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:00:11,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:14,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:14,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:14,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:14,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:00:14,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:00:14,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:14,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:14,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:14,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:15,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 19:00:15,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 19:00:15,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:15,496 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:00:15,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:00:15,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:00:15,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 19:00:15,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 19:00:15,783 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:00:18,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:18,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:18,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:18,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:00:18,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:00:18,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:20,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:20,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:20,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:20,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 19:00:20,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 19:00:20,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:21,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:21,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:21,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:21,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:00:21,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:00:21,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:21,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:21,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:21,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:21,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:00:21,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:00:21,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:23,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:23,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:23,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:23,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:00:23,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:00:23,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:23,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:23,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:23,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:24,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:00:24,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:00:24,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:25,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:25,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:25,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:25,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:00:25,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:00:25,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:25,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:25,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:25,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:25,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:00:25,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:00:25,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:27,617 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 19:00:27,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 19:00:27,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 19:00:28,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.425s +2025-10-01 19:00:28,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.425s (avg: 0.142s/image) +2025-10-01 19:00:28,043 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 19:00:32,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:32,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:32,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:32,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:00:32,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:00:32,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:32,841 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:00:32,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:00:32,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:00:33,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 19:00:33,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 19:00:33,109 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:00:35,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:35,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:35,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:36,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:00:36,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:00:36,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:38,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:38,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:38,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:38,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:00:38,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:00:38,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:39,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:39,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:39,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:39,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:00:39,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:00:39,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:40,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:40,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:40,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:40,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:00:40,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:00:40,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:45,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:45,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:46,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:46,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:00:46,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:00:46,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:47,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:47,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:47,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:47,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:00:47,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:00:47,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:48,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:48,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:48,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:48,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:00:48,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:00:48,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:50,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:50,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:50,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:50,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:00:50,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:00:50,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:51,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:51,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:51,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:51,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:00:51,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:00:51,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:54,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:54,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:54,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:54,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:00:54,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:00:54,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:54,983 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:00:55,001 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(616, 748, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:00:55,074 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.241 +2025-10-01 19:00:55,074 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 19:00:55,075 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 19:00:58,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:58,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:58,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:58,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:00:58,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:00:58,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:00:59,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:00:59,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:00:59,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:00:59,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:00:59,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:00:59,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:01,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:01,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:02,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:02,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:01:02,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:01:02,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:04,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:04,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:04,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:04,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:01:04,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:01:04,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:08,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:08,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:08,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:08,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:01:08,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:01:08,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:09,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:09,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:09,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:09,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:01:09,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:01:09,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:10,395 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:01:10,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:01:10,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:01:10,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 19:01:10,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 19:01:10,679 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:01:10,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:10,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:11,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:11,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:01:11,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:01:11,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:13,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:13,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:13,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:13,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:01:13,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:01:13,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:13,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:13,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:13,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:13,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:01:13,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:01:13,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:15,067 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:01:15,095 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:01:15,177 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.888 +2025-10-01 19:01:15,177 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:01:15,178 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 19:01:15,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:15,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:15,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:15,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:01:15,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:01:15,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:17,727 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:01:17,747 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 801, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:01:17,823 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.713 +2025-10-01 19:01:17,823 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:01:17,823 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:01:17,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:17,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:17,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:17,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:01:17,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:01:17,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:19,581 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:01:19,607 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:01:19,686 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.198 +2025-10-01 19:01:19,687 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:01:19,687 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:01:21,117 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:01:21,136 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(802, 802, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:01:21,210 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.018 +2025-10-01 19:01:21,211 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 19:01:21,211 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:01:21,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:21,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:21,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:21,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:01:21,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:01:21,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:22,057 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:01:22,077 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:01:22,151 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.679 +2025-10-01 19:01:22,151 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 19:01:22,151 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 19:01:22,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:22,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:22,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:22,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:01:22,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:01:22,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:24,540 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:01:24,578 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:01:24,662 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.202 +2025-10-01 19:01:24,662 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 19:01:24,662 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:01:24,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:24,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:24,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:25,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:01:25,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:01:25,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:25,167 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:01:25,199 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(796, 796, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:01:25,280 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.707 +2025-10-01 19:01:25,280 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:01:25,280 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:01:25,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:25,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:25,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:25,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:01:25,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:01:25,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:25,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:25,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:25,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:25,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:01:25,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:01:25,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:27,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:27,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:27,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:27,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 19:01:27,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 19:01:27,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:30,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:30,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:30,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:30,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:01:30,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:01:30,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:30,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:30,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:30,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:30,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:01:30,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:01:30,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:31,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:31,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:31,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:31,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:01:31,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:01:31,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:31,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:31,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:31,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:31,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:01:31,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:01:31,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:33,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:33,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:33,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:33,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:01:33,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:01:33,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:34,089 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:01:34,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:01:34,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:01:34,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 19:01:34,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 19:01:34,380 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:01:36,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:36,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:36,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:36,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:01:36,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:01:36,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:36,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:36,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:36,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:36,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:01:36,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:01:36,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:38,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:38,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:38,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:39,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:01:39,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:01:39,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:42,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:42,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:42,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:42,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:01:42,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:01:42,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:43,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:43,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:43,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:43,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:01:43,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:01:43,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:44,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:44,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:44,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:44,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:01:44,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:01:44,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:47,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:47,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:47,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:47,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:01:47,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:01:47,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:48,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:48,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:48,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:49,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:01:49,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:01:49,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:51,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:51,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:51,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:51,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:01:51,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:01:51,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:51,254 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:01:51,277 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:01:51,353 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.637 +2025-10-01 19:01:51,354 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:01:51,354 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:01:54,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:54,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:54,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:54,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:01:54,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:01:54,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:55,802 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:01:55,829 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(804, 753, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:01:55,907 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.703 +2025-10-01 19:01:55,908 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:01:55,908 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:01:56,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:56,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:56,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:56,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:01:56,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:01:56,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:58,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:58,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:58,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:59,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:01:59,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:01:59,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:01:59,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:01:59,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:01:59,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:01:59,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:01:59,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:01:59,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:00,083 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:02:00,105 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 813, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:02:00,177 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.723 +2025-10-01 19:02:00,178 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:02:00,178 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 19:02:00,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:00,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:00,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:00,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:02:00,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:02:00,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:03,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:03,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:03,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:03,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:02:03,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:02:03,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:04,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:04,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:05,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:05,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:02:05,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:02:05,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:07,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:07,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:07,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:07,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:02:07,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:02:07,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:08,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:08,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:08,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:09,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:02:09,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:02:09,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:09,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:09,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:09,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:09,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 19:02:09,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 19:02:09,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:14,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:14,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:14,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:14,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:02:14,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:02:14,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:15,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:15,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:15,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:15,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:02:15,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:02:15,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:16,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:16,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:16,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:17,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:02:17,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:02:17,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:20,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:20,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:20,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:20,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:02:20,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:02:20,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:20,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:20,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:20,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:20,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 19:02:20,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 19:02:20,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:21,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:21,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:21,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:21,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:02:21,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:02:21,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:23,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:23,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:23,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:23,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:02:23,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:02:23,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:26,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:26,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:26,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:26,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:02:26,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:02:26,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:28,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:28,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:28,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:28,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:02:28,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:02:28,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:30,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:30,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:30,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:31,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:02:31,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:02:31,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:31,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:31,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:31,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:31,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:02:31,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:02:31,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:31,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:31,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:31,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:31,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:02:31,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:02:31,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:33,774 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:02:33,820 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:02:33,905 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.466 +2025-10-01 19:02:33,906 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 19:02:33,906 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 19:02:34,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:34,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:34,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:34,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:02:34,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:02:34,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:35,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:35,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:35,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:35,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:02:35,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:02:35,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:37,523 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:02:37,544 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:02:37,621 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.709 +2025-10-01 19:02:37,622 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:02:37,622 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:02:38,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:38,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:38,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:38,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:02:38,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:02:38,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:40,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:40,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:40,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:40,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:02:40,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:02:40,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:41,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:41,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:41,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:41,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:02:41,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:02:41,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:41,641 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:02:41,670 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:02:41,752 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.189 +2025-10-01 19:02:41,752 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:02:41,752 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:02:45,370 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:02:45,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:02:45,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:02:45,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 19:02:45,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-01 19:02:45,638 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:02:46,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:46,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:46,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:47,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 19:02:47,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 19:02:47,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:48,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:48,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:48,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:48,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 19:02:48,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 19:02:48,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:50,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:50,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:50,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:50,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:02:50,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:02:50,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:50,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:50,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:50,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:50,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 19:02:50,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 19:02:50,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:53,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:53,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:53,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:53,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 19:02:53,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 19:02:53,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:54,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:54,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:54,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:54,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 19:02:54,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 19:02:54,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:54,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:54,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:54,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:54,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:02:54,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:02:54,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:55,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:55,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:55,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:55,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:02:55,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:02:55,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:56,573 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:02:56,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:02:56,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:02:56,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 19:02:56,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 19:02:56,848 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:02:58,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:58,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:58,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:02:58,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:02:58,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:02:58,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:02:58,716 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:02:58,737 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:02:58,815 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.423 +2025-10-01 19:02:58,816 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:02:58,816 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:02:59,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:02:59,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:02:59,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:00,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 19:03:00,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 19:03:00,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:00,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:00,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:00,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:00,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:03:00,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:03:00,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:01,443 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:03:01,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:03:01,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:03:01,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 19:03:01,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 19:03:01,734 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:03:02,197 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:03:02,229 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:03:02,306 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.014 +2025-10-01 19:03:02,306 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:03:02,306 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:03:02,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:02,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:02,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:02,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:03:02,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:03:02,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:03,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:03,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:03,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:03,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:03:03,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:03:03,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:03,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:03,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:03,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:03,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 19:03:03,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 19:03:03,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:05,999 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:03:06,036 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:03:06,114 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.004 +2025-10-01 19:03:06,114 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:03:06,114 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:03:06,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:06,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:06,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:06,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:03:06,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:03:06,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:06,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:06,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:06,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:07,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:03:07,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:03:07,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:09,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:09,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:09,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:09,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:03:09,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:03:09,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:10,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:10,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:10,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:10,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:03:10,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:03:10,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:10,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:10,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:10,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:10,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:03:10,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:03:10,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:12,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:12,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:12,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:12,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:03:12,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:03:12,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:12,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:12,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:12,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:13,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:03:13,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:03:13,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:13,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:13,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:13,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:13,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 19:03:13,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 19:03:13,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:14,832 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:03:14,870 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:03:14,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.196 +2025-10-01 19:03:14,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:03:14,946 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:03:14,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:14,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:14,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:15,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 19:03:15,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 19:03:15,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:15,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:15,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:15,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:15,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 19:03:15,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 19:03:15,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:17,960 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:03:17,987 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:03:18,060 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.841 +2025-10-01 19:03:18,061 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:03:18,061 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 19:03:18,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:18,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:18,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:18,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:03:18,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:03:18,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:19,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:19,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:19,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:19,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:03:19,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:03:19,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:19,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:19,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:19,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:19,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:03:19,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:03:19,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:22,213 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:03:22,235 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:03:22,317 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.342 +2025-10-01 19:03:22,317 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:03:22,317 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:03:22,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:22,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:22,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:22,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 19:03:22,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 19:03:22,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:23,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:23,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:23,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:23,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 19:03:23,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 19:03:23,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:23,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:23,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:23,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:23,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:03:23,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:03:23,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:24,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:24,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:24,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:24,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:03:24,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:03:24,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:25,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:25,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:25,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:25,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 19:03:25,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 19:03:25,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:26,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:26,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:26,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:26,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:03:26,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:03:26,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:26,247 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:03:26,263 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:03:26,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.206 +2025-10-01 19:03:26,337 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 19:03:26,337 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 19:03:26,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:26,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:27,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:27,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:03:27,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:03:27,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:28,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:28,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:28,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:28,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:03:28,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:03:28,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:29,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:29,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:29,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:29,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 19:03:29,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 19:03:29,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:29,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:29,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:29,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:29,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:03:29,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:03:29,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:30,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:30,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:30,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:30,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:03:30,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:03:30,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:30,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:30,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:30,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:30,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:03:30,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:03:30,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:32,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:32,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:32,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:32,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:03:32,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:03:32,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:33,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:33,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:33,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:33,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 19:03:33,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 19:03:33,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:33,543 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:03:33,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:03:33,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:03:33,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 19:03:33,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-01 19:03:33,811 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:03:35,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:35,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:35,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:35,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 19:03:35,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 19:03:35,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:36,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:36,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:36,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:36,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:03:36,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:03:36,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:38,195 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:03:38,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:03:38,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:03:38,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 19:03:38,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 19:03:38,478 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:03:38,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:38,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:38,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:38,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:03:38,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:03:38,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:40,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:40,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:40,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:40,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 19:03:40,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 19:03:40,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:42,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:42,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:42,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:42,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:03:42,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:03:42,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:44,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:44,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:44,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:44,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:03:44,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:03:44,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:44,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:44,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:44,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:44,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:03:44,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:03:44,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:45,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:45,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:45,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:45,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:03:45,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:03:45,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:46,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:46,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:46,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:46,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:03:46,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:03:46,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:46,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:46,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:46,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:46,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:03:46,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:03:46,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:47,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:47,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:47,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:47,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:03:47,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:03:47,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:47,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:47,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:47,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:47,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:03:47,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:03:47,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:49,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:49,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:49,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:49,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:03:49,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:03:49,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:51,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:51,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:51,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:51,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:03:51,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:03:51,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:52,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:52,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:52,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:52,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 19:03:52,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 19:03:52,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:53,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:53,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:53,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:53,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:03:53,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:03:53,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:54,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:54,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:54,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:54,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:03:54,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:03:54,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:54,968 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:03:54,982 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:03:55,051 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.598 +2025-10-01 19:03:55,052 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 19:03:55,052 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 19:03:55,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:55,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:55,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:55,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:03:55,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:03:55,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:57,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:57,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:57,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:57,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:03:57,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:03:57,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:57,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:57,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:57,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:58,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:03:58,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:03:58,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:58,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:58,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:58,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:59,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 19:03:59,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 19:03:59,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:59,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:03:59,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:03:59,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:03:59,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:03:59,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:03:59,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:03:59,789 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:03:59,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:03:59,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.827 +2025-10-01 19:03:59,885 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:03:59,885 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:04:02,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:02,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:02,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:02,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 19:04:02,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 19:04:02,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:02,602 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 19:04:02,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 19:04:02,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 19:04:03,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.428s +2025-10-01 19:04:03,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.428s (avg: 0.143s/image) +2025-10-01 19:04:03,032 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 19:04:03,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:03,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:03,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:03,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:04:03,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:04:03,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:05,100 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:04:05,125 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:04:05,203 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.035 +2025-10-01 19:04:05,203 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:04:05,203 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:04:08,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:08,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:08,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:08,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:04:08,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:04:08,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:08,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:08,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:08,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:08,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:04:08,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:04:08,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:09,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:09,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:09,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:09,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:04:09,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:04:09,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:09,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:09,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:09,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:10,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:04:10,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:04:10,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:10,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:10,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:10,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:10,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:04:10,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:04:10,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:10,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:10,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:10,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:10,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:04:10,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:04:10,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:12,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:12,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:12,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:12,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:04:12,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:04:12,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:13,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:13,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:13,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:13,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:04:13,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:04:13,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:14,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:14,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:14,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:14,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:04:14,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:04:14,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:16,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:16,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:16,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:16,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:04:16,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:04:16,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:17,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:17,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:17,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:17,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:04:17,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:04:17,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:17,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:17,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:17,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:17,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:04:17,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:04:17,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:18,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:18,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:18,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:18,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:04:18,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:04:18,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:20,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:20,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:20,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:20,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:04:20,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:04:20,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:20,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:20,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:20,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:20,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:04:20,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:04:20,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:22,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:22,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:22,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:22,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:04:22,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:04:22,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:22,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:22,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:23,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:23,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:04:23,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:04:23,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:23,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:23,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:23,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:23,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:04:23,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:04:23,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:24,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:24,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:24,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:24,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:04:24,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:04:24,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:25,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:25,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:25,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:25,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 19:04:25,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 19:04:25,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:25,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:25,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:25,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:25,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:04:25,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:04:25,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:25,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:25,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:25,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:25,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:04:25,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:04:25,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:26,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:26,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:26,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:26,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 19:04:26,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 19:04:26,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:27,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:27,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:27,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:27,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:04:27,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:04:27,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:28,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:28,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:28,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:28,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:04:28,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:04:28,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:30,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:30,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:30,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:30,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:04:30,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:04:30,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:31,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:31,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:31,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:31,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:04:31,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:04:31,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:31,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:31,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:31,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:31,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:04:31,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:04:31,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:32,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:32,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:32,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:32,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:04:32,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:04:32,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:32,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:32,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:32,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:32,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:04:32,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:04:32,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:33,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:33,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:33,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:33,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:04:33,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:04:33,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:35,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:35,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:35,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:35,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:04:35,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:04:35,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:36,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:36,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:36,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:36,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:04:36,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:04:36,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:37,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:37,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:37,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:37,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 19:04:37,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 19:04:37,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:38,051 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:04:38,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:04:38,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:04:38,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-01 19:04:38,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-01 19:04:38,315 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:04:39,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:39,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:39,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:39,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:04:39,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:04:39,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:40,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:40,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:40,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:40,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 19:04:40,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 19:04:40,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:42,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:42,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:42,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:42,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:04:42,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:04:42,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:42,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:42,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:42,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:42,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:04:42,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:04:42,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:43,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:43,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:43,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:43,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:04:43,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:04:43,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:45,341 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:04:45,364 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(735, 915, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:04:45,447 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.618 +2025-10-01 19:04:45,447 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 19:04:45,447 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:04:46,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:46,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:46,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:46,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:04:46,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:04:46,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:47,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:47,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:47,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:47,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:04:47,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:04:47,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:48,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:48,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:48,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:48,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:04:48,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:04:48,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:48,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:48,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:48,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:49,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 19:04:49,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 19:04:49,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:49,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:49,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:49,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:49,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:04:49,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:04:49,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:49,732 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:04:49,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:04:49,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:04:49,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.256s +2025-10-01 19:04:49,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.256s (avg: 0.128s/image) +2025-10-01 19:04:49,990 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:04:50,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:50,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:50,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:50,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:04:50,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:04:50,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:51,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:51,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:51,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:51,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 19:04:51,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 19:04:51,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:51,772 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:04:51,800 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:04:51,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.342 +2025-10-01 19:04:51,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 19:04:51,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 19:04:52,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:52,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:52,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:52,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:04:52,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:04:52,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:53,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:53,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:53,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:53,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:04:53,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:04:53,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:54,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:54,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:54,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:54,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:04:54,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:04:54,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:54,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:54,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:55,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:55,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:04:55,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:04:55,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:56,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:56,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:56,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:56,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:04:56,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:04:56,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:57,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:57,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:57,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:57,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:04:57,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:04:57,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:04:58,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:04:58,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:04:58,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:04:58,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:04:58,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:04:58,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:00,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:00,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:00,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:00,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:05:00,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:05:00,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:01,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:01,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:01,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:01,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:05:01,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:05:01,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:02,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:02,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:02,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:02,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:05:02,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:05:02,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:03,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:03,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:03,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:03,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:05:03,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:05:03,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:05,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:05,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:05,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:05,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 19:05:05,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 19:05:05,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:06,671 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:05:06,719 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:05:06,809 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=8.811 +2025-10-01 19:05:06,809 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 19:05:06,809 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 19:05:08,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:08,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:08,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:08,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:05:08,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:05:08,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:08,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:08,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:08,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:08,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:05:08,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:05:08,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:09,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:09,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:09,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:10,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:05:10,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:05:10,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:10,090 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:05:10,107 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:05:10,182 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.031 +2025-10-01 19:05:10,182 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:05:10,183 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:05:10,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:10,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:10,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:10,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:05:10,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:05:10,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:13,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:13,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:13,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:13,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:05:13,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:05:13,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:13,705 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:05:13,731 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:05:13,816 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.595 +2025-10-01 19:05:13,817 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 19:05:13,817 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 19:05:14,211 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:05:14,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:05:14,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:05:14,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 19:05:14,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 19:05:14,506 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:05:18,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:18,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:18,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:18,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 19:05:18,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 19:05:18,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:18,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:18,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:18,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:19,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:05:19,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:05:19,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:19,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:19,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:19,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:19,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 19:05:19,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 19:05:19,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:19,752 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:05:19,770 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:05:19,843 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.095 +2025-10-01 19:05:19,844 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:05:19,844 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 19:05:21,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:21,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:21,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:21,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:05:21,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:05:21,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:21,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:21,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:21,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:21,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:05:21,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:05:21,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:21,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:21,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:22,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:22,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:05:22,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:05:22,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:22,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:22,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:22,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:22,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:05:22,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:05:22,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:23,621 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:05:23,649 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:05:23,729 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.155 +2025-10-01 19:05:23,730 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:05:23,730 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:05:24,519 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:05:24,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:05:24,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:05:24,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 19:05:24,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +2025-10-01 19:05:24,828 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:05:26,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:26,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:26,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:26,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:05:26,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:05:26,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:27,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:27,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:27,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:27,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 19:05:27,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 19:05:27,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:27,719 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:05:27,740 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:05:27,817 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=179.827 +2025-10-01 19:05:27,817 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:05:27,817 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:05:28,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:28,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:28,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:28,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:05:28,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:05:28,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:28,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:28,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:28,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:28,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:05:28,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:05:28,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:31,941 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:05:31,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:05:31,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:05:32,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 19:05:32,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +2025-10-01 19:05:32,246 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:05:32,588 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:05:32,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:05:32,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:05:32,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 19:05:32,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 19:05:32,879 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:05:33,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:33,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:33,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:33,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 19:05:33,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 19:05:33,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:35,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:35,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:35,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:36,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:05:36,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:05:36,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:39,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:39,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:39,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:39,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:05:39,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:05:39,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:39,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:39,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:39,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:40,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:05:40,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:05:40,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:40,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:40,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:41,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:41,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:05:41,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:05:41,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:44,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:44,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:44,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:44,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:05:44,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:05:44,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:47,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:47,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:47,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:47,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:05:47,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:05:47,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:48,634 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:05:48,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:05:48,746 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=13.989 +2025-10-01 19:05:48,746 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 19:05:48,746 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 19:05:52,584 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:05:52,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:05:52,703 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.378 +2025-10-01 19:05:52,703 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:05:52,704 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:05:56,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:56,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:56,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:56,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:05:56,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:05:56,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:05:56,843 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:05:56,870 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:05:56,948 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.454 +2025-10-01 19:05:56,948 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:05:56,949 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:05:58,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:05:58,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:05:59,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:05:59,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:05:59,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:05:59,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:04,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:04,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:04,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:04,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:06:04,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:06:04,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:07,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:07,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:07,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:07,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:06:07,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:06:07,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:12,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:12,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:12,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:12,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 19:06:12,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 19:06:12,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:12,773 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:06:12,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:06:12,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:06:13,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 19:06:13,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 19:06:13,080 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:06:14,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:14,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:14,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:14,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:06:14,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:06:14,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:17,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:17,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:17,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:17,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:06:17,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:06:17,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:19,249 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:06:19,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:06:19,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:06:19,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 19:06:19,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-01 19:06:19,551 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:06:22,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:22,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:22,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:22,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:06:22,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:06:22,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:23,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:23,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:23,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:23,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:06:23,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:06:23,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:24,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:24,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:24,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:24,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:06:24,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:06:24,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:25,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:25,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:25,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:25,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:06:25,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:06:25,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:25,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:25,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:25,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:25,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:06:25,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:06:25,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:30,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:30,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:30,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:30,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 19:06:30,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 19:06:30,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:30,751 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:06:30,795 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:06:30,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.738 +2025-10-01 19:06:30,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 19:06:30,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 19:06:31,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:31,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:31,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:31,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:06:31,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:06:31,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:31,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:31,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:32,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:32,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:06:32,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:06:32,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:34,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:34,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:34,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:34,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 19:06:34,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 19:06:34,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:34,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:34,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:35,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:35,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:06:35,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:06:35,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:36,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:36,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:36,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:36,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:06:36,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:06:36,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:37,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:37,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:37,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:37,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:06:37,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:06:37,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:39,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:39,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:39,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:39,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:06:39,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:06:39,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:40,793 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:06:40,832 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:06:40,918 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.497 +2025-10-01 19:06:40,918 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 19:06:40,918 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 19:06:40,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:40,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:40,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:41,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:06:41,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:06:41,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:41,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:41,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:41,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:41,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:06:41,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:06:41,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:44,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:44,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:44,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:44,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:06:44,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:06:44,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:45,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:45,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:45,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:45,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:06:45,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:06:45,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:46,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:46,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:46,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:46,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:06:46,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:06:46,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:47,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:47,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:47,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:47,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:06:47,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:06:47,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:51,858 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:06:51,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:06:51,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:06:52,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 19:06:52,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 19:06:52,151 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:06:52,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:52,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:52,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:52,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:06:52,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:06:52,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:54,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:54,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:54,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:54,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:06:54,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:06:54,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:54,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:54,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:54,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:55,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:06:55,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:06:55,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:57,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:57,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:57,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:57,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:06:57,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:06:57,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:58,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:58,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:58,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:58,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:06:58,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:06:58,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:06:59,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:06:59,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:06:59,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:06:59,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:06:59,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:06:59,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:02,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:02,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:02,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:02,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:07:02,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:07:02,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:03,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:03,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:03,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:03,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:07:03,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:07:03,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:10,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:10,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:10,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:10,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:07:10,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:07:10,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:10,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:10,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:10,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:10,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:07:10,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:07:10,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:11,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:11,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:11,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:11,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 19:07:11,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 19:07:11,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:15,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:15,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:16,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:16,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 19:07:16,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 19:07:16,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:16,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:16,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:16,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:16,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:07:16,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:07:16,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:19,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:19,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:19,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:19,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:07:19,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:07:19,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:21,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:21,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:21,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:22,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:07:22,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:07:22,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:22,451 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:07:22,475 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:07:22,557 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.246 +2025-10-01 19:07:22,557 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:07:22,557 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:07:23,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:23,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:23,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:23,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:07:23,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:07:23,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:26,905 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:07:26,944 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:07:27,024 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.517 +2025-10-01 19:07:27,025 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:07:27,025 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:07:27,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:27,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:27,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:27,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:07:27,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:07:27,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:34,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:34,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:34,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:34,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-01 19:07:34,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-01 19:07:34,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:34,869 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:07:34,909 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:07:34,990 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.254 +2025-10-01 19:07:34,990 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:07:34,990 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:07:35,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:35,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:35,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:35,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:07:35,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:07:35,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:37,166 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:07:37,210 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:07:37,295 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=177.281 +2025-10-01 19:07:37,295 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 19:07:37,295 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 19:07:37,695 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:07:37,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:07:37,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:07:37,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 19:07:37,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-01 19:07:37,998 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:07:38,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:38,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:38,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:38,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:07:38,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:07:38,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:42,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:42,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:42,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:42,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 19:07:42,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 19:07:42,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:43,194 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:07:43,215 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:07:43,294 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.787 +2025-10-01 19:07:43,294 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:07:43,295 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:07:43,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:43,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:43,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:43,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:07:43,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:07:43,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:43,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:43,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:43,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:43,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:07:43,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:07:43,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:43,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:43,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:44,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:44,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:07:44,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:07:44,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:45,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:45,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:45,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:45,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:07:45,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:07:45,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:46,840 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:07:46,864 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:07:46,943 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=214.905 +2025-10-01 19:07:46,943 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:07:46,943 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:07:48,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:48,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:48,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:48,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:07:48,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:07:48,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:50,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:50,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:50,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:50,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:07:50,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:07:50,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:50,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:50,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:50,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:51,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:07:51,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:07:51,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:53,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:53,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:53,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:53,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:07:53,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:07:53,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:53,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:53,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:53,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:53,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:07:53,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:07:53,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:54,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:54,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:54,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:54,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:07:54,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:07:54,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:54,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:54,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:54,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:55,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:07:55,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:07:55,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:57,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:57,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:57,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:57,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:07:57,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:07:57,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:59,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:59,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:59,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:59,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 19:07:59,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 19:07:59,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:07:59,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:07:59,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:07:59,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:07:59,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:07:59,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:07:59,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:01,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:01,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:01,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:01,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:08:01,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:08:01,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:02,344 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:08:02,368 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:08:02,444 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.002 +2025-10-01 19:08:02,444 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:08:02,444 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:08:03,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:03,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:03,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:03,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:08:03,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:08:03,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:06,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:06,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:06,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:06,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:08:06,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:08:06,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:06,694 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:08:06,715 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:08:06,796 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.189 +2025-10-01 19:08:06,796 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:08:06,796 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:08:06,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:06,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:06,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:06,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:08:06,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:08:06,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:09,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:09,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:09,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:09,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:08:09,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:08:09,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:10,646 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:08:10,668 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:08:10,744 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.583 +2025-10-01 19:08:10,744 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:08:10,745 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:08:11,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:11,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:11,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:11,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:08:11,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:08:11,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:12,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:12,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:12,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:12,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:08:12,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:08:12,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:13,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:13,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:13,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:13,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:08:13,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:08:13,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:16,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:16,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:16,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:16,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:08:16,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:08:16,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:16,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:16,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:16,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:16,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:08:16,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:08:16,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:17,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:17,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:17,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:18,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 19:08:18,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 19:08:18,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:19,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:19,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:19,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:20,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:08:20,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:08:20,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:20,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:20,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:20,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:20,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:08:20,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:08:20,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:22,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:22,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:22,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:23,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:08:23,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:08:23,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:24,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:24,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:24,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:24,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:08:24,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:08:24,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:24,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:24,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:25,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:25,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:08:25,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:08:25,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:25,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:25,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:25,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:25,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:08:25,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:08:25,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:25,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:25,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:25,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:26,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 19:08:26,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 19:08:26,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:27,678 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:08:27,713 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:08:27,796 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.880 +2025-10-01 19:08:27,796 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 19:08:27,796 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 19:08:31,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:31,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:31,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:32,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:08:32,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:08:32,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:32,033 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:08:32,053 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:08:32,132 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.666 +2025-10-01 19:08:32,132 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:08:32,132 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:08:34,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:34,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:34,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:34,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:08:34,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:08:34,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:36,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:08:36,591 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:08:36,684 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.531 +2025-10-01 19:08:36,684 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 19:08:36,684 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 19:08:40,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:40,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:40,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:40,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:08:40,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:08:40,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:42,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:42,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:42,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:42,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:08:42,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:08:42,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:47,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:47,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:47,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:47,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:08:47,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:08:47,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:52,999 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:08:53,050 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:08:53,141 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=185.509 +2025-10-01 19:08:53,141 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 19:08:53,142 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 19:08:53,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:53,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:53,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:53,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:08:53,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:08:53,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:53,873 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:08:53,899 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:08:53,996 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.712 +2025-10-01 19:08:53,996 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 19:08:53,996 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 19:08:55,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:55,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:55,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:55,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:08:55,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:08:55,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:55,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:08:55,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:08:55,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:08:55,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:08:55,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:08:55,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:08:57,482 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:08:57,510 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:08:57,597 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.992 +2025-10-01 19:08:57,597 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 19:08:57,597 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 19:09:00,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:00,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:00,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:00,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:09:00,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:09:00,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:01,149 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:09:01,176 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:09:01,262 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.023 +2025-10-01 19:09:01,262 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 19:09:01,262 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 19:09:02,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:02,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:02,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:02,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:09:02,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:09:02,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:02,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:02,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:02,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:02,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 19:09:02,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 19:09:02,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:03,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:03,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:03,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:03,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:09:03,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:09:03,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:08,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:08,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:08,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:08,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 19:09:08,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 19:09:08,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:09,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:09,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:09,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:09,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:09:09,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:09:09,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:09,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:09,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:09,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:09,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:09:09,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:09:09,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:10,181 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:09:10,216 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:09:10,305 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=8.952 +2025-10-01 19:09:10,305 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 19:09:10,306 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 19:09:11,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:11,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:11,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:11,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:09:11,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:09:11,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:13,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:13,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:13,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:13,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:09:13,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:09:13,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:13,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:13,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:13,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:14,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 19:09:14,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 19:09:14,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:19,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:19,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:19,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:19,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:09:19,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:09:19,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:20,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:20,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:20,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:20,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:09:20,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:09:20,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:23,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:23,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:23,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:23,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:09:23,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:09:23,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:26,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:26,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:26,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:26,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:09:26,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:09:26,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:27,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:27,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:27,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:27,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:09:27,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:09:27,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:27,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:27,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:27,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:27,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:09:27,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:09:27,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:31,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:31,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:31,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:31,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:09:31,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:09:31,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:32,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:32,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:32,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:32,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:09:32,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:09:32,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:35,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:35,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:35,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:35,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:09:35,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:09:35,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:35,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:35,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:35,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:35,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:09:35,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:09:35,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:38,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:38,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:38,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:39,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:09:39,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:09:39,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:40,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:40,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:40,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:40,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:09:40,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:09:40,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:41,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:41,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:41,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:42,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 19:09:42,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 19:09:42,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:42,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:42,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:42,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:42,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:09:42,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:09:42,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:44,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:44,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:44,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:44,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:09:44,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:09:44,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:45,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:45,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:45,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:45,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:09:45,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:09:45,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:48,329 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:09:48,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:09:48,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:09:48,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 19:09:48,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 19:09:48,626 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:09:50,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:50,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:50,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:50,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 19:09:50,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 19:09:50,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:51,110 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:09:51,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:09:51,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:09:51,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 19:09:51,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-01 19:09:51,382 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:09:51,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:51,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:51,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:51,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:09:51,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:09:51,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:54,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:54,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:54,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:54,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:09:54,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:09:54,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:55,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:55,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:55,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:56,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:09:56,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:09:56,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:56,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:56,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:56,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:56,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:09:56,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:09:56,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:57,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:57,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:57,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:57,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:09:57,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:09:57,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:09:57,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:09:57,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:09:57,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:09:58,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 19:09:58,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 19:09:58,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:01,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:01,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:01,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:01,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:10:01,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:10:01,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:01,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:01,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:01,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:01,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 19:10:01,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 19:10:01,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:04,125 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:10:04,147 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:10:04,228 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.634 +2025-10-01 19:10:04,229 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:10:04,229 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:10:05,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:05,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:05,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:05,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:10:05,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:10:05,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:07,905 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:10:07,933 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:10:08,013 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.222 +2025-10-01 19:10:08,013 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:10:08,013 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:10:08,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:08,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:08,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:08,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:10:08,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:10:08,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:10,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:10,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:10,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:11,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:10:11,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:10:11,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:11,319 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:10:11,341 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:10:11,418 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.656 +2025-10-01 19:10:11,418 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:10:11,418 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:10:13,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:13,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:13,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:13,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:10:13,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:10:13,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:15,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:15,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:15,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:15,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:10:15,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:10:15,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:16,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:16,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:16,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:17,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:10:17,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:10:17,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:17,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:17,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:17,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:17,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:10:17,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:10:17,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:17,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:17,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:17,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:17,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:10:17,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:10:17,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:19,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:19,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:19,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:19,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:10:19,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:10:19,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:22,704 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:10:22,729 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:10:22,805 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.979 +2025-10-01 19:10:22,805 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:10:22,805 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:10:23,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:23,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:23,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:23,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:10:23,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:10:23,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:24,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:24,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:24,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:24,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:10:24,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:10:24,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:26,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:26,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:26,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:26,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:10:26,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:10:26,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:28,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:28,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:28,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:28,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:10:28,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:10:28,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:28,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:28,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:28,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:28,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:10:28,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:10:28,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:29,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:29,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:29,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:29,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:10:29,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:10:29,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:30,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:30,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:30,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:30,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:10:30,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:10:30,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:34,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:34,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:34,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:34,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:10:34,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:10:34,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:36,136 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:10:36,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:10:36,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:10:36,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 19:10:36,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 19:10:36,420 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:10:38,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:38,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:38,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:38,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:10:38,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:10:38,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:43,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:43,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:43,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:43,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 19:10:43,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 19:10:43,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:43,928 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:10:43,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:10:43,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:10:44,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 19:10:44,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 19:10:44,205 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:10:44,318 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:10:44,330 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(921, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:10:44,406 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.802 +2025-10-01 19:10:44,406 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:10:44,406 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:10:48,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:48,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:48,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:48,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:10:48,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:10:48,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:48,664 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:10:48,686 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 752, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:10:48,770 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.770 +2025-10-01 19:10:48,770 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 19:10:48,771 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:10:49,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:49,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:49,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:50,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:10:50,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:10:50,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:52,708 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:10:52,738 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:10:52,817 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.935 +2025-10-01 19:10:52,818 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:10:52,818 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:10:57,135 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:10:57,165 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:10:57,243 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.882 +2025-10-01 19:10:57,244 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:10:57,244 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:10:57,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:10:57,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:10:57,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:10:57,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:10:57,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:10:57,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:10:58,495 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:10:58,517 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(719, 719, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:10:58,590 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.461 +2025-10-01 19:10:58,590 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 19:10:58,590 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 19:11:02,204 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:11:02,233 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:11:02,314 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.386 +2025-10-01 19:11:02,314 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:11:02,315 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:11:02,630 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:11:02,660 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:11:02,740 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.490 +2025-10-01 19:11:02,740 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:11:02,740 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:11:04,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:04,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:04,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:04,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:11:04,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:11:04,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:06,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:06,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:06,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:06,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:11:06,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:11:06,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:06,356 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:11:06,378 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:11:06,460 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.039 +2025-10-01 19:11:06,460 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:11:06,460 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:11:11,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:11,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:11,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:11,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:11:11,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:11:11,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:12,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:12,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:12,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:12,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:11:12,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:11:12,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:12,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:12,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:12,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:12,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:11:12,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:11:12,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:15,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:15,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:15,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:15,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:11:15,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:11:15,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:16,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:16,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:16,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:16,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:11:16,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:11:16,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:19,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:19,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:19,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:19,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:11:19,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:11:19,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:20,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:20,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:20,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:20,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:11:20,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:11:20,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:20,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:20,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:20,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:21,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:11:21,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:11:21,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:23,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:23,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:23,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:24,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:11:24,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:11:24,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:25,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:25,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:25,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:25,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:11:25,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:11:25,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:28,099 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:11:28,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:11:28,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:11:28,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 19:11:28,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 19:11:28,391 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:11:28,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:28,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:28,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:28,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +2025-10-01 19:11:28,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +2025-10-01 19:11:28,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:29,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:29,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:29,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:29,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:11:29,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:11:29,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:31,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:31,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:32,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:32,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:11:32,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:11:32,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:32,791 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:11:32,829 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:11:32,911 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.669 +2025-10-01 19:11:32,911 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:11:32,911 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:11:33,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:33,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:33,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:33,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:11:33,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:11:33,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:34,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:34,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:34,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:34,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 19:11:34,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 19:11:34,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:35,355 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:11:35,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:11:35,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:11:35,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-01 19:11:35,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-01 19:11:35,618 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:11:35,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:35,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:35,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:36,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:11:36,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:11:36,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:36,955 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:11:36,990 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:11:37,066 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=186.173 +2025-10-01 19:11:37,066 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:11:37,067 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:11:39,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:39,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:39,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:39,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:11:39,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:11:39,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:39,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:39,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:39,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:39,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 19:11:39,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 19:11:39,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:40,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:40,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:40,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:40,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:11:40,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:11:40,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:41,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:41,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:41,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:41,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:11:41,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:11:41,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:41,858 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:11:41,882 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:11:41,956 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=179.255 +2025-10-01 19:11:41,956 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:11:41,956 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 19:11:42,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:42,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:42,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:42,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:11:42,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:11:42,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:45,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:45,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:45,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:45,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:11:45,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:11:45,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:45,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:45,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:45,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:45,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:11:45,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:11:45,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:46,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:46,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:46,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:46,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:11:46,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:11:46,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:46,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:46,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:46,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:46,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:11:46,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:11:46,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:50,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:50,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:50,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:50,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:11:50,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:11:50,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:51,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:51,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:51,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:51,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:11:51,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:11:51,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:52,315 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:11:52,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:11:52,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:11:52,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 19:11:52,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 19:11:52,606 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:11:53,531 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:11:53,552 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:11:53,627 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.271 +2025-10-01 19:11:53,628 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:11:53,628 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:11:54,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:54,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:54,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:54,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:11:54,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:11:54,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:55,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:55,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:55,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:55,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 19:11:55,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 19:11:55,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:57,050 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:11:57,075 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:11:57,153 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.301 +2025-10-01 19:11:57,153 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:11:57,153 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:11:57,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:57,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:57,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:57,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:11:57,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:11:57,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:59,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:59,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:59,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:59,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:11:59,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:11:59,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:11:59,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:11:59,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:11:59,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:11:59,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:11:59,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:11:59,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:00,405 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:12:00,428 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:12:00,504 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.493 +2025-10-01 19:12:00,504 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:12:00,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:12:00,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:00,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:00,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:01,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:12:01,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:12:01,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:01,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:01,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:01,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:02,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:12:02,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:12:02,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:03,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:03,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:03,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:03,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:12:03,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:12:03,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:05,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:05,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:05,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:05,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:12:05,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:12:05,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:06,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:06,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:06,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:06,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:12:06,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:12:06,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:08,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:08,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:08,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:08,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:12:08,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:12:08,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:10,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:10,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:10,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:10,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:12:10,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:12:10,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:10,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:10,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:11,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:11,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:12:11,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:12:11,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:13,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:13,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:13,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:13,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:12:13,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:12:13,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:13,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:13,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:13,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:14,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:12:14,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:12:14,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:15,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:15,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:15,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:15,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:12:15,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:12:15,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:16,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:16,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:16,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:16,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:12:16,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:12:16,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:17,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:17,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:17,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:18,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:12:18,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:12:18,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:19,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:19,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:19,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:19,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:12:19,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:12:19,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:19,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:19,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:19,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:19,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:12:19,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:12:19,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:23,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:23,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:23,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:23,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:12:23,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:12:23,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:31,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:31,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:31,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:31,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:12:31,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:12:31,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:33,325 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:12:33,366 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:12:33,450 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.453 +2025-10-01 19:12:33,450 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 19:12:33,450 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:12:36,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:36,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:36,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:36,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:12:36,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:12:36,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:36,531 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:12:36,547 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:12:36,620 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=17.559 +2025-10-01 19:12:36,620 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:12:36,620 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 19:12:40,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:40,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:40,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:40,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:12:40,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:12:40,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:41,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:41,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:41,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:41,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:12:41,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:12:41,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:42,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:42,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:42,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:42,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:12:42,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:12:42,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:42,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:42,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:42,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:42,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:12:42,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:12:42,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:43,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:43,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:43,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:43,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:12:43,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:12:43,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:47,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:47,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:47,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:47,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:12:47,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:12:47,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:48,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:48,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:48,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:48,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:12:48,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:12:48,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:48,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:48,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:48,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:48,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:12:48,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:12:48,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:49,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:49,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:49,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:49,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:12:49,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:12:49,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:50,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:50,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:50,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:50,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 19:12:50,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 19:12:50,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:54,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:54,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:54,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:54,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:12:54,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:12:54,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:54,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:54,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:54,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:54,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:12:54,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:12:54,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:57,439 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:12:57,470 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:12:57,547 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.432 +2025-10-01 19:12:57,547 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:12:57,547 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:12:58,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:58,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:58,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:58,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 19:12:58,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 19:12:58,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:12:59,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:12:59,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:12:59,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:12:59,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:12:59,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:12:59,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:00,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:00,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:01,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:01,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:13:01,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:13:01,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:01,864 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:13:01,894 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:13:01,983 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.528 +2025-10-01 19:13:01,983 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 19:13:01,983 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 19:13:04,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:04,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:04,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:04,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:13:04,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:13:04,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:05,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:13:05,390 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:13:05,477 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.964 +2025-10-01 19:13:05,478 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 19:13:05,478 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 19:13:05,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:05,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:05,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:06,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:13:06,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:13:06,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:10,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:10,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:10,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:10,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:13:10,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:13:10,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:10,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:10,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:10,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:10,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:13:10,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:13:10,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:12,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:12,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:12,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:13,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:13:13,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:13:13,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:16,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:16,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:16,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:16,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:13:16,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:13:16,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:17,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:17,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:17,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:17,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 19:13:17,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 19:13:17,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:21,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:21,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:21,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:21,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:13:21,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:13:21,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:22,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:22,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:22,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:22,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:13:22,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:13:22,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:22,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:22,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:22,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:23,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 19:13:23,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 19:13:23,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:23,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:23,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:23,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:23,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:13:23,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:13:23,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:25,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:25,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:25,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:25,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:13:25,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:13:25,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:26,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:26,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:26,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:26,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:13:26,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:13:26,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:29,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:29,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:29,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:29,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:13:29,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:13:29,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:30,267 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:13:30,290 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:13:30,366 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=199.596 +2025-10-01 19:13:30,366 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:13:30,366 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:13:30,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:30,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:30,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:30,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:13:30,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:13:30,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:33,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:33,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:33,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:33,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:13:33,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:13:33,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:34,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:34,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:34,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:34,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:13:34,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:13:34,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:35,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:35,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:35,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:35,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:13:35,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:13:35,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:36,169 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:13:36,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:13:36,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:13:36,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 19:13:36,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 19:13:36,462 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:13:37,953 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:13:37,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:13:38,051 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.408 +2025-10-01 19:13:38,052 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:13:38,052 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:13:38,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:38,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:38,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:39,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 19:13:39,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 19:13:39,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:39,228 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:13:39,251 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:13:39,323 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.718 +2025-10-01 19:13:39,323 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 19:13:39,323 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 19:13:39,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:39,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:39,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:40,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:13:40,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:13:40,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:41,695 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:13:41,718 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:13:41,792 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.691 +2025-10-01 19:13:41,793 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:13:41,793 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:13:42,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:42,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:42,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:42,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:13:42,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:13:42,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:42,934 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:13:42,953 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:13:43,041 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.343 +2025-10-01 19:13:43,041 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 19:13:43,041 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 19:13:43,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:43,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:43,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:43,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:13:43,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:13:43,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:43,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:43,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:43,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:44,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:13:44,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:13:44,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:44,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:44,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:44,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:45,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:13:45,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:13:45,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:46,131 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:13:46,156 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:13:46,234 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.685 +2025-10-01 19:13:46,235 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:13:46,235 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:13:46,718 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:13:46,747 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:13:46,826 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.381 +2025-10-01 19:13:46,827 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:13:46,827 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:13:47,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:47,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:47,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:47,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:13:47,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:13:47,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:48,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:48,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:48,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:48,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:13:48,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:13:48,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:48,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:48,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:48,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:48,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:13:48,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:13:48,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:49,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:49,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:49,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:49,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:13:49,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:13:49,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:52,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:52,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:52,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:52,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:13:52,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:13:52,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:57,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:57,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:57,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:13:57,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:13:57,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:13:57,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:13:59,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:13:59,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:13:59,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:00,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:14:00,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:14:00,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:01,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:01,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:01,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:01,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:14:01,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:14:01,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:08,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:08,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:08,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:08,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:14:08,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:14:08,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:10,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:10,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:10,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:10,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:14:10,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:14:10,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:13,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:13,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:13,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:13,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:14:13,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:14:13,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:13,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:13,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:13,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:13,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:14:13,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:14:13,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:18,210 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:14:18,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:14:18,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:14:18,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 19:14:18,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 19:14:18,487 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:14:21,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:21,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:21,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:21,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:14:21,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:14:21,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:23,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:23,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:23,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:23,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:14:23,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:14:23,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:23,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:23,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:23,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:23,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 19:14:23,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 19:14:23,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:27,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:27,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:27,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:27,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:14:27,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:14:27,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:31,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:31,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:31,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:31,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:14:31,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:14:31,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:39,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:39,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:39,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:39,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:14:39,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:14:39,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:41,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:41,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:42,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:42,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:14:42,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:14:42,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:49,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:49,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:49,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:49,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:14:49,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:14:49,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:54,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:54,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:54,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:54,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:14:54,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:14:54,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:14:59,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:14:59,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:14:59,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:14:59,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:14:59,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:14:59,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:03,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:03,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:03,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:03,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:15:03,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:15:03,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:04,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:04,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:04,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:04,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 19:15:04,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 19:15:04,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:05,136 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:05,165 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:05,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.733 +2025-10-01 19:15:05,250 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 19:15:05,250 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 19:15:06,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:06,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:06,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:06,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:15:06,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:15:06,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:07,119 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:07,153 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:07,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.317 +2025-10-01 19:15:07,250 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 19:15:07,250 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 19:15:08,927 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:08,951 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:09,027 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=235.533 +2025-10-01 19:15:09,027 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:15:09,027 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:15:09,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:09,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:09,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:09,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:15:09,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:15:09,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:12,240 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:12,274 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:12,366 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.122 +2025-10-01 19:15:12,366 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 19:15:12,366 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 19:15:13,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:13,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:13,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:13,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:15:13,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:15:13,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:13,906 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:13,930 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:14,018 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.320 +2025-10-01 19:15:14,018 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 19:15:14,018 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 19:15:17,295 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:17,315 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:17,391 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.619 +2025-10-01 19:15:17,392 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:15:17,392 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:15:17,681 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:17,708 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:17,800 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.325 +2025-10-01 19:15:17,801 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 19:15:17,801 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 19:15:18,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:18,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:18,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:18,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:15:18,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:15:18,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:20,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:20,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:20,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:20,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:15:20,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:15:20,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:21,199 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:21,224 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:21,301 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.220 +2025-10-01 19:15:21,302 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:15:21,302 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:15:23,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:23,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:23,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:23,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:15:23,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:15:23,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:25,049 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:25,073 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:25,148 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.485 +2025-10-01 19:15:25,149 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:15:25,149 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:15:26,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:26,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:26,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:26,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:15:26,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:15:26,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:27,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:27,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:27,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:27,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:15:27,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:15:27,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:31,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:31,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:31,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:31,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:15:31,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:15:31,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:32,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:32,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:32,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:32,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:15:32,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:15:32,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:33,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:33,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:33,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:33,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:15:33,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:15:33,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:36,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:36,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:36,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:36,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:15:36,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:15:36,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:37,791 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:37,816 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(957, 875, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:37,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.725 +2025-10-01 19:15:37,896 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:15:37,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:15:38,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:38,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:38,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:38,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:15:38,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:15:38,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:39,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:39,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:39,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:39,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:15:39,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:15:39,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:40,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:40,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:40,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:40,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:15:40,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:15:40,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:40,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:40,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:41,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:41,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 19:15:41,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 19:15:41,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:43,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:43,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:43,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:43,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:15:43,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:15:43,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:44,132 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:44,152 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(980, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:44,226 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.036 +2025-10-01 19:15:44,227 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:15:44,227 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:15:44,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:44,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:44,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:44,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:15:44,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:15:44,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:46,559 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:46,586 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:46,660 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.460 +2025-10-01 19:15:46,660 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 19:15:46,660 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 19:15:47,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:47,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:47,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:47,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.216s +2025-10-01 19:15:47,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.216s (avg: 0.216s/image) +2025-10-01 19:15:47,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:48,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:48,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:48,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:48,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:15:48,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:15:48,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:51,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:51,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:52,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:52,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 19:15:52,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 19:15:52,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:52,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:15:52,385 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:15:52,462 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.925 +2025-10-01 19:15:52,462 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:15:52,462 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:15:54,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:54,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:54,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:54,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:15:54,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:15:54,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:55,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:55,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:55,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:55,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:15:55,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:15:55,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:56,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:56,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:56,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:57,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:15:57,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:15:57,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:15:58,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:15:58,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:15:58,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:15:58,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:15:58,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:15:58,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:00,027 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:16:00,067 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:16:00,152 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=19.933 +2025-10-01 19:16:00,152 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 19:16:00,152 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 19:16:01,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:01,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:01,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:01,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:16:01,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:16:01,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:03,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:03,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:03,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:03,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:16:03,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:16:03,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:04,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:04,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:04,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:04,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:16:04,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:16:04,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:05,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:05,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:05,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:05,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:16:05,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:16:05,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:08,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:08,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:08,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:08,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:16:08,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:16:08,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:10,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:10,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:10,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:11,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:16:11,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:16:11,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:15,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:15,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:15,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:15,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 19:16:15,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 19:16:15,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:16,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:16,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:16,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:16,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 19:16:16,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 19:16:16,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:16,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:16,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:16,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:17,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:16:17,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:16:17,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:20,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:20,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:20,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:20,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:16:20,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:16:20,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:24,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:24,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:24,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:24,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:16:24,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:16:24,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:27,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:27,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:27,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:27,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:16:27,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:16:27,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:31,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:31,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:31,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:31,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:16:31,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:16:31,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:31,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:31,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:31,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:31,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:16:31,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:16:31,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:38,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:38,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:38,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:38,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:16:38,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:16:38,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:41,024 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:16:41,049 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:16:41,128 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.282 +2025-10-01 19:16:41,128 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:16:41,128 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:16:44,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:44,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:44,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:44,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:16:44,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:16:44,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:44,683 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:16:44,713 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:16:44,792 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.612 +2025-10-01 19:16:44,792 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:16:44,792 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:16:45,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:45,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:45,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:45,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:16:45,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:16:45,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:48,271 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:16:48,290 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:16:48,365 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.202 +2025-10-01 19:16:48,365 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:16:48,365 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:16:51,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:51,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:51,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:51,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 19:16:51,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 19:16:51,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:52,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:52,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:53,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:53,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:16:53,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:16:53,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:55,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:55,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:55,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:55,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:16:55,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:16:55,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:58,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:58,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:58,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:58,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:16:58,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:16:58,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:58,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:58,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:58,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:58,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:16:58,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:16:58,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:16:59,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:16:59,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:16:59,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:16:59,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:16:59,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:16:59,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:06,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:06,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:06,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:06,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 19:17:06,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 19:17:06,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:07,415 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:17:07,438 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:17:07,521 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.630 +2025-10-01 19:17:07,521 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 19:17:07,522 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:17:08,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:08,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:08,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:08,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:17:08,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:17:08,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:12,251 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:17:12,269 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:17:12,345 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.020 +2025-10-01 19:17:12,345 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:17:12,345 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:17:13,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:13,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:13,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:13,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 19:17:13,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 19:17:13,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:14,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:14,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:14,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:14,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:17:14,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:17:14,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:14,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:14,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:14,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:14,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 19:17:14,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 19:17:14,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:16,067 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:17:16,088 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:17:16,164 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.597 +2025-10-01 19:17:16,165 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:17:16,165 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:17:18,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:18,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:18,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:19,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:17:19,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:17:19,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:20,202 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:17:20,222 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:17:20,296 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.374 +2025-10-01 19:17:20,297 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:17:20,297 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:17:20,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:20,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:21,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:21,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:17:21,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:17:21,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:23,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:23,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:23,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:23,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:17:23,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:17:23,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:29,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:29,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:29,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:30,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:17:30,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:17:30,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:30,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:30,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:30,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:30,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:17:30,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:17:30,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:38,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:38,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:38,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:38,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:17:38,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:17:38,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:38,826 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:17:38,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:17:38,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:17:39,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 19:17:39,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 19:17:39,135 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:17:39,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:39,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:39,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:39,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:17:39,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:17:39,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:42,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:42,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:42,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:42,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:17:42,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:17:42,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:46,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:46,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:46,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:46,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:17:46,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:17:46,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:47,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:47,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:47,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:47,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 19:17:47,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 19:17:47,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:50,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:50,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:50,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:50,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:17:50,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:17:50,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:57,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:57,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:57,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:57,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:17:57,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:17:57,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:17:59,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:17:59,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:17:59,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:17:59,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:17:59,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:17:59,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:03,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:03,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:03,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:03,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:18:03,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:18:03,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:04,698 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:18:04,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:18:04,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:18:04,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 19:18:04,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 19:18:04,991 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:18:06,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:06,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:06,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:06,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:18:06,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:18:06,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:07,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:07,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:07,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:07,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:18:07,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:18:07,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:11,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:11,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:11,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:11,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:18:11,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:18:11,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:12,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:12,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:12,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:12,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:18:12,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:18:12,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:15,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:15,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:15,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:16,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 19:18:16,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 19:18:16,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:19,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:19,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:19,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:19,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:18:19,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:18:19,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:19,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:19,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:20,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:20,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:18:20,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:18:20,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:21,670 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:18:21,709 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:18:21,800 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.939 +2025-10-01 19:18:21,801 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 19:18:21,801 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 19:18:23,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:23,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:23,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:23,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:18:23,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:18:23,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:26,105 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:18:26,127 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:18:26,213 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.817 +2025-10-01 19:18:26,214 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 19:18:26,214 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 19:18:27,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:27,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:27,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:27,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:18:27,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:18:27,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:27,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:27,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:27,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:27,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:18:27,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:18:27,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:29,710 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:18:29,741 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:18:29,831 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.149 +2025-10-01 19:18:29,832 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 19:18:29,832 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 19:18:30,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:30,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:30,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:30,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:18:30,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:18:30,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:36,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:36,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:36,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:37,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:18:37,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:18:37,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:39,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:39,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:39,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:39,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:18:39,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:18:39,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:40,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:40,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:40,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:40,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:18:40,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:18:40,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:40,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:40,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:40,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:40,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:18:40,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:18:40,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:44,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:44,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:44,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:44,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:18:44,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:18:44,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:49,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:49,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:49,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:49,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:18:49,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:18:49,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:53,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:53,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:53,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:53,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:18:53,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:18:53,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:55,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:55,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:55,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:55,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:18:55,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:18:55,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:18:57,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:18:57,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:18:57,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:18:57,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:18:57,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:18:57,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:02,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:02,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:02,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:02,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:19:02,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:19:02,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:06,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:06,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:06,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:07,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:19:07,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:19:07,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:08,041 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:08,066 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:08,148 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.757 +2025-10-01 19:19:08,149 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:19:08,149 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 19:19:08,591 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:08,612 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:08,687 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=171.109 +2025-10-01 19:19:08,687 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:19:08,687 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:19:10,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:10,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:10,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:10,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:19:10,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:19:10,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:11,737 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:11,774 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:11,856 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=196.418 +2025-10-01 19:19:11,856 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:19:11,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:19:15,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:15,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:15,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:15,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 19:19:15,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 19:19:15,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:15,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:15,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:15,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:15,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:19:15,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:19:15,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:15,890 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:15,911 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:15,993 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.156 +2025-10-01 19:19:15,993 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:19:15,993 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 19:19:20,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:20,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:20,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:20,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:19:20,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:19:20,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:22,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:22,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:22,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:22,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:19:22,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:19:22,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:27,122 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:27,149 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:27,239 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.807 +2025-10-01 19:19:27,239 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 19:19:27,239 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 19:19:27,691 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:27,728 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:27,819 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.130 +2025-10-01 19:19:27,819 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 19:19:27,819 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 19:19:31,131 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:31,147 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:31,220 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.826 +2025-10-01 19:19:31,220 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:19:31,220 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 19:19:31,568 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:31,601 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(727, 727, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:31,673 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.827 +2025-10-01 19:19:31,674 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:19:31,674 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 19:19:34,148 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:34,173 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:34,251 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.416 +2025-10-01 19:19:34,252 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:19:34,252 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:19:35,610 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:35,633 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:35,713 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.468 +2025-10-01 19:19:35,714 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:19:35,714 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:19:36,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:36,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:36,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:36,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:19:36,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:19:36,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:38,154 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:38,183 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:38,264 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.449 +2025-10-01 19:19:38,265 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:19:38,265 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:19:41,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:41,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:41,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:42,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:19:42,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:19:42,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:43,550 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:43,575 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:43,657 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.276 +2025-10-01 19:19:43,657 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:19:43,657 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:19:48,836 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:48,863 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:48,947 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.518 +2025-10-01 19:19:48,948 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 19:19:48,948 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:19:50,752 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:19:50,776 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:19:50,867 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=8.904 +2025-10-01 19:19:50,867 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 19:19:50,867 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 19:19:50,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:50,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:50,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:51,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:19:51,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:19:51,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:53,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:53,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:53,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:53,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 19:19:53,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 19:19:53,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:53,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:53,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:53,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:53,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:19:53,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:19:53,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:19:56,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:19:56,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:19:56,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:19:56,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:19:56,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:19:56,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:00,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:00,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:00,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:00,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:20:00,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:20:00,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:00,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:00,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:00,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:01,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:20:01,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:20:01,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:06,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:06,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:06,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:06,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 19:20:06,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 19:20:06,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:07,590 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:20:07,616 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:20:07,696 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.613 +2025-10-01 19:20:07,697 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:20:07,697 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:20:07,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:07,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:07,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:07,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:20:07,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:20:07,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:12,766 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:20:12,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:20:12,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:20:13,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 19:20:13,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 19:20:13,053 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:20:14,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:14,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:14,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:14,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:20:14,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:20:14,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:16,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:16,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:16,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:16,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:20:16,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:20:16,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:16,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:16,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:16,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:16,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:20:16,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:20:16,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:17,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:17,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:17,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:17,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:20:17,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:20:17,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:17,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:17,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:17,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:17,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:20:17,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:20:17,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:20,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:20,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:20,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:21,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 19:20:21,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 19:20:21,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:22,972 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:20:22,996 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:20:23,074 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.332 +2025-10-01 19:20:23,074 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:20:23,074 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:20:23,546 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:20:23,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:20:23,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:20:23,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 19:20:23,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 19:20:23,833 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:20:25,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:25,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:25,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:25,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:20:25,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:20:25,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:26,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:26,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:26,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:26,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:20:26,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:20:26,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:26,497 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:20:26,519 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:20:26,594 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.347 +2025-10-01 19:20:26,594 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 19:20:26,594 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:20:27,828 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:20:27,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:20:27,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:20:28,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 19:20:28,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 19:20:28,113 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:20:29,845 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:20:29,870 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:20:29,944 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=14.353 +2025-10-01 19:20:29,945 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 19:20:29,945 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:20:31,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:31,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:31,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:31,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 19:20:31,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 19:20:31,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:33,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:33,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:33,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:33,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:20:33,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:20:33,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:33,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:33,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:33,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:33,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:20:33,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:20:33,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:34,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:34,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:34,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:34,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:20:34,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:20:34,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:34,355 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:20:34,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:20:34,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:20:34,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 19:20:34,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.131s/image) +2025-10-01 19:20:34,620 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:20:40,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:40,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:40,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:40,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:20:40,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:20:40,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:41,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:41,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:41,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:41,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:20:41,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:20:41,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:42,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:42,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:42,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:42,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:20:42,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:20:42,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:45,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:45,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:45,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:45,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:20:45,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:20:45,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:46,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:46,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:46,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:46,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:20:46,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:20:46,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:51,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:51,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:51,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:51,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 19:20:51,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 19:20:51,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:52,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:52,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:52,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:52,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:20:52,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:20:52,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:55,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:55,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:55,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:55,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:20:55,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:20:55,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:20:56,053 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:20:56,075 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:20:56,161 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.615 +2025-10-01 19:20:56,161 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 19:20:56,161 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 19:20:57,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:20:57,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:20:57,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:20:58,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:20:58,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:20:58,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:00,189 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:21:00,211 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:21:00,292 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.702 +2025-10-01 19:21:00,292 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:21:00,293 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:21:00,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:00,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:00,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:00,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:21:00,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:21:00,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:03,513 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:21:03,540 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:21:03,620 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=7.765 +2025-10-01 19:21:03,621 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:21:03,621 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:21:13,611 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:21:13,636 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:21:13,714 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.096 +2025-10-01 19:21:13,714 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:21:13,714 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:21:17,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:17,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:17,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:18,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:21:18,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:21:18,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:20,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:20,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:20,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:21,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:21:21,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:21:21,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:21,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:21,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:21,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:21,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:21:21,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:21:21,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:23,452 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:21:23,481 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:21:23,558 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.938 +2025-10-01 19:21:23,558 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:21:23,558 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:21:25,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:25,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:25,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:25,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:21:25,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:21:25,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:26,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:26,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:26,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:26,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 19:21:26,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 19:21:26,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:27,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:27,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:27,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:27,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:21:27,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:21:27,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:27,297 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:21:27,311 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:21:27,384 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.685 +2025-10-01 19:21:27,385 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:21:27,385 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 19:21:31,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:31,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:31,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:31,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 19:21:31,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 19:21:31,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:31,472 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:21:31,496 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:21:31,569 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.761 +2025-10-01 19:21:31,569 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:21:31,569 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 19:21:32,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:32,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:32,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:32,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:21:32,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:21:32,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:36,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:36,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:36,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:36,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:21:36,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:21:36,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:39,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:39,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:39,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:39,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:21:39,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:21:39,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:42,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:42,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:42,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:43,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:21:43,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:21:43,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:44,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:44,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:44,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:44,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:21:44,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:21:44,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:52,304 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:21:52,328 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:21:52,409 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.539 +2025-10-01 19:21:52,409 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:21:52,409 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:21:54,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:54,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:54,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:54,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:21:54,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:21:54,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:54,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:54,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:55,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:55,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:21:55,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:21:55,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:55,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:55,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:55,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:55,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:21:55,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:21:55,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:56,021 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:21:56,056 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:21:56,135 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.518 +2025-10-01 19:21:56,135 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:21:56,136 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:21:56,166 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:21:56,189 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:21:56,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.258 +2025-10-01 19:21:56,268 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:21:56,268 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:21:57,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:57,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:57,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:57,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:21:57,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:21:57,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:57,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:57,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:57,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:21:57,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:21:57,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:21:57,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:21:59,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:21:59,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:21:59,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:00,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:22:00,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:22:00,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:00,104 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:22:00,125 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:22:00,202 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.506 +2025-10-01 19:22:00,202 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:22:00,202 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:22:00,239 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:22:00,267 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:22:00,342 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.943 +2025-10-01 19:22:00,343 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:22:00,343 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:22:01,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:01,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:01,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:01,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:22:01,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:22:01,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:02,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:02,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:02,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:02,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:22:02,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:22:02,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:03,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:03,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:03,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:03,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:22:03,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:22:03,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:04,182 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:22:04,208 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:22:04,285 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.041 +2025-10-01 19:22:04,285 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:22:04,285 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:22:04,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:04,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:04,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:04,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:22:04,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:22:04,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:07,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:07,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:07,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:07,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:22:07,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:22:07,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:08,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:08,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:08,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:08,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:22:08,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:22:08,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:09,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:09,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:09,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:09,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:22:09,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:22:09,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:12,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:12,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:12,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:13,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:22:13,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:22:13,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:16,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:16,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:16,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:16,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:22:16,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:22:16,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:17,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:17,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:17,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:17,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:22:17,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:22:17,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:18,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:18,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:19,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:19,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 19:22:19,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 19:22:19,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:21,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:21,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:21,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:21,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:22:21,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:22:21,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:21,890 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:22:21,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:22:21,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:22:22,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 19:22:22,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 19:22:22,178 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:22:23,483 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:22:23,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:22:23,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:22:23,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 19:22:23,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 19:22:23,784 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:22:27,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:27,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:27,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:27,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:22:27,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:22:27,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:28,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:28,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:28,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:29,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:22:29,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:22:29,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:30,510 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:22:30,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:22:30,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:22:30,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 19:22:30,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-01 19:22:30,796 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:22:31,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:31,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:31,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:31,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:22:31,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:22:31,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:31,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:31,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:31,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:31,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:22:31,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:22:31,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:36,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:36,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:36,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:36,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:22:36,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:22:36,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:36,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:36,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:36,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:36,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:22:36,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:22:36,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:37,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:37,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:37,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:37,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:22:37,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:22:37,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:38,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:38,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:38,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:38,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:22:38,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:22:38,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:39,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:39,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:39,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:39,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:22:39,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:22:39,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:40,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:40,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:40,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:41,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:22:41,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:22:41,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:41,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:41,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:41,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:41,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:22:41,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:22:41,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:43,804 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:22:43,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:22:43,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:22:44,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 19:22:44,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 19:22:44,107 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:22:44,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:44,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:44,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:44,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:22:44,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:22:44,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:48,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:48,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:48,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:48,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:22:48,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:22:48,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:50,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:50,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:50,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:50,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 19:22:50,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 19:22:50,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:52,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:52,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:52,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:53,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:22:53,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:22:53,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:53,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:53,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:53,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:53,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 19:22:53,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 19:22:53,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:57,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:57,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:57,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:57,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:22:57,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:22:57,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:58,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:58,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:58,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:22:58,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 19:22:58,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 19:22:58,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:22:59,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:22:59,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:22:59,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:23:00,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:23:00,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:23:00,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:23:01,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:23:01,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:23:01,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:23:01,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 19:23:01,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 19:23:01,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:23:01,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:23:01,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:23:01,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:23:01,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:23:01,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:23:01,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:23:05,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:23:05,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:23:05,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:23:05,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:23:05,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:23:05,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:23:05,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:23:05,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:23:05,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:23:05,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:23:05,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:23:05,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:23:09,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:23:09,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:23:09,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:23:09,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:23:09,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:23:09,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:23:10,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:23:10,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:23:10,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:23:10,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:23:10,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:23:10,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:23:15,914 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:23:15,939 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:23:16,020 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.327 +2025-10-01 19:23:16,021 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:23:16,021 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:23:20,675 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:23:20,702 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:23:20,781 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.832 +2025-10-01 19:23:20,781 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:23:20,781 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:23:24,792 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:23:24,817 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:23:24,898 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.710 +2025-10-01 19:23:24,898 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:23:24,898 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:23:25,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:23:25,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:23:25,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:23:25,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:23:25,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:23:25,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:23:25,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:23:25,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:23:25,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:23:25,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:23:25,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:23:25,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:23:30,627 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:23:30,650 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:23:30,726 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.632 +2025-10-01 19:23:30,727 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:23:30,727 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:23:48,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:23:48,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:23:48,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:23:48,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:23:48,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:23:48,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:23:52,936 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:23:52,970 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:23:53,046 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.514 +2025-10-01 19:23:53,046 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:23:53,046 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:23:53,234 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:23:53,256 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:23:53,333 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.747 +2025-10-01 19:23:53,333 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:23:53,333 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:23:56,599 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:23:56,621 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:23:56,696 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.696 +2025-10-01 19:23:56,696 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:23:56,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:23:59,783 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:23:59,797 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:23:59,874 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.870 +2025-10-01 19:23:59,874 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:23:59,874 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:23:59,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:23:59,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:23:59,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:00,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:24:00,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:24:00,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:05,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:05,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:05,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:05,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:24:05,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:24:05,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:06,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:06,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:06,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:06,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:24:06,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:24:06,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:13,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:13,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:13,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:13,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:24:13,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:24:13,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:24,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:24,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:24,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:24,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:24:24,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:24:24,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:25,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:25,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:25,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:25,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:24:25,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:24:25,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:28,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:28,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:28,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:28,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:24:28,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:24:28,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:31,422 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:24:31,443 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:24:31,523 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.038 +2025-10-01 19:24:31,523 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:24:31,523 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:24:31,946 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:24:31,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:24:31,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:24:32,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 19:24:32,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-01 19:24:32,214 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:24:34,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:34,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:34,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:34,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 19:24:34,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 19:24:34,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:36,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:36,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:36,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:36,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:24:36,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:24:36,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:36,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:24:36,375 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(684, 684, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:24:36,441 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.130 +2025-10-01 19:24:36,442 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 19:24:36,442 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s +2025-10-01 19:24:36,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:36,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:36,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:36,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.125s +2025-10-01 19:24:36,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.125s (avg: 0.125s/image) +2025-10-01 19:24:36,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:39,692 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:24:39,716 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:24:39,792 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.812 +2025-10-01 19:24:39,792 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:24:39,793 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:24:40,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:40,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:40,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:40,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 19:24:40,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 19:24:40,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:41,185 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:24:41,220 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:24:41,297 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.357 +2025-10-01 19:24:41,297 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:24:41,297 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:24:41,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:41,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:41,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:41,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:24:41,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:24:41,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:42,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:42,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:42,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:42,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:24:42,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:24:42,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:45,022 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:24:45,054 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:24:45,131 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.200 +2025-10-01 19:24:45,131 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:24:45,131 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:24:45,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:45,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:45,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:45,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:24:45,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:24:45,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:47,812 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:24:47,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:24:47,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:24:48,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 19:24:48,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 19:24:48,111 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:24:49,338 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:24:49,365 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:24:49,444 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.630 +2025-10-01 19:24:49,445 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:24:49,445 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:24:49,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:49,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:49,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:49,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:24:49,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:24:49,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:50,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:50,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:50,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:50,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:24:50,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:24:50,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:50,728 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:24:50,761 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:24:50,840 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.097 +2025-10-01 19:24:50,841 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:24:50,841 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:24:53,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:53,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:53,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:53,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:24:53,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:24:53,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:53,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:53,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:53,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:53,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:24:53,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:24:53,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:54,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:54,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:54,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:54,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:24:54,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:24:54,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:56,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:56,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:56,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:56,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 19:24:56,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 19:24:56,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:58,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:58,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:58,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:58,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:24:58,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:24:58,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:24:59,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:24:59,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:24:59,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:24:59,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:24:59,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:24:59,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:00,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:00,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:00,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:00,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:25:00,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:25:00,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:00,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:00,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:00,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:01,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:25:01,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:25:01,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:01,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:01,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:01,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:01,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 19:25:01,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 19:25:01,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:04,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:04,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:04,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:04,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:25:04,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:25:04,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:05,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:05,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:05,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:05,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 19:25:05,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 19:25:05,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:05,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:05,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:05,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:05,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:25:05,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:25:05,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:06,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:06,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:06,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:06,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:25:06,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:25:06,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:07,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:07,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:07,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:07,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:25:07,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:25:07,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:08,129 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:25:08,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:25:08,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:25:08,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 19:25:08,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 19:25:08,405 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:25:09,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:09,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:09,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:09,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:25:09,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:25:09,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:10,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:10,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:10,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:11,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:25:11,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:25:11,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:12,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:12,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:12,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:12,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:25:12,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:25:12,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:13,355 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:25:13,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:25:13,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:25:13,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 19:25:13,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 19:25:13,655 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:25:13,847 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:25:13,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:25:13,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:25:14,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 19:25:14,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 19:25:14,126 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:25:14,637 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:25:14,659 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(984, 818, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:25:14,742 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.671 +2025-10-01 19:25:14,742 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 19:25:14,743 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:25:15,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:15,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:15,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:15,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 19:25:15,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 19:25:15,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:18,727 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:25:18,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:25:18,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:25:19,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 19:25:19,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 19:25:19,022 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:25:19,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:19,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:19,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:19,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:25:19,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:25:19,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:19,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:19,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:19,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:19,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:25:19,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:25:19,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:20,260 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:25:20,280 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 802, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:25:20,361 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.000 +2025-10-01 19:25:20,361 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:25:20,361 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:25:23,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:23,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:23,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:23,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:25:23,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:25:23,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:24,174 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:25:24,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:25:24,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:25:24,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 19:25:24,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 19:25:24,473 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:25:25,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:25,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:25,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:25,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:25:25,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:25:25,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:26,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:26,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:26,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:26,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:25:26,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:25:26,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:27,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:27,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:27,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:27,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:25:27,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:25:27,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:30,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:30,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:30,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:30,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:25:30,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:25:30,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:30,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:30,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:31,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:31,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:25:31,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:25:31,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:33,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:33,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:33,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:33,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:25:33,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:25:33,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:33,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:33,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:33,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:34,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:25:34,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:25:34,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:34,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:34,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:34,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:34,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:25:34,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:25:34,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:34,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:34,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:34,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:34,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:25:34,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:25:34,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:35,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:35,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:35,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:36,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:25:36,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:25:36,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:37,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:37,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:37,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:37,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:25:37,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:25:37,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:37,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:37,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:37,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:37,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:25:37,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:25:37,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:40,096 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 19:25:40,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 19:25:40,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 19:25:40,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.408s +2025-10-01 19:25:40,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.408s (avg: 0.136s/image) +2025-10-01 19:25:40,505 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 19:25:41,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:41,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:41,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:41,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:25:41,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:25:41,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:42,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:42,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:42,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:42,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:25:42,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:25:42,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:43,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:43,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:43,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:43,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:25:43,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:25:43,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:44,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:44,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:44,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:44,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:25:44,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:25:44,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:44,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:44,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:44,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:44,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:25:44,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:25:44,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:45,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:45,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:45,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:45,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:25:45,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:25:45,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:45,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:45,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:45,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:45,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:25:45,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:25:45,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:46,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:46,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:46,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:47,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:25:47,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:25:47,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:48,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:48,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:48,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:48,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:25:48,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:25:48,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:49,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:49,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:49,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:49,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:25:49,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:25:49,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:49,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:49,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:49,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:49,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:25:49,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:25:49,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:51,499 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:25:51,540 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:25:51,628 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.836 +2025-10-01 19:25:51,628 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 19:25:51,629 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 19:25:51,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:51,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:51,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:52,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:25:52,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:25:52,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:53,404 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:25:53,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:25:53,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:25:53,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 19:25:53,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 19:25:53,692 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:25:54,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:25:54,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:25:54,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:25:54,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:25:54,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:25:54,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:25:55,655 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:25:55,685 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:25:55,764 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.303 +2025-10-01 19:25:55,765 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:25:55,765 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:25:58,455 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:25:58,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:25:58,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:25:58,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 19:25:58,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 19:25:58,767 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:25:59,834 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:25:59,860 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:25:59,939 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.862 +2025-10-01 19:25:59,939 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:25:59,939 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:26:05,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:26:05,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:26:05,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:26:05,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:26:05,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:26:05,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:26:06,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:26:06,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:26:06,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:26:06,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:26:06,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:26:06,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:26:06,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:26:06,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:26:06,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:26:06,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:26:06,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:26:06,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:26:11,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:26:11,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:26:11,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:26:11,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:26:11,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:26:11,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:26:15,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:26:15,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:26:15,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:26:15,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:26:15,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:26:15,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:26:21,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:26:21,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:26:21,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:26:21,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:26:21,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:26:21,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:26:28,662 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:26:28,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:26:28,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:26:28,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 19:26:28,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 19:26:28,949 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:26:33,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:26:33,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:26:33,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:26:34,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:26:34,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:26:34,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:26:50,599 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:26:50,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:26:50,712 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.939 +2025-10-01 19:26:50,712 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 19:26:50,712 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 19:26:50,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:26:50,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:26:50,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:26:51,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:26:51,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:26:51,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:26:53,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:26:53,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:26:53,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:26:53,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:26:53,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:26:53,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:26:53,973 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:26:54,000 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:26:54,079 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.414 +2025-10-01 19:26:54,079 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:26:54,079 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:26:55,920 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:26:55,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:26:55,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:26:56,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s +2025-10-01 19:26:56,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.156s/image) +2025-10-01 19:26:56,234 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:26:57,410 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:26:57,433 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:26:57,510 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.176 +2025-10-01 19:26:57,510 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:26:57,510 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:26:59,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:26:59,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:26:59,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:26:59,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:26:59,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:26:59,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:05,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:05,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:05,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:05,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:27:05,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:27:05,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:05,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:05,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:05,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:05,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:27:05,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:27:05,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:06,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:06,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:06,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:06,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:27:06,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:27:06,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:08,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:08,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:08,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:09,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:27:09,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:27:09,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:10,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:10,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:10,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:10,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:27:10,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:27:10,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:11,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:11,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:11,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:11,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:27:11,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:27:11,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:15,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:15,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:15,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:16,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:27:16,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:27:16,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:16,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:16,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:16,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:16,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:27:16,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:27:16,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:19,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:19,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:19,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:19,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:27:19,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:27:19,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:23,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:23,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:23,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:23,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:27:23,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:27:23,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:23,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:23,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:23,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:23,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:27:23,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:27:23,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:23,650 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:27:23,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:27:23,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:27:23,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 19:27:23,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 19:27:23,928 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:27:27,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:27,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:27,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:27,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:27:27,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:27:27,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:31,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:31,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:31,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:32,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:27:32,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:27:32,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:32,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:32,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:32,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:32,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 19:27:32,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 19:27:32,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:36,213 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:27:36,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:27:36,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:27:36,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 19:27:36,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 19:27:36,508 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:27:40,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:40,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:40,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:40,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:27:40,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:27:40,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:41,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:41,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:41,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:41,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:27:41,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:27:41,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:46,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:46,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:47,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:47,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:27:47,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:27:47,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:52,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:52,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:52,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:53,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:27:53,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:27:53,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:58,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:27:58,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:27:58,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:27:58,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:27:58,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:27:58,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:27:59,948 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:27:59,973 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:00,051 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.071 +2025-10-01 19:28:00,051 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:28:00,051 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:28:00,351 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:00,378 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:00,453 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.357 +2025-10-01 19:28:00,454 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:28:00,454 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:28:03,968 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:04,003 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:04,080 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.330 +2025-10-01 19:28:04,080 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:28:04,081 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:28:06,091 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:06,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:06,190 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.410 +2025-10-01 19:28:06,190 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:28:06,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:28:07,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:07,105 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:07,181 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.400 +2025-10-01 19:28:07,181 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:28:07,181 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:28:08,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:08,102 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:08,179 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.826 +2025-10-01 19:28:08,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:28:08,180 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:28:09,733 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:09,755 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:09,833 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.267 +2025-10-01 19:28:09,833 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:28:09,834 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:28:11,226 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:11,262 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:11,343 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.617 +2025-10-01 19:28:11,343 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:28:11,344 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:28:11,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:28:11,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:28:11,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:28:11,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:28:11,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:28:11,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:28:17,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:28:17,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:28:17,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:28:17,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:28:17,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:28:17,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:28:17,469 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:17,487 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:17,561 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.387 +2025-10-01 19:28:17,562 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:28:17,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:28:17,772 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:17,798 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:17,879 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.202 +2025-10-01 19:28:17,879 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:28:17,879 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:28:21,263 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:21,286 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:21,369 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.742 +2025-10-01 19:28:21,369 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 19:28:21,369 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 19:28:22,626 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:22,659 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:22,739 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.604 +2025-10-01 19:28:22,739 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:28:22,739 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:28:26,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:28:26,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:28:26,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:28:26,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:28:26,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:28:26,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:28:26,596 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:26,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:26,709 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.474 +2025-10-01 19:28:26,709 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 19:28:26,709 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:28:27,562 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:27,603 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:27,689 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.455 +2025-10-01 19:28:27,690 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 19:28:27,690 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 19:28:30,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:28:30,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:28:30,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:28:31,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 19:28:31,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 19:28:31,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:28:34,523 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:34,548 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:34,623 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.320 +2025-10-01 19:28:34,623 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:28:34,623 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:28:37,771 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:37,804 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:37,881 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.185 +2025-10-01 19:28:37,882 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:28:37,882 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:28:41,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:28:41,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:28:41,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:28:41,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:28:41,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:28:41,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:28:41,300 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:28:41,325 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:28:41,401 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.555 +2025-10-01 19:28:41,401 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:28:41,401 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:28:50,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:28:50,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:28:50,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:28:50,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:28:50,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:28:50,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:28:54,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:28:54,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:28:55,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:28:55,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:28:55,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:28:55,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:28:59,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:28:59,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:28:59,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:28:59,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:28:59,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:28:59,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:01,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:01,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:01,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:01,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:29:01,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:29:01,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:02,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:02,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:02,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:02,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:29:02,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:29:02,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:06,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:06,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:06,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:06,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:29:06,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:29:06,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:10,355 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:29:10,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:29:10,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:29:10,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 19:29:10,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 19:29:10,639 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:29:11,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:11,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:11,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:11,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:29:11,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:29:11,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:13,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:13,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:13,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:13,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:29:13,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:29:13,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:15,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:15,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:15,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:15,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:29:15,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:29:15,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:17,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:17,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:17,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:17,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:29:17,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:29:17,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:17,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:17,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:17,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:17,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:29:17,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:29:17,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:18,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:18,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:18,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:18,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:29:18,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:29:18,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:19,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:19,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:19,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:20,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:29:20,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:29:20,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:22,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:22,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:22,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:22,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:29:22,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:29:22,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:22,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:22,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:22,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:23,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:29:23,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:29:23,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:26,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:26,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:26,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:26,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:29:26,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:29:26,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:26,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:26,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:26,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:27,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:29:27,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:29:27,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:30,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:30,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:30,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:30,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:29:30,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:29:30,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:33,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:33,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:33,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:33,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:29:33,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:29:33,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:34,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:34,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:34,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:35,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:29:35,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:29:35,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:35,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:35,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:35,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:35,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:29:35,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:29:35,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:38,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:38,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:38,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:38,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:29:38,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:29:38,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:39,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:39,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:40,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:40,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:29:40,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:29:40,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:40,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:40,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:40,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:40,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:29:40,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:29:40,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:43,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:43,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:43,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:43,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:29:43,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:29:43,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:44,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:44,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:44,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:44,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:29:44,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:29:44,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:46,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:46,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:46,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:46,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:29:46,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:29:46,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:49,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:49,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:49,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:49,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:29:49,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:29:49,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:52,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:52,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:52,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:52,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:29:52,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:29:52,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:53,785 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:29:53,805 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:29:53,884 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.870 +2025-10-01 19:29:53,885 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:29:53,885 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:29:55,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:55,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:55,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:55,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:29:55,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:29:55,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:56,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:56,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:56,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:56,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:29:56,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:29:56,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:29:57,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:29:57,841 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:29:57,916 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.676 +2025-10-01 19:29:57,916 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:29:57,916 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:29:58,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:29:58,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:29:58,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:29:59,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:29:59,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:29:59,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:01,458 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:30:01,491 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:30:01,568 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=185.693 +2025-10-01 19:30:01,568 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:30:01,568 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:30:02,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:02,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:02,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:02,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:30:02,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:30:02,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:10,309 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:30:10,324 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(686, 601, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:30:10,393 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.206 +2025-10-01 19:30:10,394 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 19:30:10,394 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 19:30:11,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:11,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:11,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:11,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:30:11,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:30:11,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:12,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:12,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:12,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:12,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:30:12,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:30:12,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:14,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:14,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:14,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:15,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:30:15,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:30:15,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:15,420 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:30:15,438 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(776, 756, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:30:15,510 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.872 +2025-10-01 19:30:15,510 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 19:30:15,511 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 19:30:17,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:17,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:17,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:18,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:30:18,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:30:18,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:22,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:22,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:22,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:22,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:30:22,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:30:22,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:27,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:27,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:27,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:27,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:30:27,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:30:27,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:31,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:31,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:31,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:31,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:30:31,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:30:31,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:31,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:31,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:31,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:31,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:30:31,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:30:31,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:35,393 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:30:35,440 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:30:35,520 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.949 +2025-10-01 19:30:35,520 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:30:35,520 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:30:36,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:36,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:36,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:36,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:30:36,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:30:36,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:39,039 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:30:39,065 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:30:39,144 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.885 +2025-10-01 19:30:39,144 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:30:39,144 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:30:40,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:40,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:40,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:40,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:30:40,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:30:40,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:42,572 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:30:42,596 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:30:42,673 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.303 +2025-10-01 19:30:42,673 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:30:42,674 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:30:45,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:45,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:45,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:45,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 19:30:45,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 19:30:45,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:45,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:45,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:45,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:45,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:30:45,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:30:45,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:49,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:49,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:49,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:49,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:30:49,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:30:49,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:51,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:51,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:51,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:51,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:30:51,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:30:51,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:53,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:53,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:53,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:53,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 19:30:53,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 19:30:53,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:54,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:54,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:54,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:54,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:30:54,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:30:54,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:54,282 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:30:54,301 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:30:54,374 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=193.883 +2025-10-01 19:30:54,375 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:30:54,375 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 19:30:57,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:30:57,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:30:57,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:30:57,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 19:30:57,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 19:30:57,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:30:58,415 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:30:58,449 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:30:58,525 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.208 +2025-10-01 19:30:58,526 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:30:58,526 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:30:59,366 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:30:59,399 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:30:59,474 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.647 +2025-10-01 19:30:59,474 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:30:59,474 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:31:02,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:02,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:02,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:02,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:31:02,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:31:02,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:04,275 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:31:04,298 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:31:04,367 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.643 +2025-10-01 19:31:04,367 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 19:31:04,367 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 19:31:04,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:04,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:04,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:04,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:31:04,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:31:04,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:05,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:05,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:05,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:05,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:31:05,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:31:05,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:07,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:07,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:07,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:07,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:31:07,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:31:07,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:08,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:08,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:08,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:08,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:31:08,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:31:08,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:10,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:10,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:10,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:10,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:31:10,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:31:10,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:14,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:14,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:14,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:14,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:31:14,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:31:14,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:15,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:15,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:15,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:16,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:31:16,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:31:16,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:18,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:18,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:18,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:18,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:31:18,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:31:18,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:22,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:22,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:23,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:23,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:31:23,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:31:23,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:24,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:24,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:24,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:24,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:31:24,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:31:24,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:25,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:25,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:25,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:25,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 19:31:25,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 19:31:25,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:26,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:26,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:26,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:27,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:31:27,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:31:27,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:31,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:31,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:31,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:31,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:31:31,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:31:31,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:37,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:37,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:37,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:37,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:31:37,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:31:37,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:41,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:41,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:41,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:42,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:31:42,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:31:42,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:44,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:44,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:44,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:44,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:31:44,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:31:44,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:45,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:45,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:46,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:46,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:31:46,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:31:46,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:46,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:46,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:47,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:47,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:31:47,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:31:47,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:47,935 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:31:47,961 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 601, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:31:48,035 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.176 +2025-10-01 19:31:48,036 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:31:48,036 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:31:50,444 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:31:50,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:31:50,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:31:50,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 19:31:50,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 19:31:50,726 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:31:51,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:51,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:51,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:52,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:31:52,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:31:52,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:52,120 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:31:52,141 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:31:52,216 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=218.628 +2025-10-01 19:31:52,216 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:31:52,216 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:31:52,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:52,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:52,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:52,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:31:52,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:31:52,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:52,887 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:31:52,912 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:31:52,988 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.379 +2025-10-01 19:31:52,988 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:31:52,988 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:31:55,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:55,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:55,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:55,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:31:55,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:31:55,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:56,879 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:31:56,905 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:31:56,980 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.254 +2025-10-01 19:31:56,980 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:31:56,980 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:31:57,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:57,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:57,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:57,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:31:57,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:31:57,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:31:58,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:31:58,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:31:58,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:31:58,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:31:58,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:31:58,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:01,551 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:32:01,588 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:32:01,667 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.582 +2025-10-01 19:32:01,668 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:32:01,668 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:32:02,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:02,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:02,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:02,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:32:02,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:32:02,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:02,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:02,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:02,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:03,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:32:03,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:32:03,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:06,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:06,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:06,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:06,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:32:06,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:32:06,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:07,361 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:32:07,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:32:07,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:32:07,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-01 19:32:07,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-01 19:32:07,629 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:32:13,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:13,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:14,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:14,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 19:32:14,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 19:32:14,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:14,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:14,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:14,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:14,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:32:14,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:32:14,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:14,838 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:32:14,871 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:32:14,950 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.759 +2025-10-01 19:32:14,951 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:32:14,951 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:32:17,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:17,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:17,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:17,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:32:17,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:32:17,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:18,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:18,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:18,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:18,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:32:18,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:32:18,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:22,083 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:32:22,113 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:32:22,194 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.169 +2025-10-01 19:32:22,194 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:32:22,194 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:32:22,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:22,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:22,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:22,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:32:22,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:32:22,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:23,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:23,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:23,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:23,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:32:23,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:32:23,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:27,422 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:32:27,447 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:32:27,524 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.061 +2025-10-01 19:32:27,524 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:32:27,524 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:32:27,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:27,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:27,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:27,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:32:27,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:32:27,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:28,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:28,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:28,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:28,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:32:28,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:32:28,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:33,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:33,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:33,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:33,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:32:33,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:32:33,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:34,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:34,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:34,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:34,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:32:34,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:32:34,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:39,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:39,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:39,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:39,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:32:39,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:32:39,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:47,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:47,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:47,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:47,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:32:47,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:32:47,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:54,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:54,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:54,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:54,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 19:32:54,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 19:32:54,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:56,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:56,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:56,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:56,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:32:56,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:32:56,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:32:57,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:32:57,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:32:57,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:32:57,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:32:57,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:32:57,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:01,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:01,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:02,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:02,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:33:02,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:33:02,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:02,226 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:33:02,246 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:33:02,327 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.013 +2025-10-01 19:33:02,327 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:33:02,327 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:33:02,385 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:33:02,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:33:02,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:33:02,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 19:33:02,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 19:33:02,692 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:33:02,847 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:33:02,860 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:33:02,931 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.028 +2025-10-01 19:33:02,931 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 19:33:02,931 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 19:33:05,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:05,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:05,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:05,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:33:05,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:33:05,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:06,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:06,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:06,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:06,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 19:33:06,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 19:33:06,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:06,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:33:06,509 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:33:06,584 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.477 +2025-10-01 19:33:06,584 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 19:33:06,584 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:33:07,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:07,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:07,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:07,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:33:07,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:33:07,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:07,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:07,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:07,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:07,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:33:07,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:33:07,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:10,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:10,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:10,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:10,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:33:10,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:33:10,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:10,593 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:33:10,622 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:33:10,697 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=19.553 +2025-10-01 19:33:10,698 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:33:10,698 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:33:13,198 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:33:13,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:33:13,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:33:13,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 19:33:13,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 19:33:13,488 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:33:13,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:13,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:13,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:14,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:33:14,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:33:14,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:14,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:14,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:14,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:15,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:33:15,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:33:15,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:18,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:18,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:18,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:18,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:33:18,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:33:18,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:20,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:20,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:20,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:20,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:33:20,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:33:20,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:20,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:20,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:20,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:20,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:33:20,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:33:20,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:26,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:26,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:26,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:26,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:33:26,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:33:26,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:28,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:28,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:28,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:28,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:33:28,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:33:28,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:29,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:29,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:29,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:30,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:33:30,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:33:30,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:31,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:31,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:31,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:31,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:33:31,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:33:31,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:33,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:33,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:34,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:34,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:33:34,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:33:34,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:36,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:36,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:36,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:36,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:33:36,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:33:36,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:36,476 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:33:36,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:33:36,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:33:36,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 19:33:36,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 19:33:36,761 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:33:37,316 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:33:37,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:33:37,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:33:37,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-01 19:33:37,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-01 19:33:37,579 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:33:40,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:40,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:40,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:40,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:33:40,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:33:40,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:40,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:40,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:40,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:41,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 19:33:41,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 19:33:41,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:43,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:43,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:43,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:43,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:33:43,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:33:43,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:44,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:44,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:44,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:44,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:33:44,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:33:44,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:44,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:44,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:44,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:45,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:33:45,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:33:45,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:46,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:46,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:46,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:46,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:33:46,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:33:46,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:46,547 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:33:46,571 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:33:46,648 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.379 +2025-10-01 19:33:46,648 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:33:46,649 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:33:48,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:48,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:48,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:48,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:33:48,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:33:48,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:48,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:48,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:48,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:49,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:33:49,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:33:49,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:49,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:49,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:49,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:49,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:33:49,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:33:49,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:50,369 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:33:50,395 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:33:50,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.254 +2025-10-01 19:33:50,471 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:33:50,471 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:33:52,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:52,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:52,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:52,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:33:52,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:33:52,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:54,182 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:33:54,211 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:33:54,292 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.582 +2025-10-01 19:33:54,292 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:33:54,293 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:33:54,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:54,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:54,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:54,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:33:54,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:33:54,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:55,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:55,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:55,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:55,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:33:55,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:33:55,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:55,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:55,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:55,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:55,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:33:55,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:33:55,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:58,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:58,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:33:58,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:33:58,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:33:58,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:33:58,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:33:59,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:33:59,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:00,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:00,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:34:00,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:34:00,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:01,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:01,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:02,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:02,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:34:02,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:34:02,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:02,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:02,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:02,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:02,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:34:02,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:34:02,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:05,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:05,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:05,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:05,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:34:05,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:34:05,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:08,852 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:34:08,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:34:08,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:34:09,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 19:34:09,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 19:34:09,148 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:34:10,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:10,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:10,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:10,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:34:10,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:34:10,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:14,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:14,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:14,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:14,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:34:14,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:34:14,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:16,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:16,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:16,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:16,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:34:16,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:34:16,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:18,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:18,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:18,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:18,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:34:18,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:34:18,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:20,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:20,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:20,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:20,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:34:20,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:34:20,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:21,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:21,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:21,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:21,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:34:21,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:34:21,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:25,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:25,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:25,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:25,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:34:25,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:34:25,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:25,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:25,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:25,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:25,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:34:25,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:34:25,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:26,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:26,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:26,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:27,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 19:34:27,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 19:34:27,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:27,097 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:34:27,123 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:34:27,197 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.253 +2025-10-01 19:34:27,197 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 19:34:27,197 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 19:34:27,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:27,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:27,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:28,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:34:28,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:34:28,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:30,674 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:34:30,698 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:34:30,775 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.057 +2025-10-01 19:34:30,775 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:34:30,775 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:34:32,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:32,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:32,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:32,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:34:32,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:34:32,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:34,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:34,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:34,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:34,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:34:34,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:34:34,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:34,750 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:34:34,768 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:34:34,846 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.030 +2025-10-01 19:34:34,846 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:34:34,847 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:34:41,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:41,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:41,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:41,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:34:41,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:34:41,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:42,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:42,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:42,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:42,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:34:42,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:34:42,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:46,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:46,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:46,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:46,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:34:46,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:34:46,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:51,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:51,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:51,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:51,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:34:51,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:34:51,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:52,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:52,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:52,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:52,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:34:52,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:34:52,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:56,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:56,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:56,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:56,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:34:56,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:34:56,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:34:59,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:34:59,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:34:59,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:34:59,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:34:59,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:34:59,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:01,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:01,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:01,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:01,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:35:01,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:35:01,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:01,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:01,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:01,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:02,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 19:35:02,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 19:35:02,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:03,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:03,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:03,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:03,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:35:03,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:35:03,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:07,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:07,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:07,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:07,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:35:07,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:35:07,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:08,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:08,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:08,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:09,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:35:09,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:35:09,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:14,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:14,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:14,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:14,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:35:14,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:35:14,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:14,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:14,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:14,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:14,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:35:14,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:35:14,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:21,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:21,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:21,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:21,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:35:21,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:35:21,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:24,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:24,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:24,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:24,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:35:24,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:35:24,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:27,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:27,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:27,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:27,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:35:27,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:35:27,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:27,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:27,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:27,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:27,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:35:27,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:35:27,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:29,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:29,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:29,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:29,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:35:29,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:35:29,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:30,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:30,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:30,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:30,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:35:30,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:35:30,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:32,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:32,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:32,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:32,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:35:32,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:35:32,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:34,326 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:35:34,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:35:34,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:35:34,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 19:35:34,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 19:35:34,614 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:35:38,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:38,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:38,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:38,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:35:38,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:35:38,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:39,075 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:35:39,097 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:35:39,179 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=19.694 +2025-10-01 19:35:39,179 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:35:39,179 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 19:35:41,650 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:35:41,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:35:41,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:35:41,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 19:35:41,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 19:35:41,932 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:35:42,288 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:35:42,312 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:35:42,386 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.761 +2025-10-01 19:35:42,386 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 19:35:42,386 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:35:43,363 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:35:43,382 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:35:43,455 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.299 +2025-10-01 19:35:43,455 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:35:43,456 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 19:35:45,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:45,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:45,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:45,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:35:45,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:35:45,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:47,983 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:35:48,011 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:35:48,097 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.067 +2025-10-01 19:35:48,098 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 19:35:48,098 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 19:35:49,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:49,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:49,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:49,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:35:49,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:35:49,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:49,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:49,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:49,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:50,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:35:50,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:35:50,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:50,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:50,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:50,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:50,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 19:35:50,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 19:35:50,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:51,530 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:35:51,554 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:35:51,634 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.352 +2025-10-01 19:35:51,634 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:35:51,634 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:35:51,658 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:35:51,674 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:35:51,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.358 +2025-10-01 19:35:51,748 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 19:35:51,748 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 19:35:53,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:53,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:53,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:53,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:35:53,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:35:53,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:56,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:56,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:56,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:56,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:35:56,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:35:56,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:57,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:57,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:57,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:57,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:35:57,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:35:57,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:35:59,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:35:59,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:35:59,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:35:59,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:35:59,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:35:59,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:00,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:00,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:00,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:01,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:36:01,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:36:01,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:01,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:01,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:01,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:01,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:36:01,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:36:01,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:08,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:08,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:09,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:09,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:36:09,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:36:09,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:10,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:10,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:10,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:10,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 19:36:10,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 19:36:10,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:14,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:14,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:14,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:14,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:36:14,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:36:14,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:16,698 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:36:16,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:36:16,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:36:17,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 19:36:17,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 19:36:17,004 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:36:19,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:19,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:19,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:19,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:36:19,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:36:19,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:20,038 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:36:20,065 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:36:20,153 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.174 +2025-10-01 19:36:20,153 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 19:36:20,153 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 19:36:25,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:36:25,627 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:36:25,714 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.687 +2025-10-01 19:36:25,714 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 19:36:25,714 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 19:36:26,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:26,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:26,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:26,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:36:26,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:36:26,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:26,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:26,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:26,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:26,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:36:26,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:36:26,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:27,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:27,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:27,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:27,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 19:36:27,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 19:36:27,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:27,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:27,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:27,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:27,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:36:27,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:36:27,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:30,028 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:36:30,056 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:36:30,142 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.785 +2025-10-01 19:36:30,143 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 19:36:30,143 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 19:36:31,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:31,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:31,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:31,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:36:31,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:36:31,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:31,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:31,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:31,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:31,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:36:31,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:36:31,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:32,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:32,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:32,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:32,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:36:32,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:36:32,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:34,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:34,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:34,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:34,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:36:34,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:36:34,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:35,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:35,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:35,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:35,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:36:35,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:36:35,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:40,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:40,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:40,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:40,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:36:40,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:36:40,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:42,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:42,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:42,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:42,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:36:42,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:36:42,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:46,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:46,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:46,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:46,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:36:46,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:36:46,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:47,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:47,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:47,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:47,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:36:47,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:36:47,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:51,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:51,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:51,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:51,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:36:51,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:36:51,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:53,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:53,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:53,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:54,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:36:54,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:36:54,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:56,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:56,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:56,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:56,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:36:56,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:36:56,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:36:57,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:36:57,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:36:57,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:36:57,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 19:36:57,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 19:36:57,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:00,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:00,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:00,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:00,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:37:00,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:37:00,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:03,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:03,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:03,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:03,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:37:03,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:37:03,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:06,205 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:37:06,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:37:06,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:37:06,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 19:37:06,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-01 19:37:06,485 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:37:10,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:10,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:10,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:11,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:37:11,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:37:11,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:12,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:12,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:12,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:12,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:37:12,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:37:12,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:15,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:15,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:15,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:15,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:37:15,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:37:15,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:18,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:18,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:18,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:18,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:37:18,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:37:18,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:18,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:18,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:18,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:18,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:37:18,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:37:18,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:21,177 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:37:21,204 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:37:21,289 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.236 +2025-10-01 19:37:21,289 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 19:37:21,289 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 19:37:22,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:22,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:22,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:22,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:37:22,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:37:22,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:23,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:23,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:23,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:23,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:37:23,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:37:23,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:26,844 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:37:26,870 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(846, 744, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:37:26,948 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.335 +2025-10-01 19:37:26,949 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:37:26,949 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:37:28,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:28,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:28,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:28,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:37:28,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:37:28,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:31,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:31,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:31,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:31,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:37:31,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:37:31,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:32,458 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:37:32,484 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(946, 962, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:37:32,566 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.798 +2025-10-01 19:37:32,566 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:37:32,566 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 19:37:34,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:34,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:34,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:34,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:37:34,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:37:34,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:34,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:37:34,518 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:37:34,593 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.979 +2025-10-01 19:37:34,593 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:37:34,593 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:37:36,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:36,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:36,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:36,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:37:36,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:37:36,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:39,053 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:37:39,085 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:37:39,162 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.091 +2025-10-01 19:37:39,163 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:37:39,163 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:37:39,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:39,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:39,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:40,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:37:40,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:37:40,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:40,231 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:37:40,253 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:37:40,326 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.763 +2025-10-01 19:37:40,326 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:37:40,326 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 19:37:40,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:40,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:40,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:40,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:37:40,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:37:40,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:43,219 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:37:43,241 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:37:43,315 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.719 +2025-10-01 19:37:43,316 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:37:43,316 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:37:43,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:43,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:43,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:43,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 19:37:43,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 19:37:43,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:44,120 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:37:44,142 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:37:44,215 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.305 +2025-10-01 19:37:44,215 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:37:44,215 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 19:37:44,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:44,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:44,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:45,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 19:37:45,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 19:37:45,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:48,102 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:37:48,130 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:37:48,208 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.847 +2025-10-01 19:37:48,208 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:37:48,209 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:37:48,233 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:37:48,253 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:37:48,327 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.320 +2025-10-01 19:37:48,328 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:37:48,328 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:37:50,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:50,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:50,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:50,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:37:50,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:37:50,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:52,348 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:37:52,370 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:37:52,448 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.272 +2025-10-01 19:37:52,449 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:37:52,449 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:37:53,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:53,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:53,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:53,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:37:53,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:37:53,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:56,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:56,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:37:56,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:37:56,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:37:56,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:37:56,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:37:56,676 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:37:56,698 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:37:56,777 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.722 +2025-10-01 19:37:56,777 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:37:56,777 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:37:59,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:37:59,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:00,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:00,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 19:38:00,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 19:38:00,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:03,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:03,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:03,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:03,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:38:03,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:38:03,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:05,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:05,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:05,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:06,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:38:06,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:38:06,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:07,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:07,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:07,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:07,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:38:07,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:38:07,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:10,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:10,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:10,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:10,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:38:10,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:38:10,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:11,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:11,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:11,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:11,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 19:38:11,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 19:38:11,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:14,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:14,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:14,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:14,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:38:14,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:38:14,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:15,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:15,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:15,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:15,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:38:15,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:38:15,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:17,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:17,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:17,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:17,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 19:38:17,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 19:38:17,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:18,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:18,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:18,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:18,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:38:18,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:38:18,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:21,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:21,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:21,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:21,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 19:38:21,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 19:38:21,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:23,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:23,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:23,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:24,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 19:38:24,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 19:38:24,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:26,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:26,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:26,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:26,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:38:26,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:38:26,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:30,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:30,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:30,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:30,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:38:30,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:38:30,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:32,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:32,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:32,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:32,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:38:32,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:38:32,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:35,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:35,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:35,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:35,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:38:35,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:38:35,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:37,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:37,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:37,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:37,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 19:38:37,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 19:38:37,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:37,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:37,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:37,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:37,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:38:37,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:38:37,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:40,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:40,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:40,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:40,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:38:40,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:38:40,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:40,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:40,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:40,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:41,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:38:41,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:38:41,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:45,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:45,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:45,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:45,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 19:38:45,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 19:38:45,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:46,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:46,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:46,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:46,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:38:46,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:38:46,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:48,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:48,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:48,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:48,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:38:48,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:38:48,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:49,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:49,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:49,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:50,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 19:38:50,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 19:38:50,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:53,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:53,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:53,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:53,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:38:53,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:38:53,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:38:53,555 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:38:53,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:38:53,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:38:53,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 19:38:53,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 19:38:53,830 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:38:58,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:38:58,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:38:58,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:38:58,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:38:58,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:38:58,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:02,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:02,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:02,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:02,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:39:02,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:39:02,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:05,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:05,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:05,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:05,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:39:05,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:39:05,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:06,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:06,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:06,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:06,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 19:39:06,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 19:39:06,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:11,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:11,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:11,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:11,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:39:11,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:39:11,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:15,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:15,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:15,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:15,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:39:15,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:39:15,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:18,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:18,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:18,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:19,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:39:19,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:39:19,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:19,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:19,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:19,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:19,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:39:19,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:39:19,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:20,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:20,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:20,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:20,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:39:20,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:39:20,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:23,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:23,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:23,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:23,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:39:23,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:39:23,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:25,306 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:39:25,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:39:25,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:39:25,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 19:39:25,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-01 19:39:25,592 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:39:28,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:28,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:28,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:28,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:39:28,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:39:28,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:30,784 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:39:30,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:39:30,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:39:31,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 19:39:31,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 19:39:31,080 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:39:34,629 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:39:34,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:39:34,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:39:34,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 19:39:34,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 19:39:34,933 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:39:38,196 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:39:38,217 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:39:38,301 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.058 +2025-10-01 19:39:38,301 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 19:39:38,301 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 19:39:39,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:39,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:39,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:39,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:39:39,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:39:39,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:42,438 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:39:42,468 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:39:42,543 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.989 +2025-10-01 19:39:42,543 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:39:42,544 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:39:43,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:43,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:44,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:44,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:39:44,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:39:44,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:46,995 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:39:47,019 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:39:47,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.188 +2025-10-01 19:39:47,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 19:39:47,087 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 19:39:48,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:48,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:48,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:48,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:39:48,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:39:48,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:53,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:53,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:53,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:53,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:39:53,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:39:53,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:39:58,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:39:58,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:39:58,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:39:58,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:39:58,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:39:58,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:03,498 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:40:03,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:40:03,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:40:03,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 19:40:03,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 19:40:03,786 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:40:04,601 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:40:04,637 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:40:04,717 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=199.596 +2025-10-01 19:40:04,717 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:40:04,717 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:40:08,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:08,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:08,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:08,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 19:40:08,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 19:40:08,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:10,305 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:40:10,329 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:40:10,407 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.985 +2025-10-01 19:40:10,407 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:40:10,407 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:40:10,627 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:40:10,666 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:40:10,750 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.968 +2025-10-01 19:40:10,750 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 19:40:10,750 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:40:13,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:13,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:13,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:14,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:40:14,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:40:14,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:14,402 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:40:14,422 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:40:14,494 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.126 +2025-10-01 19:40:14,494 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:40:14,494 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 19:40:14,581 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:40:14,599 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:40:14,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.848 +2025-10-01 19:40:14,669 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 19:40:14,669 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 19:40:16,975 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:40:17,014 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:40:17,094 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=224.576 +2025-10-01 19:40:17,095 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:40:17,095 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:40:18,300 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:40:18,324 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:40:18,404 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.948 +2025-10-01 19:40:18,404 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:40:18,405 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:40:18,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:18,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:18,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:18,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:40:18,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:40:18,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:24,059 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:40:24,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:40:24,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:40:24,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 19:40:24,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 19:40:24,354 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:40:29,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:29,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:29,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:29,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:40:29,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:40:29,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:29,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:29,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:29,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:30,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:40:30,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:40:30,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:33,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:33,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:33,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:33,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:40:33,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:40:33,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:34,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:34,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:34,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:34,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:40:34,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:40:34,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:35,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:35,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:35,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:36,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:40:36,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:40:36,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:38,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:38,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:38,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:38,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:40:38,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:40:38,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:41,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:41,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:41,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:41,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:40:41,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:40:41,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:41,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:41,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:41,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:42,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:40:42,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:40:42,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:42,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:42,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:42,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:42,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 19:40:42,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 19:40:42,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:47,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:47,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:47,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:47,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:40:47,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:40:47,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:48,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:48,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:48,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:48,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:40:48,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:40:48,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:51,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:51,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:51,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:52,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:40:52,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:40:52,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:52,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:52,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:52,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:52,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:40:52,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:40:52,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:40:53,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:40:53,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:40:53,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:40:53,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:40:53,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:40:53,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:01,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:01,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:01,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:01,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:41:01,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:41:01,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:02,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:02,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:02,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:02,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:41:02,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:41:02,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:02,981 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:41:03,003 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:41:03,081 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.977 +2025-10-01 19:41:03,081 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:41:03,081 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:41:03,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:03,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:03,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:03,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:41:03,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:41:03,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:06,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:06,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:06,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:06,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:41:06,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:41:06,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:07,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:07,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:07,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:07,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:41:07,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:41:07,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:08,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:08,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:08,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:08,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:41:08,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:41:08,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:10,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:10,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:10,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:10,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:41:10,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:41:10,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:11,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:11,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:11,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:12,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:41:12,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:41:12,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:15,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:15,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:15,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:15,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:41:15,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:41:15,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:16,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:16,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:16,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:16,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:41:16,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:41:16,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:21,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:21,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:21,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:21,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:41:21,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:41:21,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:21,392 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:41:21,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:41:21,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:41:21,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 19:41:21,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 19:41:21,683 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:41:27,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:27,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:27,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:27,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 19:41:27,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 19:41:27,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:28,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:28,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:28,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:28,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:41:28,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:41:28,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:29,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:29,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:29,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:29,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:41:29,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:41:29,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:33,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:33,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:33,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:33,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:41:33,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:41:33,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:33,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:33,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:33,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:33,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:41:33,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:41:33,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:34,390 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:41:34,431 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:41:34,510 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=168.925 +2025-10-01 19:41:34,511 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:41:34,511 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:41:37,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:37,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:37,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:37,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:41:37,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:41:37,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:40,288 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:41:40,305 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:41:40,380 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.454 +2025-10-01 19:41:40,381 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:41:40,381 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:41:42,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:42,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:42,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:42,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:41:42,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:41:42,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:43,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:43,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:43,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:43,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:41:43,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:41:43,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:44,200 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:41:44,222 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:41:44,296 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.643 +2025-10-01 19:41:44,296 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 19:41:44,296 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 19:41:48,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:48,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:48,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:48,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:41:48,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:41:48,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:50,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:50,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:50,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:50,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:41:50,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:41:50,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:52,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:52,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:52,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:52,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:41:52,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:41:52,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:54,410 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:41:54,449 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:41:54,529 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.232 +2025-10-01 19:41:54,529 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:41:54,529 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:41:57,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:57,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:57,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:57,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:41:57,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:41:57,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:41:57,760 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:41:57,799 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:41:57,879 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.570 +2025-10-01 19:41:57,879 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:41:57,879 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:41:59,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:41:59,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:41:59,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:41:59,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:41:59,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:41:59,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:01,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:01,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:01,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:01,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:42:01,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:42:01,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:01,873 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:42:01,918 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:42:01,999 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.886 +2025-10-01 19:42:01,999 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:42:02,000 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:42:02,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:02,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:02,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:02,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:42:02,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:42:02,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:06,352 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:42:06,391 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:42:06,472 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.080 +2025-10-01 19:42:06,473 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:42:06,473 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:42:07,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:07,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:07,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:07,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:42:07,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:42:07,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:08,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:08,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:08,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:08,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:42:08,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:42:08,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:10,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:10,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:10,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:10,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:42:10,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:42:10,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:12,840 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:42:12,873 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:42:12,954 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.143 +2025-10-01 19:42:12,954 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:42:12,954 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:42:13,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:13,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:13,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:13,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:42:13,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:42:13,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:13,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:13,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:13,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:14,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:42:14,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:42:14,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:14,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:14,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:14,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:14,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:42:14,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:42:14,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:14,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:14,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:14,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:14,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:42:14,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:42:14,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:15,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:15,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:15,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:15,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 19:42:15,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 19:42:15,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:17,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:42:17,804 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:42:17,881 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.425 +2025-10-01 19:42:17,882 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:42:17,882 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:42:18,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:18,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:18,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:18,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:42:18,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:42:18,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:18,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:18,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:18,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:18,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:42:18,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:42:18,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:21,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:21,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:21,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:21,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:42:21,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:42:21,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:22,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:22,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:22,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:22,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 19:42:22,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 19:42:22,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:23,130 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:42:23,153 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:42:23,232 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.964 +2025-10-01 19:42:23,232 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:42:23,232 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:42:23,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:23,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:23,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:23,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:42:23,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:42:23,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:24,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:24,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:24,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:24,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:42:24,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:42:24,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:28,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:28,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:28,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:28,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:42:28,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:42:28,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:33,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:33,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:33,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:33,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:42:33,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:42:33,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:35,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:35,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:35,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:35,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:42:35,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:42:35,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:38,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:38,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:38,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:38,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:42:38,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:42:38,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:39,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:39,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:39,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:39,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:42:39,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:42:39,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:41,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:41,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:41,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:41,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:42:41,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:42:41,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:43,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:43,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:43,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:43,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:42:43,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:42:43,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:44,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:44,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:44,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:44,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:42:44,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:42:44,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:45,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:45,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:45,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:45,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:42:45,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:42:45,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:47,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:47,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:47,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:47,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:42:47,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:42:47,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:47,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:47,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:47,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:48,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:42:48,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:42:48,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:48,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:48,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:48,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:48,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:42:48,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:42:48,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:48,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:48,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:48,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:48,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:42:48,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:42:48,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:49,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:49,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:49,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:50,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:42:50,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:42:50,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:52,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:52,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:52,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:52,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:42:52,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:42:52,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:55,048 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:42:55,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:42:55,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:42:55,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s +2025-10-01 19:42:55,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.157s/image) +2025-10-01 19:42:55,363 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:42:55,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:55,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:55,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:55,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:42:55,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:42:55,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:56,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:56,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:56,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:56,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:42:56,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:42:56,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:58,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:58,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:58,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:58,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:42:58,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:42:58,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:42:59,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:42:59,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:42:59,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:42:59,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 19:42:59,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 19:42:59,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:00,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:00,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:00,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:00,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:43:00,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:43:00,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:01,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:01,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:01,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:01,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:43:01,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:43:01,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:01,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:01,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:01,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:01,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:43:01,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:43:01,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:02,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:02,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:02,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:02,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:43:02,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:43:02,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:02,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:02,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:02,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:02,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:43:02,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:43:02,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:04,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:04,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:04,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:04,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:43:04,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:43:04,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:06,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:06,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:06,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:06,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:43:06,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:43:06,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:07,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:07,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:07,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:07,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:43:07,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:43:07,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:07,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:07,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:08,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:08,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:43:08,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:43:08,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:08,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:08,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:08,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:08,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:43:08,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:43:08,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:08,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:08,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:08,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:08,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:43:08,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:43:08,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:09,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:09,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:09,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:09,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:43:09,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:43:09,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:10,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:10,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:10,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:10,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:43:10,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:43:10,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:12,734 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:43:12,768 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:43:12,850 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.532 +2025-10-01 19:43:12,850 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:43:12,850 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:43:12,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:12,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:13,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:13,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:43:13,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:43:13,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:13,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:13,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:13,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:13,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:43:13,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:43:13,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:14,468 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:43:14,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:43:14,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:43:14,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 19:43:14,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 19:43:14,779 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:43:17,444 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:43:17,472 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:43:17,562 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=19.614 +2025-10-01 19:43:17,563 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 19:43:17,563 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 19:43:18,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:18,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:18,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:18,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:43:18,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:43:18,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:19,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:19,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:19,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:19,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:43:19,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:43:19,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:19,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:19,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:19,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:19,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:43:19,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:43:19,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:19,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:19,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:19,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:19,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:43:19,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:43:19,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:20,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:20,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:20,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:20,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 19:43:20,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 19:43:20,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:22,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:22,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:22,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:22,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:43:22,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:43:22,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:22,827 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:43:22,864 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:43:22,949 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.588 +2025-10-01 19:43:22,949 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 19:43:22,949 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 19:43:23,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:23,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:23,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:23,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:43:23,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:43:23,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:26,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:26,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:26,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:26,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:43:26,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:43:26,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:27,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:27,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:27,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:27,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:43:27,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:43:27,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:35,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:35,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:35,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:35,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:43:35,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:43:35,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:37,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:37,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:37,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:37,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:43:37,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:43:37,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:39,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:39,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:39,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:39,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 19:43:39,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 19:43:39,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:42,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:42,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:42,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:42,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:43:42,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:43:42,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:43,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:43,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:43,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:44,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:43:44,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:43:44,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:44,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:44,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:44,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:44,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:43:44,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:43:44,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:45,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:45,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:45,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:45,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:43:45,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:43:45,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:49,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:49,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:49,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:49,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:43:49,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:43:49,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:49,476 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:43:49,509 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:43:49,596 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=164.052 +2025-10-01 19:43:49,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 19:43:49,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 19:43:49,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:49,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:49,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:49,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:43:49,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:43:49,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:50,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:50,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:50,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:50,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:43:50,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:43:50,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:50,975 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:43:50,997 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:43:51,075 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.552 +2025-10-01 19:43:51,075 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:43:51,076 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:43:54,578 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:43:54,616 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:43:54,705 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.603 +2025-10-01 19:43:54,705 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 19:43:54,705 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 19:43:56,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:56,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:56,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:56,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:43:56,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:43:56,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:56,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:43:56,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:43:56,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:43:57,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:43:57,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:43:57,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:43:59,273 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:43:59,309 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:43:59,401 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.371 +2025-10-01 19:43:59,401 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 19:43:59,401 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 19:44:00,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:00,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:00,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:00,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 19:44:00,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 19:44:00,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:00,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:00,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:00,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:00,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:44:00,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:44:00,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:04,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:04,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:04,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:04,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:44:04,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:44:04,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:07,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:07,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:07,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:07,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 19:44:07,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 19:44:07,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:08,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:08,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:08,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:08,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:44:08,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:44:08,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:14,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:14,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:14,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:14,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:44:14,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:44:14,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:15,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:15,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:15,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:15,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:44:15,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:44:15,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:15,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:15,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:15,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:15,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:44:15,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:44:15,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:20,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:20,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:20,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:20,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:44:20,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:44:20,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:21,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:21,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:21,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:21,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:44:21,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:44:21,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:22,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:22,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:22,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:22,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:44:22,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:44:22,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:23,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:23,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:23,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:23,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:44:23,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:44:23,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:27,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:27,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:27,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:27,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 19:44:27,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 19:44:27,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:27,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:27,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:27,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:28,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:44:28,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:44:28,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:28,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:28,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:28,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:28,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:44:28,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:44:28,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:34,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:34,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:34,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:34,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:44:34,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:44:34,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:34,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:34,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:34,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:34,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:44:34,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:44:34,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:34,932 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:44:34,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:44:34,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:44:35,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 19:44:35,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 19:44:35,205 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:44:40,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:40,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:40,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:40,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:44:40,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:44:40,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:41,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:41,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:41,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:41,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:44:41,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:44:41,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:45,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:45,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:45,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:45,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:44:45,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:44:45,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:45,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:45,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:45,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:46,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:44:46,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:44:46,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:47,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:47,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:47,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:47,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 19:44:47,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 19:44:47,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:48,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:48,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:48,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:48,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:44:48,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:44:48,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:50,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:50,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:50,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:51,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:44:51,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:44:51,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:52,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:52,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:52,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:52,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:44:52,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:44:52,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:52,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:52,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:52,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:52,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 19:44:52,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 19:44:52,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:53,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:53,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:53,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:53,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:44:53,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:44:53,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:53,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:53,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:53,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:53,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 19:44:53,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 19:44:53,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:54,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:54,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:54,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:55,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 19:44:55,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 19:44:55,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:58,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:58,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:58,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:59,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 19:44:59,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 19:44:59,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:44:59,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:44:59,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:44:59,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:44:59,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:44:59,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:44:59,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:01,701 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:45:01,723 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 971, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:45:01,804 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.370 +2025-10-01 19:45:01,805 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:45:01,805 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:45:03,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:03,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:04,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:04,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 19:45:04,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 19:45:04,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:04,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:04,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:04,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:04,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:45:04,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:45:04,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:05,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:05,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:05,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:05,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:45:05,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:45:05,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:06,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:06,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:06,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:06,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:45:06,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:45:06,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:07,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:07,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:07,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:07,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:45:07,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:45:07,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:07,636 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:45:07,659 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 971, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:45:07,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.915 +2025-10-01 19:45:07,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:45:07,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:45:08,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:08,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:08,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:08,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:45:08,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:45:08,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:09,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:09,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:09,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:10,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:45:10,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:45:10,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:10,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:10,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:10,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:10,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:45:10,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:45:10,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:13,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:13,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:13,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:13,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:45:13,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:45:13,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:15,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:15,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:15,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:16,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:45:16,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:45:16,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:17,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:17,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:17,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:17,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:45:17,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:45:17,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:19,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:19,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:19,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:19,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:45:19,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:45:19,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:20,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:20,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:20,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:20,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:45:20,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:45:20,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:21,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:21,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:21,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:21,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s +2025-10-01 19:45:21,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +2025-10-01 19:45:21,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:24,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:24,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:24,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:25,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:45:25,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:45:25,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:25,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:25,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:25,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:25,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:45:25,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:45:25,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:26,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:26,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:26,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:26,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:45:26,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:45:26,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:29,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:29,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:29,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:29,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:45:29,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:45:29,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:30,917 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:45:30,946 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:45:31,023 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.949 +2025-10-01 19:45:31,023 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:45:31,023 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:45:31,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:31,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:31,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:31,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:45:31,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:45:31,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:32,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:32,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:32,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:32,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:45:32,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:45:32,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:37,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:37,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:37,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:37,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:45:37,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:45:37,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:41,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:41,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:41,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:41,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 19:45:41,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 19:45:41,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:41,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:41,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:41,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:41,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 19:45:41,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 19:45:41,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:42,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:42,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:42,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:42,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:45:42,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:45:42,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:44,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:44,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:44,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:44,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:45:44,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:45:44,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:46,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:46,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:47,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:47,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:45:47,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:45:47,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:47,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:47,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:47,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:47,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:45:47,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:45:47,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:49,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:49,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:49,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:49,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:45:49,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:45:49,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:50,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:50,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:50,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:50,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:45:50,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:45:50,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:52,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:52,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:52,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:52,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:45:52,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:45:52,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:53,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:53,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:53,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:53,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:45:53,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:45:53,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:45:56,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:45:56,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:45:56,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:45:56,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:45:56,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:45:56,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:02,706 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:46:02,732 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:46:02,809 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.572 +2025-10-01 19:46:02,809 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:46:02,810 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:46:03,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:03,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:03,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:03,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 19:46:03,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 19:46:03,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:08,205 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:46:08,250 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:46:08,335 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=8.963 +2025-10-01 19:46:08,336 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 19:46:08,336 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 19:46:08,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:08,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:09,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:09,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 19:46:09,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 19:46:09,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:09,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:09,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:09,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:09,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:46:09,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:46:09,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:12,179 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:46:12,206 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:46:12,289 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.065 +2025-10-01 19:46:12,290 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 19:46:12,290 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:46:14,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:14,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:14,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:14,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:46:14,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:46:14,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:16,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:16,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:16,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:17,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:46:17,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:46:17,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:19,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:19,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:19,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:19,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:46:19,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:46:19,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:20,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:20,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:20,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:21,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 19:46:21,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 19:46:21,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:22,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:22,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:22,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:22,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:46:22,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:46:22,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:23,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:23,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:23,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:24,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:46:24,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:46:24,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:24,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:24,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:24,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:24,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:46:24,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:46:24,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:28,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:28,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:28,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:28,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:46:28,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:46:28,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:30,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:30,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:30,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:30,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:46:30,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:46:30,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:30,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:30,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:30,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:30,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:46:30,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:46:30,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:31,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:31,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:31,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:32,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 19:46:32,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 19:46:32,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:32,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:32,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:32,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:32,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:46:32,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:46:32,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:37,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:37,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:37,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:37,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:46:37,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:46:37,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:38,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:38,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:38,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:38,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-01 19:46:38,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-01 19:46:38,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:38,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:38,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:38,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:38,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:46:38,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:46:38,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:39,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:39,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:39,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:39,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:46:39,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:46:39,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:41,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:41,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:41,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:41,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:46:41,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:46:41,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:42,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:42,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:42,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:43,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 19:46:43,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 19:46:43,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:43,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:43,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:43,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:43,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:46:43,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:46:43,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:45,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:45,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:45,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:46,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:46:46,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:46:46,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:47,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:47,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:47,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:47,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:46:47,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:46:47,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:48,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:48,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:48,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:48,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:46:48,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:46:48,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:48,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:48,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:48,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:48,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:46:48,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:46:48,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:50,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:50,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:50,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:50,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:46:50,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:46:50,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:55,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:55,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:55,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:55,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:46:55,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:46:55,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:55,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:55,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:55,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:55,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:46:55,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:46:55,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:57,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:57,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:57,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:57,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:46:57,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:46:57,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:46:58,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:46:58,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:46:58,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:46:58,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:46:58,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:46:58,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:00,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:00,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:00,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:01,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:47:01,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:47:01,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:01,542 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:47:01,575 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:47:01,657 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.363 +2025-10-01 19:47:01,657 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:47:01,658 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:47:03,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:03,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:03,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:03,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:47:03,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:47:03,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:05,334 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:47:05,363 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:47:05,439 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=182.889 +2025-10-01 19:47:05,439 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:47:05,439 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:47:05,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:05,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:06,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:06,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:47:06,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:47:06,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:06,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:06,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:06,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:06,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 19:47:06,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 19:47:06,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:07,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:07,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:07,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:07,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:47:07,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:47:07,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:12,091 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:47:12,128 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:47:12,211 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=187.029 +2025-10-01 19:47:12,211 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 19:47:12,211 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:47:12,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:12,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:12,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:13,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 19:47:13,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 19:47:13,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:16,190 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:47:16,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:47:16,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:47:16,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.325s +2025-10-01 19:47:16,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.325s (avg: 0.163s/image) +2025-10-01 19:47:16,517 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:47:17,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:17,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:17,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:17,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:47:17,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:47:17,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:19,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:19,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:19,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:19,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:47:19,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:47:19,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:23,761 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:47:23,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:47:23,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:47:24,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 19:47:24,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +2025-10-01 19:47:24,026 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:47:25,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:25,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:25,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:25,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 19:47:25,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 19:47:25,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:26,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:26,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:26,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:26,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:47:26,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:47:26,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:27,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:27,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:27,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:27,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:47:27,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:47:27,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:29,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:29,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:29,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:29,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:47:29,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:47:29,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:29,743 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:47:29,772 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:47:29,864 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.307 +2025-10-01 19:47:29,864 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 19:47:29,864 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 19:47:32,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:32,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:32,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:32,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:47:32,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:47:32,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:32,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:32,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:32,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:32,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:47:32,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:47:32,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:32,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:32,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:33,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:33,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:47:33,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:47:33,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:36,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:36,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:36,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:36,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:47:36,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:47:36,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:36,782 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:47:36,806 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:47:36,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.464 +2025-10-01 19:47:36,896 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 19:47:36,896 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 19:47:37,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:37,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:37,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:37,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:47:37,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:47:37,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:39,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:39,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:39,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:39,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:47:39,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:47:39,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:40,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:40,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:40,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:40,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:47:40,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:47:40,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:42,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:42,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:42,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:42,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:47:42,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:47:42,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:42,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:42,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:42,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:42,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:47:42,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:47:42,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:44,070 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:47:44,102 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:47:44,193 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.122 +2025-10-01 19:47:44,194 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 19:47:44,194 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 19:47:44,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:44,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:44,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:45,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:47:45,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:47:45,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:48,248 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:47:48,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:47:48,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:47:48,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 19:47:48,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 19:47:48,533 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:47:51,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:51,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:51,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:51,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:47:51,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:47:51,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:54,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:54,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:54,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:54,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:47:54,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:47:54,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:55,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:55,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:55,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:55,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:47:55,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:47:55,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:56,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:56,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:56,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:56,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 19:47:56,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 19:47:56,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:47:59,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:47:59,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:47:59,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:47:59,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:47:59,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:47:59,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:00,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:00,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:00,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:00,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:48:00,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:48:00,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:01,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:01,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:01,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:01,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:48:01,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:48:01,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:02,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:02,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:02,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:02,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:48:02,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:48:02,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:06,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:06,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:06,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:06,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:48:06,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:48:06,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:08,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:08,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:08,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:08,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:48:08,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:48:08,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:13,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:13,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:13,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:13,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:48:13,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:48:13,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:15,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:15,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:15,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:15,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:48:15,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:48:15,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:18,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:18,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:18,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:18,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:48:18,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:48:18,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:27,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:27,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:27,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:27,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:48:27,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:48:27,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:30,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:30,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:31,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:31,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 19:48:31,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 19:48:31,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:32,595 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:48:32,618 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:48:32,693 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=232.968 +2025-10-01 19:48:32,694 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:48:32,694 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:48:32,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:32,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:32,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:33,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:48:33,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:48:33,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:38,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:38,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:38,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:38,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:48:38,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:48:38,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:39,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:39,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:39,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:39,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:48:39,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:48:39,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:39,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:39,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:39,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:39,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:48:39,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:48:39,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:44,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:44,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:44,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:44,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:48:44,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:48:44,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:46,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:46,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:46,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:46,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:48:46,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:48:46,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:48,806 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:48:48,844 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:48:48,923 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=222.985 +2025-10-01 19:48:48,924 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:48:48,924 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:48:52,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:52,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:52,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:52,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:48:52,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:48:52,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:53,346 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:48:53,373 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:48:53,461 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.867 +2025-10-01 19:48:53,461 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 19:48:53,461 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 19:48:56,060 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:48:56,081 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:48:56,155 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.628 +2025-10-01 19:48:56,155 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 19:48:56,155 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 19:48:56,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:56,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:56,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:56,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:48:56,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:48:56,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:48:57,481 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:48:57,508 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:48:57,597 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.134 +2025-10-01 19:48:57,597 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 19:48:57,597 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 19:48:57,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:48:57,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:48:57,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:48:57,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:48:57,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:48:57,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:00,674 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:49:00,696 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:49:00,773 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.540 +2025-10-01 19:49:00,773 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:49:00,773 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:49:01,542 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:49:01,570 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(850, 850, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:49:01,649 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.127 +2025-10-01 19:49:01,649 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:49:01,649 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:49:05,328 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:49:05,356 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:49:05,431 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.541 +2025-10-01 19:49:05,431 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:49:05,432 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:49:11,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:11,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:11,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:11,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 19:49:11,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 19:49:11,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:11,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:11,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:11,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:11,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:49:11,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:49:11,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:12,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:12,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:12,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:12,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:49:12,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:49:12,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:13,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:13,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:13,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:13,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 19:49:13,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 19:49:13,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:16,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:16,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:16,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:16,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:49:16,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:49:16,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:17,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:17,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:17,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:17,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:49:17,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:49:17,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:18,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:18,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:18,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:18,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:49:18,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:49:18,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:20,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:20,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:20,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:20,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:49:20,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:49:20,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:21,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:21,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:21,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:21,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:49:21,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:49:21,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:21,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:21,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:21,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:22,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:49:22,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:49:22,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:23,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:23,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:23,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:23,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:49:23,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:49:23,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:28,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:28,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:28,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:28,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:49:28,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:49:28,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:30,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:30,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:30,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:31,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:49:31,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:49:31,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:31,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:31,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:31,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:31,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:49:31,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:49:31,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:32,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:32,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:32,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:32,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:49:32,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:49:32,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:35,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:35,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:35,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:35,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:49:35,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:49:35,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:36,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:36,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:36,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:36,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:49:36,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:49:36,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:37,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:37,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:38,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:38,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:49:38,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:49:38,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:39,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:39,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:39,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:40,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 19:49:40,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 19:49:40,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:41,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:41,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:41,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:42,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:49:42,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:49:42,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:44,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:44,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:44,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:45,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:49:45,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:49:45,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:45,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:45,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:45,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:45,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:49:45,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:49:45,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:48,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:48,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:48,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:48,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:49:48,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:49:48,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:50,764 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:49:50,795 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:49:50,878 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.575 +2025-10-01 19:49:50,879 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 19:49:50,879 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:49:52,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:52,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:52,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:52,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:49:52,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:49:52,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:55,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:49:55,857 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:49:55,935 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.010 +2025-10-01 19:49:55,935 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:49:55,935 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:49:58,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:58,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:58,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:58,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:49:58,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:49:58,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:49:59,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:49:59,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:49:59,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:49:59,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:49:59,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:49:59,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:00,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:50:00,398 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:50:00,478 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.927 +2025-10-01 19:50:00,478 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:50:00,478 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:50:01,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:01,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:01,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:01,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:50:01,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:50:01,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:05,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:05,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:05,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:05,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 19:50:05,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 19:50:05,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:06,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:06,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:06,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:06,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:50:06,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:50:06,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:07,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:07,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:07,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:07,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:50:07,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:50:07,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:10,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:10,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:10,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:10,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:50:10,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:50:10,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:12,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:12,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:12,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:12,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:50:12,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:50:12,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:13,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:13,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:13,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:13,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:50:13,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:50:13,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:14,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:14,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:14,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:14,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:50:14,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:50:14,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:16,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:16,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:16,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:17,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:50:17,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:50:17,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:17,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:17,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:17,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:17,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:50:17,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:50:17,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:18,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:18,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:18,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:18,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:50:18,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:50:18,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:19,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:19,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:19,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:19,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:50:19,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:50:19,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:20,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:20,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:20,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:21,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:50:21,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:50:21,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:21,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:21,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:21,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:21,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:50:21,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:50:21,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:24,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:24,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:24,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:24,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:50:24,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:50:24,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:28,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:28,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:28,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:28,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:50:28,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:50:28,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:28,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:28,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:28,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:28,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:50:28,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:50:28,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:31,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:31,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:31,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:31,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:50:31,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:50:31,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:33,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:33,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:33,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:33,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:50:33,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:50:33,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:36,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:36,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:36,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:36,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:50:36,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:50:36,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:39,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:39,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:39,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:39,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:50:39,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:50:39,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:43,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:43,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:43,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:43,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:50:43,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:50:43,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:44,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:44,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:44,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:44,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:50:44,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:50:44,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:45,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:45,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:45,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:45,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:50:45,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:50:45,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:46,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:50:46,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:50:47,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:50:47,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 19:50:47,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 19:50:47,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:50:52,144 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:50:52,168 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(811, 873, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:50:52,264 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.191 +2025-10-01 19:50:52,264 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 19:50:52,264 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-01 19:50:53,736 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:50:53,763 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:50:53,842 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.641 +2025-10-01 19:50:53,843 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:50:53,843 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:50:57,433 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:50:57,454 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:50:57,534 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.537 +2025-10-01 19:50:57,534 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:50:57,534 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:50:58,054 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:50:58,085 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(955, 935, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:50:58,178 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.910 +2025-10-01 19:50:58,178 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 19:50:58,178 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 19:51:01,420 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:51:01,448 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:51:01,526 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.322 +2025-10-01 19:51:01,526 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:51:01,527 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:51:03,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:03,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:03,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:03,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 19:51:03,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 19:51:03,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:07,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:07,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:07,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:07,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 19:51:07,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 19:51:07,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:09,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:09,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:09,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:09,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:51:09,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:51:09,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:14,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:14,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:14,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:14,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:51:14,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:51:14,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:16,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:16,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:16,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:16,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:51:16,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:51:16,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:16,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:16,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:16,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:17,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:51:17,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:51:17,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:21,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:21,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:21,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:21,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:51:21,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:51:21,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:27,242 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:51:27,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:51:27,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:51:27,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 19:51:27,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 19:51:27,548 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:51:29,129 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:51:29,154 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:51:29,235 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=233.606 +2025-10-01 19:51:29,235 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:51:29,235 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:51:36,109 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:51:36,141 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:51:36,226 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.366 +2025-10-01 19:51:36,226 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 19:51:36,226 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 19:51:40,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:40,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:40,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:40,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:51:40,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:51:40,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:42,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:42,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:42,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:42,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:51:42,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:51:42,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:47,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:47,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:47,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:47,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:51:47,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:51:47,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:48,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:48,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:49,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:49,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:51:49,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:51:49,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:50,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:50,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:50,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:50,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:51:50,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:51:50,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:54,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:54,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:54,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:54,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:51:54,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:51:54,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:51:55,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:51:55,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:51:55,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:51:56,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:51:56,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:51:56,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:00,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:00,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:00,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:00,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 19:52:00,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 19:52:00,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:09,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:09,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:09,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:09,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:52:09,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:52:09,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:14,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:14,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:14,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:14,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:52:14,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:52:14,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:18,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:18,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:18,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:18,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:52:18,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:52:18,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:19,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:19,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:19,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:19,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:52:19,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:52:19,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:22,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:22,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:22,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:23,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:52:23,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:52:23,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:25,274 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:52:25,296 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:52:25,375 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.204 +2025-10-01 19:52:25,375 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:52:25,375 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:52:27,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:27,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:27,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:27,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 19:52:27,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 19:52:27,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:29,853 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:52:29,886 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:52:29,967 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.505 +2025-10-01 19:52:29,968 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:52:29,968 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:52:30,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:30,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:30,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:30,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:52:30,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:52:30,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:32,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:32,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:32,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:33,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:52:33,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:52:33,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:34,294 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:52:34,338 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:52:34,421 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=212.903 +2025-10-01 19:52:34,421 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 19:52:34,421 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 19:52:37,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:37,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:37,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:37,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 19:52:37,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 19:52:37,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:38,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:38,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:38,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:38,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:52:38,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:52:38,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:43,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:43,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:43,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:43,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:52:43,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:52:43,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:44,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:44,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:44,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:44,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:52:44,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:52:44,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:47,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:47,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:47,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:47,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 19:52:47,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 19:52:47,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:49,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:49,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:49,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:49,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:52:49,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:52:49,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:54,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:54,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:54,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:54,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:52:54,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:52:54,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:54,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:54,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:54,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:55,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:52:55,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:52:55,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:55,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:55,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:55,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:55,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 19:52:55,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 19:52:55,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:52:57,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:52:57,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:52:57,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:52:57,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:52:57,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:52:57,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:00,058 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:53:00,084 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:53:00,162 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.962 +2025-10-01 19:53:00,162 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:53:00,162 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:53:02,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:02,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:53:02,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:53:02,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:53:02,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:53:02,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:03,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:03,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:53:03,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:53:03,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:53:03,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:53:03,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:04,034 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:53:04,067 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:53:04,146 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.552 +2025-10-01 19:53:04,146 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:53:04,146 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:53:09,114 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:53:09,150 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:53:09,230 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.829 +2025-10-01 19:53:09,231 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:53:09,231 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:53:19,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:19,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:53:19,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:53:19,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:53:19,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:53:19,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:27,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:27,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:53:27,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:53:27,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:53:27,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:53:27,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:30,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:30,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:53:30,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:53:30,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:53:30,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:53:30,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:35,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:35,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:53:35,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:53:35,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 19:53:35,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 19:53:35,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:35,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:35,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:53:35,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:53:36,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:53:36,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:53:36,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:36,503 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:53:36,541 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:53:36,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.477 +2025-10-01 19:53:36,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 19:53:36,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 19:53:37,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:37,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:53:37,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:53:37,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:53:37,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:53:37,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:43,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:43,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:53:43,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:53:43,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:53:43,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:53:43,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:49,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:49,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:53:49,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:53:49,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:53:49,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:53:49,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:50,395 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:53:50,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:53:50,507 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.983 +2025-10-01 19:53:50,507 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 19:53:50,507 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 19:53:51,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:51,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:53:51,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:53:51,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:53:51,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:53:51,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:55,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:55,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:53:55,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:53:55,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:53:55,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:53:55,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:53:55,827 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:53:55,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:53:55,929 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.451 +2025-10-01 19:53:55,929 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:53:55,930 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:53:59,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:53:59,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:00,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:00,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:54:00,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:54:00,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:01,268 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:54:01,304 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:54:01,390 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.162 +2025-10-01 19:54:01,391 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 19:54:01,391 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 19:54:01,687 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:54:01,721 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(797, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:54:01,802 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.159 +2025-10-01 19:54:01,802 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:54:01,802 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:54:06,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:06,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:06,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:07,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:54:07,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:54:07,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:07,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:07,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:07,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:07,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:54:07,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:54:07,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:08,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:08,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:08,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:08,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:54:08,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:54:08,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:08,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:08,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:08,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:08,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:54:08,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:54:08,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:11,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:11,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:11,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:11,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:54:11,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:54:11,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:13,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:13,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:13,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:13,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:54:13,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:54:13,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:14,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:14,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:14,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:14,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:54:14,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:54:14,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:14,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:14,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:14,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:14,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:54:14,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:54:14,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:14,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:14,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:14,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:15,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:54:15,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:54:15,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:19,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:19,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:19,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:19,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 19:54:19,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 19:54:19,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:19,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:19,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:19,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:19,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:54:19,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:54:19,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:21,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:21,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:21,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:21,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:54:21,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:54:21,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:21,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:21,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:21,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:22,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:54:22,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:54:22,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:25,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:25,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:26,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:26,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:54:26,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:54:26,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:26,960 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:54:26,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:54:27,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:54:27,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 19:54:27,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-01 19:54:27,269 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:54:27,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:27,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:27,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:27,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:54:27,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:54:27,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:31,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:31,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:31,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:31,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:54:31,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:54:31,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:32,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:32,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:32,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:32,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:54:32,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:54:32,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:34,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:34,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:34,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:34,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 19:54:34,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 19:54:34,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:35,152 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:54:35,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:54:35,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:54:35,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 19:54:35,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 19:54:35,447 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:54:36,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:36,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:36,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:36,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:54:36,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:54:36,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:38,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:38,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:38,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:38,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:54:38,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:54:38,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:40,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:40,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:40,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:40,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:54:40,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:54:40,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:41,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:41,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:41,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:41,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:54:41,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:54:41,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:43,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:43,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:43,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:44,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:54:44,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:54:44,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:47,620 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:54:47,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:54:47,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:54:47,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 19:54:47,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-01 19:54:47,929 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:54:48,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:48,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:48,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:48,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:54:48,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:54:48,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:49,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:49,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:49,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:49,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:54:49,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:54:49,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:50,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:50,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:50,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:50,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:54:50,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:54:50,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:52,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:52,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:52,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:53,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:54:53,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:54:53,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:54,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:54,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:54,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:54,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:54:54,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:54:54,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:55,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:55,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:55,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:55,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:54:55,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:54:55,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:56,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:54:56,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:54:56,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:54:56,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:54:56,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:54:56,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:54:57,646 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:54:57,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:54:57,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:54:57,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 19:54:57,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 19:54:57,959 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:55:01,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:01,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:01,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:01,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 19:55:01,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 19:55:01,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:02,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:02,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:02,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:02,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:55:02,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:55:02,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:02,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:02,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:02,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:02,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:55:02,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:55:02,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:03,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:03,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:03,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:03,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:55:03,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:55:03,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:05,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:05,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:05,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:05,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:55:05,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:55:05,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:05,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:05,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:05,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:05,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:55:05,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:55:05,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:07,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:07,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:07,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:07,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:55:07,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:55:07,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:09,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:09,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:09,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:09,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:55:09,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:55:09,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:10,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:10,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:10,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:10,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:55:10,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:55:10,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:12,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:12,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:12,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:12,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:55:12,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:55:12,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:12,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:12,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:12,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:12,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:55:12,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:55:12,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:16,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:16,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:16,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:16,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:55:16,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:55:16,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:17,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:17,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:17,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:18,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:55:18,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:55:18,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:18,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:18,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:18,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:19,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:55:19,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:55:19,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:19,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:19,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:19,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:20,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:55:20,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:55:20,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:23,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:23,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:23,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:23,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:55:23,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:55:23,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:24,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:24,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:24,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:25,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:55:25,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:55:25,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:25,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:25,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:25,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:25,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:55:25,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:55:25,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:27,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:27,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:27,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:27,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:55:27,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:55:27,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:31,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:31,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:31,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:31,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:55:31,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:55:31,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:31,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:31,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:31,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:31,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:55:31,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:55:31,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:34,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:34,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:34,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:35,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:55:35,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:55:35,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:36,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:36,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:36,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:36,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:55:36,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:55:36,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:38,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:38,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:38,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:38,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:55:38,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:55:38,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:40,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:40,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:40,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:40,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:55:40,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:55:40,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:42,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:42,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:42,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:42,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:55:42,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:55:42,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:44,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:44,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:44,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:44,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:55:44,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:55:44,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:45,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:45,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:45,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:45,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:55:45,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:55:45,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:45,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:45,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:45,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:46,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:55:46,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:55:46,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:47,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:47,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:47,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:47,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:55:47,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:55:47,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:49,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:49,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:49,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:49,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:55:49,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:55:49,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:49,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:49,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:49,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:49,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:55:49,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:55:49,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:53,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:53,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:53,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:53,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 19:55:53,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 19:55:53,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:53,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:53,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:53,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:54,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:55:54,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:55:54,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:54,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:54,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:54,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:54,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:55:54,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:55:54,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:56,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:56,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:56,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:56,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:55:56,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:55:56,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:55:57,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:55:57,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:55:58,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:55:58,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:55:58,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:55:58,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:00,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:00,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:00,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:01,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:56:01,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:56:01,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:02,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:02,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:02,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:02,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:56:02,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:56:02,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:05,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:05,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:05,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:05,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:56:05,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:56:05,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:09,337 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:56:09,372 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:56:09,469 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.904 +2025-10-01 19:56:09,470 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 19:56:09,470 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 19:56:11,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:11,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:11,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:11,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:56:11,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:56:11,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:12,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:12,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:12,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:12,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:56:12,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:56:12,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:12,999 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:56:13,028 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:56:13,116 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.842 +2025-10-01 19:56:13,117 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 19:56:13,117 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 19:56:16,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:16,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:16,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:16,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:56:16,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:56:16,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:16,966 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:56:16,993 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:56:17,080 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.375 +2025-10-01 19:56:17,081 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 19:56:17,081 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 19:56:18,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:18,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:18,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:18,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:56:18,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:56:18,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:21,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:21,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:21,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:21,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:56:21,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:56:21,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:24,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:24,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:24,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:24,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:56:24,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:56:24,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:25,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:25,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:25,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:25,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:56:25,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:56:25,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:29,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:29,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:29,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:29,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:56:29,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:56:29,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:29,726 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:56:29,760 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:56:29,841 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.132 +2025-10-01 19:56:29,842 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 19:56:29,842 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 19:56:33,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:33,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:33,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:33,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:56:33,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:56:33,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:34,029 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:56:34,061 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:56:34,140 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.906 +2025-10-01 19:56:34,140 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:56:34,140 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:56:37,671 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:56:37,691 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:56:37,769 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.097 +2025-10-01 19:56:37,769 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 19:56:37,769 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 19:56:43,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:43,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:43,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:43,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:56:43,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:56:43,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:46,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:46,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:46,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:46,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 19:56:46,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 19:56:46,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:49,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:49,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:49,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:49,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:56:49,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:56:49,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:51,434 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:56:51,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:56:51,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:56:51,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 19:56:51,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 19:56:51,726 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:56:55,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:55,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:55,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:55,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:56:55,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:56:55,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:56:56,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:56:56,444 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(621, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:56:56,513 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.358 +2025-10-01 19:56:56,513 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 19:56:56,513 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 19:56:59,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:56:59,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:56:59,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:56:59,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:56:59,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:56:59,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:00,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:00,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:00,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:00,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:57:00,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:57:00,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:01,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:01,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:01,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:01,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:57:01,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:57:01,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:01,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:01,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:01,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:02,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:57:02,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:57:02,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:02,296 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:57:02,318 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(697, 676, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:57:02,388 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.357 +2025-10-01 19:57:02,389 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 19:57:02,389 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 19:57:10,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:10,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:10,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:10,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 19:57:10,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 19:57:10,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:11,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:11,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:11,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:11,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:57:11,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:57:11,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:12,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:12,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:12,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:12,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 19:57:12,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 19:57:12,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:12,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:12,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:13,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:13,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:57:13,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:57:13,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:14,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:14,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:14,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:14,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:57:14,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:57:14,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:14,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:14,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:14,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:14,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 19:57:14,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 19:57:14,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:17,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:17,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:17,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:17,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:57:17,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:57:17,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:18,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:18,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:19,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:19,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:57:19,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:57:19,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:19,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:19,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:19,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:19,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:57:19,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:57:19,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:21,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:21,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:22,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:22,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:57:22,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:57:22,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:22,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:22,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:22,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:22,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 19:57:22,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 19:57:22,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:23,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:23,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:23,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:23,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:57:23,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:57:23,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:26,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:26,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:26,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:26,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 19:57:26,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 19:57:26,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:26,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:26,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:26,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:26,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:57:26,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:57:26,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:31,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:31,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:31,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:31,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 19:57:31,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 19:57:31,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:31,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:31,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:31,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:32,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:57:32,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:57:32,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:32,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:32,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:32,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:32,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:57:32,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:57:32,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:37,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:37,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:37,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:37,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:57:37,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:57:37,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:37,995 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:57:38,029 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:57:38,120 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=177.524 +2025-10-01 19:57:38,120 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 19:57:38,121 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 19:57:38,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:38,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:38,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:38,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 19:57:38,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 19:57:38,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:39,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:39,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:40,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:40,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:57:40,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:57:40,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:42,172 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:57:42,199 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:57:42,285 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.731 +2025-10-01 19:57:42,286 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 19:57:42,286 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 19:57:44,261 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:57:44,305 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:57:44,397 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.399 +2025-10-01 19:57:44,397 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 19:57:44,397 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 19:57:47,006 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:57:47,036 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:57:47,124 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.973 +2025-10-01 19:57:47,124 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 19:57:47,124 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 19:57:47,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:47,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:47,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:47,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:57:47,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:57:47,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:53,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:53,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:53,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:53,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:57:53,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:57:53,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:57,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:57,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:57,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:57,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:57:57,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:57:57,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:59,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:57:59,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:57:59,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:57:59,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:57:59,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:57:59,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:57:59,920 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:57:59,947 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:58:00,026 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.458 +2025-10-01 19:58:00,027 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 19:58:00,027 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 19:58:02,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:02,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:02,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:02,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:58:02,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:58:02,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:03,603 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:58:03,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:58:03,702 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.319 +2025-10-01 19:58:03,702 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:58:03,703 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:58:05,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:05,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:05,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:05,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:58:05,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:58:05,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:06,848 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:58:06,873 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:58:06,952 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.838 +2025-10-01 19:58:06,952 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 19:58:06,952 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 19:58:11,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:11,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:11,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:11,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:58:11,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:58:11,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:12,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:12,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:12,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:12,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 19:58:12,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 19:58:12,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:17,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:17,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:17,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:18,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:58:18,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:58:18,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:21,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:21,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:21,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:21,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:58:21,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:58:21,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:21,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:21,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:21,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:21,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:58:21,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:58:21,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:26,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:26,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:26,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:27,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:58:27,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:58:27,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:27,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:27,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:27,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:27,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:58:27,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:58:27,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:29,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:29,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:29,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:29,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 19:58:29,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 19:58:29,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:30,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:30,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:30,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:31,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:58:31,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:58:31,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:31,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:31,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:31,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:32,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 19:58:32,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 19:58:32,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:35,883 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:58:35,901 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:58:35,970 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.096 +2025-10-01 19:58:35,971 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 19:58:35,971 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 19:58:36,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:36,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:36,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:36,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:58:36,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:58:36,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:36,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:36,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:36,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:36,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:58:36,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:58:36,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:36,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:36,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:36,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:37,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:58:37,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:58:37,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:38,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:38,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:38,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:38,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:58:38,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:58:38,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:39,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:39,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:39,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:39,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 19:58:39,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 19:58:39,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:40,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:40,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:40,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:41,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:58:41,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:58:41,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:43,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:43,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:43,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:43,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 19:58:43,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 19:58:43,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:43,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:43,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:43,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:43,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:58:43,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:58:43,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:44,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:44,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:44,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:44,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 19:58:44,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 19:58:44,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:46,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:46,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:46,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:46,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:58:46,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:58:46,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:50,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:50,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:50,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:50,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:58:50,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:58:50,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:50,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:50,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:50,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:51,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:58:51,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:58:51,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:52,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:52,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:52,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:53,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:58:53,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:58:53,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:55,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:55,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:55,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:55,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 19:58:55,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 19:58:55,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:56,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:58:56,562 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:58:56,648 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.426 +2025-10-01 19:58:56,648 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 19:58:56,649 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 19:58:57,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:57,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:57,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:58,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 19:58:58,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 19:58:58,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:58:58,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:58:58,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:58:58,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:58:58,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 19:58:58,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 19:58:58,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:00,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:00,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:00,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:00,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 19:59:00,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 19:59:00,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:02,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:02,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:02,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:02,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:59:02,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:59:02,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:04,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:04,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:04,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:04,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:59:04,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:59:04,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:05,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:05,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:05,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:05,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:59:05,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:59:05,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:05,714 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:59:05,736 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:59:05,812 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.630 +2025-10-01 19:59:05,812 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:59:05,812 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:59:06,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:06,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:06,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:06,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 19:59:06,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 19:59:06,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:07,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:07,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:07,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:07,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:59:07,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:59:07,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:10,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:10,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:10,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:10,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 19:59:10,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 19:59:10,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:10,987 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:59:11,034 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:59:11,128 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.635 +2025-10-01 19:59:11,128 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 19:59:11,128 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 19:59:11,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:11,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:11,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:11,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 19:59:11,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 19:59:11,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:14,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:14,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:14,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:14,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 19:59:14,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 19:59:14,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:15,734 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:59:15,778 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:59:15,866 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.235 +2025-10-01 19:59:15,867 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 19:59:15,867 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 19:59:19,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:19,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:19,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:19,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 19:59:19,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 19:59:19,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:24,281 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:59:24,304 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:59:24,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.124 +2025-10-01 19:59:24,379 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:59:24,380 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:59:26,245 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:59:26,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:59:26,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:59:26,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 19:59:26,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 19:59:26,548 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:59:27,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:27,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:27,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:27,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 19:59:27,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 19:59:27,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:27,945 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:59:27,966 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:59:28,042 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.180 +2025-10-01 19:59:28,042 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 19:59:28,042 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 19:59:31,445 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 19:59:31,464 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 19:59:31,541 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.564 +2025-10-01 19:59:31,542 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 19:59:31,542 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 19:59:31,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:31,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:31,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:31,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 19:59:31,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 19:59:31,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:32,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:32,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:32,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:32,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 19:59:32,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 19:59:32,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:33,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:33,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:33,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:33,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:59:33,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:59:33,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:33,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:33,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:33,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:33,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:59:33,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:59:33,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:37,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:37,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:37,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:37,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 19:59:37,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 19:59:37,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:38,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:38,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:38,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:38,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 19:59:38,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 19:59:38,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:40,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:40,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:40,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:40,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 19:59:40,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 19:59:40,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:41,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:41,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:41,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:41,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 19:59:41,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 19:59:41,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:45,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:45,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:45,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:45,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:59:45,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:59:45,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:46,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:46,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:46,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:47,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:59:47,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:59:47,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:47,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:47,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:47,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:47,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 19:59:47,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 19:59:47,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:51,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:51,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:51,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:51,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 19:59:51,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 19:59:51,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:51,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:51,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:51,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:51,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 19:59:51,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 19:59:51,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:53,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:53,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:53,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:53,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 19:59:53,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 19:59:53,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:54,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:54,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:54,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:54,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 19:59:54,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 19:59:54,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 19:59:57,285 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 19:59:57,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 19:59:57,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 19:59:57,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-01 19:59:57,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +2025-10-01 19:59:57,597 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 19:59:58,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 19:59:58,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 19:59:58,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 19:59:58,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 19:59:58,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 19:59:58,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:01,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:01,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:01,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:01,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:00:01,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:00:01,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:02,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:02,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:02,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:03,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:00:03,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:00:03,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:04,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:04,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:04,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:04,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:00:04,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:00:04,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:05,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:05,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:05,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:05,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:00:05,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:00:05,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:09,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:09,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:09,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:09,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:00:09,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:00:09,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:09,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:09,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:10,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:10,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 20:00:10,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 20:00:10,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:10,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:10,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:10,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:10,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:00:10,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:00:10,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:13,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:13,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:13,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:13,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:00:13,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:00:13,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:14,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:14,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:14,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:14,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 20:00:14,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 20:00:14,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:16,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:16,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:16,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:16,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:00:16,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:00:16,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:18,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:18,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:18,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:18,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:00:18,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:00:18,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:19,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:19,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:20,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:20,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:00:20,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:00:20,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:20,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:20,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:20,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:20,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:00:20,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:00:20,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:22,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:22,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:22,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:22,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:00:22,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:00:22,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:26,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:26,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:26,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:26,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:00:26,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:00:26,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:27,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:27,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:27,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:27,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:00:27,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:00:27,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:29,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:29,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:29,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:29,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:00:29,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:00:29,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:31,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:31,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:31,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:31,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:00:31,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:00:31,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:32,812 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:00:32,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:00:32,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:00:33,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 20:00:33,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 20:00:33,108 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:00:36,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:36,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:36,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:36,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 20:00:36,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 20:00:36,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:36,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:36,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:37,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:37,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:00:37,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:00:37,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:38,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:38,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:38,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:38,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:00:38,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:00:38,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:39,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:39,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:39,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:39,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:00:39,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:00:39,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:41,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:41,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:41,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:41,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:00:41,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:00:41,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:43,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:43,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:43,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:44,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:00:44,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:00:44,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:45,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:45,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:45,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:45,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 20:00:45,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 20:00:45,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:49,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:49,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:49,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:49,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:00:49,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:00:49,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:51,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:51,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:51,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:51,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:00:51,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:00:51,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:53,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:53,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:53,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:53,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:00:53,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:00:53,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:54,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:54,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:54,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:54,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:00:54,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:00:54,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:55,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:55,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:55,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:55,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:00:55,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:00:55,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:56,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:56,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:56,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:56,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:00:56,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:00:56,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:56,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:56,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:56,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:56,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:00:56,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:00:56,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:00:57,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:00:57,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:00:57,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:00:57,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:00:57,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:00:57,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:00,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:00,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:00,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:00,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:01:00,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:01:00,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:00,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:00,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:00,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:00,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:01:00,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:01:00,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:06,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:06,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:06,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:06,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:01:06,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:01:06,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:06,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:06,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:06,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:06,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:01:06,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:01:06,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:07,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:07,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:07,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:07,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:01:07,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:01:07,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:10,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:10,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:10,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:10,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:01:10,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:01:10,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:14,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:14,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:14,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:14,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:01:14,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:01:14,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:17,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:17,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:17,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:17,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:01:17,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:01:17,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:19,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:19,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:19,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:19,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:01:19,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:01:19,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:23,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:23,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:23,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:23,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:01:23,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:01:23,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:26,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:26,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:26,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:26,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:01:26,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:01:26,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:33,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:33,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:33,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:34,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:01:34,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:01:34,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:40,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:40,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:40,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:40,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:01:40,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:01:40,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:49,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:49,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:49,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:49,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:01:49,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:01:49,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:55,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:55,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:55,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:01:55,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:01:55,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:01:55,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:01:59,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:01:59,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:01:59,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:00,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:02:00,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:02:00,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:01,786 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:02:01,810 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:02:01,897 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.533 +2025-10-01 20:02:01,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 20:02:01,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 20:02:05,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:05,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:05,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:05,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 20:02:05,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 20:02:05,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:06,304 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:02:06,339 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:02:06,418 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.467 +2025-10-01 20:02:06,418 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:02:06,419 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:02:06,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:06,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:06,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:07,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:02:07,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:02:07,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:10,382 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:02:10,404 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:02:10,481 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.674 +2025-10-01 20:02:10,481 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:02:10,481 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:02:12,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:12,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:12,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:12,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:02:12,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:02:12,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:13,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:13,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:13,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:13,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:02:13,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:02:13,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:14,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:14,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:14,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:14,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:02:14,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:02:14,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:16,302 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:02:16,332 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:02:16,412 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.500 +2025-10-01 20:02:16,412 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:02:16,413 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:02:19,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:19,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:19,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:19,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:02:19,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:02:19,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:23,455 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:02:23,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:02:23,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:02:23,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 20:02:23,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 20:02:23,738 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:02:28,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:28,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:28,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:28,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:02:28,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:02:28,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:28,642 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:02:28,659 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:02:28,729 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.262 +2025-10-01 20:02:28,729 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 20:02:28,729 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 20:02:31,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:31,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:31,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:31,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:02:31,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:02:31,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:32,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:32,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:32,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:32,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:02:32,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:02:32,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:33,273 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:02:33,309 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:02:33,388 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.049 +2025-10-01 20:02:33,388 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:02:33,388 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:02:34,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:34,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:34,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:35,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:02:35,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:02:35,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:35,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:35,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:35,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:36,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:02:36,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:02:36,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:37,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:02:37,596 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:02:37,670 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.971 +2025-10-01 20:02:37,670 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 20:02:37,670 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 20:02:38,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:38,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:38,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:38,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:02:38,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:02:38,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:40,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:40,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:40,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:40,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:02:40,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:02:40,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:40,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:40,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:41,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:41,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:02:41,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:02:41,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:41,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:41,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:41,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:41,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:02:41,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:02:41,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:43,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:43,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:43,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:44,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:02:44,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:02:44,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:46,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:46,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:46,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:46,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:02:46,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:02:46,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:48,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:48,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:48,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:48,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:02:48,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:02:48,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:51,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:51,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:51,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:51,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:02:51,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:02:51,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:51,636 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:02:51,668 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:02:51,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.031 +2025-10-01 20:02:51,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:02:51,747 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:02:52,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:52,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:52,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:52,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:02:52,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:02:52,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:53,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:53,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:53,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:53,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:02:53,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:02:53,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:54,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:54,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:54,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:54,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:02:54,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:02:54,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:55,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:02:55,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:02:55,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:02:55,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:02:55,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:02:55,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:02:57,343 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:02:57,363 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:02:57,438 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=172.108 +2025-10-01 20:02:57,438 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:02:57,438 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:02:58,832 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 20:02:58,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 20:02:58,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 20:02:59,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.405s +2025-10-01 20:02:59,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.405s (avg: 0.135s/image) +2025-10-01 20:02:59,239 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 20:03:01,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:01,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:01,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:01,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:03:01,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:03:01,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:01,886 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:03:01,910 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:03:01,988 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.767 +2025-10-01 20:03:01,988 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:03:01,988 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:03:04,633 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:03:04,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:03:04,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:03:04,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-01 20:03:04,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +2025-10-01 20:03:04,898 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:03:06,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:06,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:07,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:07,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:03:07,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:03:07,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:07,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:07,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:07,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:08,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:03:08,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:03:08,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:10,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:10,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:10,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:10,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:03:10,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:03:10,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:12,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:12,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:12,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:13,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:03:13,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:03:13,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:13,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:13,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:13,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:13,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 20:03:13,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 20:03:13,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:15,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:15,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:15,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:15,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:03:15,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:03:15,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:23,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:23,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:23,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:23,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:03:23,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:03:23,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:28,366 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:03:28,394 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:03:28,476 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.811 +2025-10-01 20:03:28,476 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 20:03:28,477 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:03:29,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:29,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:29,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:29,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:03:29,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:03:29,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:29,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:29,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:29,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:30,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +2025-10-01 20:03:30,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +2025-10-01 20:03:30,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:33,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:33,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:33,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:33,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:03:33,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:03:33,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:33,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:33,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:33,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:33,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 20:03:33,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 20:03:33,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:36,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:36,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:36,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:36,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:03:36,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:03:36,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:40,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:40,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:40,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:40,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:03:40,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:03:40,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:41,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:41,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:41,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:41,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:03:41,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:03:41,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:42,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:42,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:42,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:42,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:03:42,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:03:42,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:46,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:46,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:46,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:46,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 20:03:46,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 20:03:46,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:53,460 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:03:53,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:03:53,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:03:53,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 20:03:53,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-01 20:03:53,740 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:03:57,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:57,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:57,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:58,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:03:58,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:03:58,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:03:59,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:03:59,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:03:59,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:03:59,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 20:03:59,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 20:03:59,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:02,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:02,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:02,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:02,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:04:02,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:04:02,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:03,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:03,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:03,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:03,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:04:03,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:04:03,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:03,888 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:04:03,900 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 952, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:04:03,976 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.581 +2025-10-01 20:04:03,976 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:04:03,977 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:04:06,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:06,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:06,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:06,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:04:06,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:04:06,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:09,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:09,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:09,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:10,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:04:10,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:04:10,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:15,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:15,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:15,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:15,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:04:15,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:04:15,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:20,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:20,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:20,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:20,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:04:20,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:04:20,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:20,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:20,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:20,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:21,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:04:21,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:04:21,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:21,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:21,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:21,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:21,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:04:21,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:04:21,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:25,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:25,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:25,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:25,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:04:25,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:04:25,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:27,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:27,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:27,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:27,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:04:27,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:04:27,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:28,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:28,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:28,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:28,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:04:28,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:04:28,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:30,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:30,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:30,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:30,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:04:30,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:04:30,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:30,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:30,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:30,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:30,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:04:30,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:04:30,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:34,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:34,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:34,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:34,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:04:34,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:04:34,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:34,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:34,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:34,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:34,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:04:34,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:04:34,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:34,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:34,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:34,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:34,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:04:34,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:04:34,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:38,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:38,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:38,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:38,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:04:38,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:04:38,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:40,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:40,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:40,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:40,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:04:40,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:04:40,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:41,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:41,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:41,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:41,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:04:41,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:04:41,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:42,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:42,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:42,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:43,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:04:43,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:04:43,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:43,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:43,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:43,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:43,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:04:43,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:04:43,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:46,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:46,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:46,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:46,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:04:46,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:04:46,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:47,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:47,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:47,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:47,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:04:47,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:04:47,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:50,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:50,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:50,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:50,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:04:50,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:04:50,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:52,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:52,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:52,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:53,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:04:53,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:04:53,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:53,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:53,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:53,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:53,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:04:53,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:04:53,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:55,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:55,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:55,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:55,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:04:55,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:04:55,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:04:58,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:04:58,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:04:58,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:04:58,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:04:58,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:04:58,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:01,161 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:05:01,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:05:01,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:05:01,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 20:05:01,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-01 20:05:01,433 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:05:02,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:02,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:03,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:03,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:05:03,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:05:03,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:05,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:05,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:05,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:05,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:05:05,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:05:05,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:07,651 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:05:07,681 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:05:07,767 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.916 +2025-10-01 20:05:07,767 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 20:05:07,767 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 20:05:07,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:07,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:07,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:07,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:05:07,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:05:07,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:11,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:11,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:11,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:11,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:05:11,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:05:11,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:11,663 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:05:11,685 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:05:11,760 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=193.612 +2025-10-01 20:05:11,760 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:05:11,760 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:05:13,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:13,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:13,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:13,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:05:13,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:05:13,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:15,587 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:05:15,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:05:15,705 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=179.873 +2025-10-01 20:05:15,706 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:05:15,706 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:05:15,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:15,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:15,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:15,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 20:05:15,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 20:05:15,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:18,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:18,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:18,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:18,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:05:18,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:05:18,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:23,394 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:05:23,436 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:05:23,517 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.569 +2025-10-01 20:05:23,517 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:05:23,517 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:05:23,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:23,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:23,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:23,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:05:23,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:05:23,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:24,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:24,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:24,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:24,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:05:24,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:05:24,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:24,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:24,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:24,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:25,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 20:05:25,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 20:05:25,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:25,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:25,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:25,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:25,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:05:25,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:05:25,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:27,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:27,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:27,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:28,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:05:28,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:05:28,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:28,293 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:05:28,325 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:05:28,407 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.347 +2025-10-01 20:05:28,407 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 20:05:28,407 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 20:05:32,016 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:05:32,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:05:32,123 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.795 +2025-10-01 20:05:32,123 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:05:32,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:05:33,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:33,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:33,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:34,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:05:34,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:05:34,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:34,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:34,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:34,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:34,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:05:34,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:05:34,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:42,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:42,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:42,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:42,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:05:42,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:05:42,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:44,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:44,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:44,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:44,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:05:44,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:05:44,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:50,784 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:05:50,810 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:05:50,890 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.084 +2025-10-01 20:05:50,890 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:05:50,891 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:05:52,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:52,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:52,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:53,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 20:05:53,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 20:05:53,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:54,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:54,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:54,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:54,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:05:54,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:05:54,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:58,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:58,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:05:58,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:05:58,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:05:58,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:05:58,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:05:59,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:05:59,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:00,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:00,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:06:00,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:06:00,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:01,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:01,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:01,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:01,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:06:01,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:06:01,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:02,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:02,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:02,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:02,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 20:06:02,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 20:06:02,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:04,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:04,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:04,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:04,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:06:04,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:06:04,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:04,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:04,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:04,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:05,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:06:05,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:06:05,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:08,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:08,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:08,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:08,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:06:08,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:06:08,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:09,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:09,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:09,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:10,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:06:10,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:06:10,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:10,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:10,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:10,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:10,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:06:10,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:06:10,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:12,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:12,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:12,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:12,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:06:12,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:06:12,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:13,686 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:06:13,708 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:06:13,788 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=172.364 +2025-10-01 20:06:13,788 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:06:13,788 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:06:13,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:13,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:13,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:13,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:06:13,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:06:13,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:17,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:17,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:18,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:18,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:06:18,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:06:18,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:23,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:23,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:23,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:23,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 20:06:23,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 20:06:23,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:24,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:24,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:24,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:24,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:06:24,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:06:24,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:29,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:29,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:29,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:29,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 20:06:29,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 20:06:29,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:29,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:29,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:29,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:29,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:06:29,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:06:29,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:31,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:31,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:31,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:31,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:06:31,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:06:31,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:32,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:32,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:32,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:32,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:06:32,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:06:32,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:33,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:33,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:33,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:33,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:06:33,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:06:33,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:34,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:34,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:34,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:34,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s +2025-10-01 20:06:34,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +2025-10-01 20:06:34,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:34,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:34,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:34,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:34,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:06:34,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:06:34,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:35,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:35,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:36,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:36,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:06:36,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:06:36,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:38,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:38,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:38,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:38,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 20:06:38,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 20:06:38,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:38,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:38,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:39,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:39,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:06:39,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:06:39,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:42,314 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:06:42,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:06:42,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:06:42,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.334s +2025-10-01 20:06:42,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.334s (avg: 0.167s/image) +2025-10-01 20:06:42,650 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:06:42,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:42,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:42,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:43,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:06:43,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:06:43,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:43,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:43,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:43,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:43,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:06:43,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:06:43,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:46,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:46,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:46,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:47,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 20:06:47,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 20:06:47,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:48,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:48,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:48,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:48,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:06:48,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:06:48,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:50,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:50,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:50,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:50,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:06:50,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:06:50,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:52,526 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:06:52,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:06:52,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:06:52,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 20:06:52,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 20:06:52,829 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:06:53,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:53,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:53,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:53,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:06:53,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:06:53,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:55,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:55,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:55,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:55,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:06:55,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:06:55,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:06:56,211 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:06:56,249 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:06:56,344 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.342 +2025-10-01 20:06:56,344 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 20:06:56,344 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 20:06:58,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:06:58,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:06:59,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:06:59,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:06:59,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:06:59,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:01,114 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:07:01,152 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:07:01,239 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.950 +2025-10-01 20:07:01,240 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 20:07:01,240 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 20:07:02,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:02,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:02,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:02,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:07:02,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:07:02,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:03,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:03,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:03,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:03,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 20:07:03,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 20:07:03,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:04,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:04,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:04,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:04,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:07:04,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:07:04,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:04,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:04,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:04,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:04,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:07:04,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:07:04,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:04,956 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:07:04,993 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:07:05,078 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.073 +2025-10-01 20:07:05,078 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 20:07:05,078 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 20:07:07,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:07,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:07,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:07,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:07:07,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:07:07,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:11,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:11,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:11,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:11,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:07:11,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:07:11,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:11,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:11,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:11,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:11,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:07:11,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:07:11,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:13,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:13,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:13,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:14,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:07:14,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:07:14,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:15,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:15,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:15,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:15,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:07:15,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:07:15,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:15,985 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:07:16,012 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:07:16,090 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.735 +2025-10-01 20:07:16,090 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:07:16,090 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:07:16,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:16,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:16,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:16,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:07:16,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:07:16,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:19,975 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:07:19,996 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:07:20,074 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.909 +2025-10-01 20:07:20,075 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:07:20,075 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:07:24,109 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:07:24,136 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:07:24,214 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.451 +2025-10-01 20:07:24,214 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:07:24,214 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:07:25,313 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:07:25,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:07:25,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:07:25,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 20:07:25,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-01 20:07:25,599 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:07:32,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:32,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:32,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:32,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:07:32,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:07:32,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:34,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:34,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:34,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:34,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:07:34,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:07:34,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:42,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:42,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:42,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:42,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:07:42,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:07:42,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:43,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:43,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:43,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:43,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:07:43,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:07:43,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:45,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:45,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:45,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:45,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:07:45,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:07:45,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:46,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:46,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:46,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:46,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:07:46,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:07:46,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:49,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:49,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:49,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:49,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:07:49,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:07:49,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:50,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:50,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:50,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:50,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:07:50,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:07:50,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:53,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:53,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:53,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:53,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:07:53,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:07:53,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:53,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:53,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:53,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:53,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:07:53,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:07:53,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:55,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:55,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:55,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:55,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:07:55,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:07:55,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:57,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:57,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:57,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:58,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:07:58,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:07:58,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:07:58,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:07:58,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:07:58,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:07:58,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:07:58,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:07:58,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:02,170 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:08:02,207 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:08:02,295 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.034 +2025-10-01 20:08:02,296 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 20:08:02,296 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 20:08:03,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:03,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:03,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:03,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 20:08:03,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 20:08:03,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:03,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:03,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:03,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:04,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:08:04,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:08:04,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:04,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:04,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:04,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:04,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:08:04,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:08:04,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:06,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:06,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:06,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:06,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:08:06,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:08:06,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:06,952 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:08:06,973 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:08:07,049 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.556 +2025-10-01 20:08:07,049 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:08:07,049 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:08:09,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:09,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:09,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:09,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:08:09,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:08:09,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:10,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:10,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:10,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:10,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:08:10,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:08:10,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:11,047 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:08:11,062 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:08:11,137 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.404 +2025-10-01 20:08:11,137 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:08:11,137 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:08:12,979 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:08:12,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:08:13,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:08:13,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 20:08:13,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 20:08:13,274 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:08:16,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:16,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:16,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:16,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:08:16,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:08:16,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:21,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:21,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:21,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:21,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:08:21,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:08:21,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:24,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:24,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:24,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:24,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:08:24,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:08:24,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:27,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:27,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:27,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:27,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:08:27,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:08:27,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:29,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:29,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:29,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:30,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:08:30,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:08:30,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:31,570 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:08:31,585 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:08:31,649 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.213 +2025-10-01 20:08:31,649 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.063s +2025-10-01 20:08:31,650 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.064s +2025-10-01 20:08:33,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:33,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:33,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:33,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:08:33,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:08:33,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:34,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:34,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:34,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:34,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:08:34,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:08:34,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:35,774 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:08:35,793 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:08:35,863 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.260 +2025-10-01 20:08:35,864 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 20:08:35,864 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 20:08:36,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:36,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:36,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:36,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:08:36,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:08:36,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:39,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:39,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:39,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:39,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:08:39,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:08:39,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:40,207 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:08:40,231 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:08:40,306 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.732 +2025-10-01 20:08:40,306 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:08:40,307 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:08:42,036 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:08:42,063 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:08:42,138 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.831 +2025-10-01 20:08:42,139 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:08:42,139 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:08:42,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:42,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:42,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:42,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:08:42,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:08:42,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:44,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:44,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:44,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:44,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 20:08:44,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 20:08:44,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:44,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:44,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:44,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:44,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:08:44,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:08:44,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:49,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:49,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:49,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:49,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:08:49,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:08:49,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:50,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:50,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:50,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:50,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:08:50,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:08:50,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:51,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:51,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:51,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:51,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:08:51,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:08:51,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:52,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:52,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:52,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:52,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 20:08:52,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 20:08:52,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:55,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:55,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:55,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:55,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:08:55,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:08:55,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:56,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:56,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:56,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:56,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:08:56,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:08:56,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:08:56,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:08:56,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:08:56,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:08:57,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:08:57,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:08:57,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:01,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:01,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:01,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:01,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:09:01,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:09:01,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:09,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:09,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:09,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:09,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:09:09,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:09:09,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:09,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:09,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:09,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:09,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:09:09,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:09:09,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:10,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:10,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:10,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:10,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:09:10,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:09:10,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:15,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:15,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:15,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:15,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:09:15,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:09:15,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:19,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:19,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:19,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:19,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:09:19,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:09:19,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:22,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:22,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:22,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:23,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 20:09:23,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 20:09:23,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:23,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:23,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:23,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:23,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:09:23,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:09:23,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:23,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:23,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:23,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:23,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 20:09:23,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 20:09:23,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:24,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:24,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:24,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:24,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:09:24,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:09:24,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:26,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:26,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:26,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:27,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:09:27,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:09:27,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:28,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:28,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:28,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:29,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:09:29,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:09:29,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:29,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:29,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:29,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:29,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:09:29,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:09:29,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:29,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:29,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:29,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:29,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:09:29,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:09:29,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:31,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:31,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:31,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:31,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:09:31,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:09:31,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:32,925 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:09:32,948 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(760, 760, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:09:33,024 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.425 +2025-10-01 20:09:33,025 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:09:33,025 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:09:33,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:33,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:33,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:33,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:09:33,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:09:33,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:34,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:34,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:34,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:34,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:09:34,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:09:34,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:34,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:34,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:34,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:34,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:09:34,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:09:34,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:36,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:36,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:36,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:36,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:09:36,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:09:36,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:36,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:36,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:37,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:37,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:09:37,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:09:37,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:38,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:38,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:38,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:38,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:09:38,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:09:38,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:39,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:39,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:39,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:39,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 20:09:39,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 20:09:39,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:40,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:40,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:40,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:40,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:09:40,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:09:40,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:42,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:42,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:42,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:42,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:09:42,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:09:42,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:43,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:43,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:43,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:43,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:09:43,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:09:43,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:44,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:44,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:44,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:45,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:09:45,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:09:45,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:47,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:47,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:47,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:47,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:09:47,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:09:47,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:50,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:50,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:50,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:50,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:09:50,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:09:50,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:51,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:51,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:51,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:51,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:09:51,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:09:51,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:52,703 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:09:52,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:09:52,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:09:53,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 20:09:53,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +2025-10-01 20:09:53,011 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:09:56,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:56,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:56,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:56,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 20:09:56,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 20:09:56,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:56,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:56,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:56,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:56,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 20:09:56,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 20:09:56,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:56,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:56,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:56,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:57,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:09:57,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:09:57,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:09:57,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:09:57,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:09:57,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:09:57,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:09:57,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:09:57,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:01,360 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:10:01,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:10:01,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:10:01,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 20:10:01,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 20:10:01,666 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:10:02,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:02,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:02,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:02,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:10:02,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:10:02,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:03,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:03,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:03,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:03,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:10:03,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:10:03,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:04,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:04,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:04,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:04,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:10:04,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:10:04,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:04,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:04,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:04,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:04,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 20:10:04,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 20:10:04,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:09,143 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:10:09,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:10:09,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:10:09,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 20:10:09,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 20:10:09,443 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:10:10,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:10,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:10,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:10,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:10:10,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:10:10,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:11,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:11,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:11,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:11,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:10:11,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:10:11,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:14,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:14,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:14,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:14,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:10:14,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:10:14,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:16,106 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:10:16,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:10:16,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:10:16,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 20:10:16,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 20:10:16,404 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:10:18,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:18,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:18,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:18,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:10:18,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:10:18,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:18,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:18,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:18,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:18,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:10:18,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:10:18,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:19,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:19,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:19,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:19,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:10:19,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:10:19,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:21,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:21,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:21,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:21,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:10:21,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:10:21,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:22,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:22,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:22,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:22,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:10:22,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:10:22,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:23,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:23,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:23,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:23,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:10:23,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:10:23,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:25,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:25,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:25,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:25,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 20:10:25,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 20:10:25,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:26,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:26,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:26,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:26,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:10:26,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:10:26,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:27,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:27,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:27,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:27,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:10:27,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:10:27,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:30,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:30,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:30,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:30,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:10:30,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:10:30,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:31,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:31,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:31,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:31,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:10:31,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:10:31,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:31,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:31,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:31,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:31,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:10:31,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:10:31,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:32,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:32,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:32,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:33,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:10:33,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:10:33,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:33,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:33,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:34,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:34,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:10:34,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:10:34,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:34,932 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:10:34,953 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:10:35,034 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.215 +2025-10-01 20:10:35,034 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:10:35,034 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:10:36,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:36,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:36,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:36,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:10:36,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:10:36,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:38,460 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:10:38,481 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:10:38,558 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.857 +2025-10-01 20:10:38,559 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:10:38,559 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:10:39,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:39,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:39,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:39,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:10:39,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:10:39,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:41,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:41,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:41,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:41,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:10:41,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:10:41,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:41,989 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:10:41,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:10:42,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:10:42,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 20:10:42,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 20:10:42,273 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:10:42,539 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:10:42,566 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:10:42,640 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.834 +2025-10-01 20:10:42,640 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 20:10:42,640 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 20:10:45,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:45,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:45,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:45,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:10:45,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:10:45,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:47,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:47,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:47,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:47,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:10:47,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:10:47,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:49,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:49,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:49,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:49,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:10:49,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:10:49,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:56,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:10:56,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:10:56,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:10:56,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:10:56,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:10:56,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:10:58,089 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:10:58,133 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:10:58,212 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.106 +2025-10-01 20:10:58,212 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:10:58,213 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:11:01,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:11:01,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:11:01,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:11:01,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:11:01,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:11:01,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:11:17,843 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:11:17,870 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:11:17,953 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.307 +2025-10-01 20:11:17,953 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:11:17,953 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 20:11:23,796 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:11:23,822 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:11:23,901 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.974 +2025-10-01 20:11:23,901 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:11:23,902 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:11:29,716 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:11:29,741 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:11:29,821 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.069 +2025-10-01 20:11:29,821 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:11:29,822 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:11:35,265 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:11:35,293 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:11:35,374 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=222.844 +2025-10-01 20:11:35,374 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:11:35,375 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:11:35,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:11:35,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:11:35,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:11:35,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:11:35,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:11:35,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:11:42,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:11:42,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:11:42,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:11:43,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:11:43,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:11:43,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:11:45,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:11:45,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:11:45,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:11:45,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:11:45,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:11:45,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:11:48,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:11:48,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:11:48,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:11:48,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:11:48,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:11:48,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:11:55,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:11:55,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:11:55,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:11:55,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:11:55,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:11:55,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:00,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:00,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:00,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:00,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:12:00,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:12:00,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:01,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:01,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:01,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:01,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:12:01,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:12:01,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:01,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:12:02,000 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:12:02,077 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.954 +2025-10-01 20:12:02,077 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:12:02,078 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:12:04,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:04,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:04,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:04,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:12:04,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:12:04,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:06,370 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:12:06,402 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:12:06,479 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.184 +2025-10-01 20:12:06,479 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:12:06,480 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:12:09,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:09,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:09,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:09,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:12:09,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:12:09,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:10,487 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:12:10,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:12:10,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.284 +2025-10-01 20:12:10,587 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 20:12:10,588 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 20:12:16,012 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:12:16,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:12:16,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:12:16,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 20:12:16,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 20:12:16,291 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:12:19,540 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:12:19,567 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:12:19,645 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.902 +2025-10-01 20:12:19,646 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:12:19,646 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:12:21,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:21,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:21,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:21,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:12:21,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:12:21,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:23,240 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:12:23,263 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:12:23,338 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.158 +2025-10-01 20:12:23,338 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:12:23,338 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:12:27,160 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:12:27,184 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:12:27,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=156.419 +2025-10-01 20:12:27,267 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:12:27,267 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 20:12:31,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:31,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:31,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:31,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:12:31,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:12:31,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:31,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:31,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:31,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:31,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:12:31,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:12:31,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:37,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:37,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:38,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:38,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:12:38,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:12:38,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:38,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:38,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:38,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:39,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:12:39,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:12:39,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:39,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:39,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:39,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:39,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:12:39,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:12:39,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:43,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:43,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:43,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:43,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:12:43,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:12:43,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:45,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:45,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:45,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:45,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:12:45,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:12:45,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:49,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:49,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:49,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:49,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 20:12:49,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 20:12:49,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:49,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:49,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:49,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:49,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:12:49,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:12:49,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:52,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:52,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:52,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:52,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 20:12:52,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 20:12:52,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:52,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:52,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:52,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:52,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:12:52,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:12:52,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:52,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:52,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:53,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:53,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:12:53,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:12:53,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:54,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:54,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:54,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:54,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:12:54,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:12:54,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:55,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:55,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:55,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:55,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:12:55,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:12:55,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:58,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:12:58,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:12:58,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:12:58,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:12:58,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:12:58,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:12:58,776 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:12:58,799 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:12:58,876 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.152 +2025-10-01 20:12:58,876 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:12:58,876 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:13:01,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:01,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:01,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:01,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:13:01,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:13:01,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:02,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:02,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:02,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:02,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:13:02,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:13:02,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:02,788 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:13:02,811 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:13:02,888 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.331 +2025-10-01 20:13:02,888 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:13:02,888 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:13:05,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:05,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:05,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:05,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:13:05,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:13:05,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:05,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:05,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:05,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:05,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:13:05,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:13:05,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:06,809 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:13:06,835 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:13:06,911 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.280 +2025-10-01 20:13:06,911 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:13:06,911 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:13:08,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:08,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:08,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:08,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:13:08,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:13:08,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:08,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:08,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:08,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:09,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:13:09,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:13:09,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:09,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:09,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:09,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:09,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:13:09,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:13:09,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:10,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:10,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:10,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:10,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:13:10,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:13:10,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:12,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:12,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:12,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:12,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:13:12,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:13:12,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:12,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:12,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:12,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:12,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:13:12,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:13:12,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:14,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:14,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:14,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:14,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:13:14,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:13:14,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:16,436 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:13:16,462 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1090, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:13:16,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.475 +2025-10-01 20:13:16,546 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 20:13:16,546 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:13:17,757 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:13:17,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:13:17,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:13:18,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 20:13:18,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 20:13:18,031 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:13:18,762 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:13:18,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:13:18,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:13:19,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 20:13:19,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 20:13:19,060 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:13:21,328 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:13:21,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:13:21,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:13:21,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 20:13:21,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +2025-10-01 20:13:21,637 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:13:21,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:21,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:21,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:21,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:13:21,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:13:21,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:22,114 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:13:22,144 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 2370, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:13:22,241 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.728 +2025-10-01 20:13:22,241 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 20:13:22,243 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-01 20:13:24,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:24,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:24,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:24,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:13:24,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:13:24,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:26,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:26,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:26,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:27,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:13:27,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:13:27,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:27,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:27,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:27,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:27,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:13:27,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:13:27,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:28,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:28,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:28,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:28,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:13:28,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:13:28,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:30,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:30,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:30,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:30,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:13:30,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:13:30,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:32,149 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:13:32,172 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:13:32,264 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.434 +2025-10-01 20:13:32,264 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 20:13:32,264 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 20:13:33,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:33,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:33,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:33,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:13:33,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:13:33,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:34,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:34,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:34,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:34,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:13:34,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:13:34,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:34,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:34,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:34,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:34,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:13:34,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:13:34,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:38,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:38,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:38,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:38,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:13:38,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:13:38,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:38,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:38,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:38,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:38,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:13:38,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:13:38,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:39,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:39,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:39,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:39,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 20:13:39,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 20:13:39,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:40,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:40,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:40,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:41,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:13:41,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:13:41,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:42,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:42,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:42,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:42,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:13:42,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:13:42,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:44,944 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:13:44,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:13:45,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:13:45,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 20:13:45,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-01 20:13:45,250 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:13:48,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:48,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:48,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:48,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:13:48,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:13:48,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:50,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:50,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:50,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:50,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 20:13:50,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 20:13:50,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:52,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:52,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:52,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:52,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:13:52,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:13:52,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:52,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:52,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:52,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:52,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:13:52,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:13:52,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:53,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:53,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:53,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:53,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:13:53,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:13:53,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:53,443 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:13:53,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:13:53,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:13:53,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 20:13:53,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 20:13:53,739 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:13:57,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:57,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:57,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:58,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 20:13:58,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 20:13:58,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:13:58,426 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:13:58,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:13:58,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:13:58,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 20:13:58,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 20:13:58,717 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:13:58,891 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:13:58,908 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:13:58,982 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.209 +2025-10-01 20:13:58,982 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 20:13:58,982 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 20:13:59,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:13:59,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:13:59,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:13:59,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:13:59,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:13:59,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:00,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:00,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:00,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:00,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:14:00,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:14:00,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:02,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:02,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:02,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:02,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:14:02,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:14:02,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:02,528 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:14:02,548 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:14:02,624 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.527 +2025-10-01 20:14:02,624 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:14:02,624 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:14:06,325 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:14:06,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:14:06,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:14:06,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 20:14:06,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +2025-10-01 20:14:06,633 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:14:06,862 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:14:06,882 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:14:06,957 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.430 +2025-10-01 20:14:06,957 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:14:06,957 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:14:10,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:10,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:10,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:10,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:14:10,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:14:10,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:12,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:12,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:12,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:12,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:14:12,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:14:12,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:14,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:14,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:14,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:14,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:14:14,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:14:14,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:14,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:14,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:14,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:14,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:14:14,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:14:14,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:15,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:15,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:15,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:15,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:14:15,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:14:15,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:16,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:16,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:16,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:16,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:14:16,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:14:16,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:18,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:18,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:18,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:19,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:14:19,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:14:19,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:21,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:21,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:21,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:21,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:14:21,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:14:21,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:22,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:22,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:22,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:23,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:14:23,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:14:23,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:23,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:23,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:23,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:23,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 20:14:23,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 20:14:23,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:27,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:27,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:27,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:27,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:14:27,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:14:27,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:28,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:28,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:28,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:28,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:14:28,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:14:28,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:29,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:29,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:29,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:29,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:14:29,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:14:29,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:30,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:30,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:30,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:30,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:14:30,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:14:30,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:32,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:32,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:32,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:32,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:14:32,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:14:32,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:33,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:33,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:33,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:33,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:14:33,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:14:33,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:36,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:36,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:36,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:36,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:14:36,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:14:36,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:37,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:37,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:37,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:37,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:14:37,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:14:37,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:42,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:42,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:42,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:42,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:14:42,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:14:42,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:43,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:43,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:43,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:43,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:14:43,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:14:43,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:47,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:47,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:47,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:48,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 20:14:48,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 20:14:48,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:48,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:48,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:48,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:48,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:14:48,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:14:48,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:49,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:49,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:49,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:49,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:14:49,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:14:49,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:52,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:52,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:52,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:52,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:14:52,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:14:52,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:14:53,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:14:53,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:14:53,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:14:53,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:14:53,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:14:53,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:00,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:00,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:00,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:00,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:15:00,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:15:00,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:04,230 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:15:04,251 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:15:04,328 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.111 +2025-10-01 20:15:04,328 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:15:04,328 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:15:06,225 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:15:06,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:15:06,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:15:06,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 20:15:06,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-01 20:15:06,532 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:15:07,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:07,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:07,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:07,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:15:07,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:15:07,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:08,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:08,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:08,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:08,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:15:08,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:15:08,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:08,641 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:15:08,662 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:15:08,737 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.925 +2025-10-01 20:15:08,737 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:15:08,737 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:15:08,945 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:15:08,966 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(860, 860, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:15:09,045 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.618 +2025-10-01 20:15:09,045 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:15:09,045 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:15:12,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:12,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:12,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:12,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:15:12,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:15:12,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:12,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:12,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:12,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:12,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:15:12,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:15:12,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:12,787 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:15:12,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:15:12,882 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.588 +2025-10-01 20:15:12,882 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 20:15:12,882 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 20:15:12,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:12,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:12,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:13,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:15:13,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:15:13,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:13,286 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:15:13,309 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:15:13,384 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=185.618 +2025-10-01 20:15:13,384 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:15:13,385 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:15:16,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:16,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:16,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:16,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:15:16,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:15:16,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:16,922 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:15:16,940 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:15:17,014 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=183.219 +2025-10-01 20:15:17,015 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:15:17,015 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:15:18,439 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:15:18,476 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:15:18,550 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.940 +2025-10-01 20:15:18,551 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:15:18,551 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:15:20,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:20,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:20,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:20,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:15:20,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:15:20,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:23,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:23,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:23,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:23,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:15:23,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:15:23,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:26,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:26,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:26,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:26,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:15:26,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:15:26,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:27,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:27,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:27,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:27,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:15:27,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:15:27,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:31,831 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:15:31,857 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:15:31,935 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.262 +2025-10-01 20:15:31,936 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:15:31,936 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:15:33,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:33,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:33,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:33,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 20:15:33,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 20:15:33,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:36,352 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:15:36,380 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:15:36,454 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.005 +2025-10-01 20:15:36,454 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:15:36,455 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:15:39,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:39,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:39,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:40,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:15:40,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:15:40,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:40,572 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:15:40,604 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:15:40,680 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.862 +2025-10-01 20:15:40,680 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:15:40,680 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:15:45,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:45,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:45,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:45,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:15:45,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:15:45,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:47,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:47,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:47,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:47,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:15:47,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:15:47,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:48,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:48,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:48,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:48,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:15:48,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:15:48,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:55,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:55,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:55,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:55,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:15:55,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:15:55,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:15:58,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:15:58,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:15:58,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:15:58,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:15:58,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:15:58,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:01,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:01,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:01,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:01,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:16:01,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:16:01,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:03,817 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:16:03,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:16:03,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:16:04,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 20:16:04,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 20:16:04,101 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:16:05,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:05,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:05,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:06,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:16:06,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:16:06,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:08,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:08,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:08,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:08,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:16:08,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:16:08,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:09,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:09,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:09,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:09,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:16:09,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:16:09,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:09,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:09,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:09,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:09,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-01 20:16:09,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-01 20:16:09,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:13,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:13,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:14,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:14,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:16:14,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:16:14,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:14,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:14,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:14,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:14,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 20:16:14,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 20:16:14,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:18,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:18,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:18,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:18,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:16:18,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:16:18,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:23,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:23,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:23,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:24,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 20:16:24,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 20:16:24,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:24,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:24,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:24,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:24,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 20:16:24,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 20:16:24,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:30,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:30,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:30,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:30,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:16:30,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:16:30,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:31,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:31,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:31,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:31,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:16:31,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:16:31,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:32,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:32,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:32,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:32,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 20:16:32,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 20:16:32,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:32,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:32,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:32,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:32,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:16:32,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:16:32,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:36,387 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:16:36,411 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:16:36,491 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.419 +2025-10-01 20:16:36,491 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:16:36,491 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:16:38,590 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:16:38,621 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(768, 768, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:16:38,698 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=200.635 +2025-10-01 20:16:38,698 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:16:38,698 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:16:38,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:38,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:39,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:39,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:16:39,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:16:39,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:39,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:39,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:39,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:39,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 20:16:39,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 20:16:39,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:39,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:39,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:39,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:39,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:16:39,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:16:39,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:42,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:16:42,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:16:42,893 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.747 +2025-10-01 20:16:42,893 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:16:42,893 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:16:43,354 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:16:43,376 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(786, 786, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:16:43,453 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.751 +2025-10-01 20:16:43,454 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:16:43,454 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:16:44,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:44,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:44,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:44,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:16:44,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:16:44,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:46,835 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:16:46,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:16:46,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:16:47,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 20:16:47,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 20:16:47,117 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:16:47,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:16:47,576 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(768, 768, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:16:47,652 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.023 +2025-10-01 20:16:47,652 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:16:47,652 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:16:49,052 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:16:49,083 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:16:49,164 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.168 +2025-10-01 20:16:49,164 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:16:49,164 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:16:49,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:49,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:49,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:49,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:16:49,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:16:49,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:49,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:49,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:50,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:50,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:16:50,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:16:50,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:50,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:50,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:50,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:51,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:16:51,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:16:51,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:54,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:54,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:54,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:54,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:16:54,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:16:54,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:55,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:55,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:55,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:55,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:16:55,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:16:55,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:16:55,695 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:16:55,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:16:55,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:16:55,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 20:16:55,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-01 20:16:55,968 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:16:59,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:16:59,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:16:59,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:16:59,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:16:59,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:16:59,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:00,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:00,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:00,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:00,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:17:00,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:17:00,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:00,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:00,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:00,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:01,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:17:01,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:17:01,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:04,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:04,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:04,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:04,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:17:04,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:17:04,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:05,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:05,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:05,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:05,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:17:05,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:17:05,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:07,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:07,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:07,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:07,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:17:07,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:17:07,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:07,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:07,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:07,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:07,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:17:07,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:17:07,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:10,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:10,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:10,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:10,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:17:10,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:17:10,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:12,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:12,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:12,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:12,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:17:12,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:17:12,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:12,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:12,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:13,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:13,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:17:13,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:17:13,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:15,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:15,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:15,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:15,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:17:15,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:17:15,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:17,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:17,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:17,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:17,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:17:17,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:17:17,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:19,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:19,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:19,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:19,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:17:19,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:17:19,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:19,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:19,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:20,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:20,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:17:20,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:17:20,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:21,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:21,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:21,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:21,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:17:21,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:17:21,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:25,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:25,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:25,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:25,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:17:25,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:17:25,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:26,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:26,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:26,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:26,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:17:26,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:17:26,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:26,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:26,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:26,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:26,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:17:26,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:17:26,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:27,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:27,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:27,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:27,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:17:27,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:17:27,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:27,822 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:17:27,855 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:17:27,932 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.534 +2025-10-01 20:17:27,932 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:17:27,932 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:17:29,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:29,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:29,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:29,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:17:29,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:17:29,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:33,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:33,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:33,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:33,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:17:33,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:17:33,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:34,071 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:17:34,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:17:34,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:17:34,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.239s +2025-10-01 20:17:34,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.239s (avg: 0.119s/image) +2025-10-01 20:17:34,312 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:17:36,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:36,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:36,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:36,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:17:36,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:17:36,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:38,502 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:17:38,534 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:17:38,613 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.120 +2025-10-01 20:17:38,613 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:17:38,613 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:17:39,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:39,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:39,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:39,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:17:39,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:17:39,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:41,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:41,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:41,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:41,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:17:41,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:17:41,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:41,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:41,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:41,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:41,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 20:17:41,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 20:17:41,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:42,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:42,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:42,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:42,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:17:42,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:17:42,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:42,849 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:17:42,870 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:17:42,943 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.291 +2025-10-01 20:17:42,943 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 20:17:42,943 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 20:17:45,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:45,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:45,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:46,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:17:46,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:17:46,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:46,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:46,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:46,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:46,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:17:46,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:17:46,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:48,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:48,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:48,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:48,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:17:48,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:17:48,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:49,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:49,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:49,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:49,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 20:17:49,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 20:17:49,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:52,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:52,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:52,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:52,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:17:52,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:17:52,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:56,041 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:17:56,073 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:17:56,165 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.760 +2025-10-01 20:17:56,165 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 20:17:56,165 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 20:17:56,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:56,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:56,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:56,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:17:56,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:17:56,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:56,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:56,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:56,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:56,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:17:56,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:17:56,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:58,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:17:58,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:17:58,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:17:58,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:17:58,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:17:58,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:17:59,811 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:17:59,856 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:17:59,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=167.379 +2025-10-01 20:17:59,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 20:17:59,946 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 20:18:00,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:00,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:00,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:00,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 20:18:00,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 20:18:00,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:02,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:02,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:02,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:03,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:18:03,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:18:03,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:03,855 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:18:03,884 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:18:03,971 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=202.683 +2025-10-01 20:18:03,971 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 20:18:03,971 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 20:18:05,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:05,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:05,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:05,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:18:05,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:18:05,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:06,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:06,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:06,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:06,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:18:06,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:18:06,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:07,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:07,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:07,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:07,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:18:07,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:18:07,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:09,455 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:18:09,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:18:09,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:18:09,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 20:18:09,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 20:18:09,741 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:18:09,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:09,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:09,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:10,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:18:10,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:18:10,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:11,197 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:18:11,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:18:11,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:18:11,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 20:18:11,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 20:18:11,491 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:18:13,256 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:18:13,278 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:18:13,356 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.384 +2025-10-01 20:18:13,356 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:18:13,356 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:18:15,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:15,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:15,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:15,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:18:15,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:18:15,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:17,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:17,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:17,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:17,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:18:17,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:18:17,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:20,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:20,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:20,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:20,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:18:20,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:18:20,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:20,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:20,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:20,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:20,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:18:20,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:18:20,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:21,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:21,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:21,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:21,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:18:21,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:18:21,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:21,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:21,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:21,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:21,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:18:21,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:18:21,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:23,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:23,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:23,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:23,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 20:18:23,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 20:18:23,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:24,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:24,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:24,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:24,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:18:24,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:18:24,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:27,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:27,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:27,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:27,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:18:27,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:18:27,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:28,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:28,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:28,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:28,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:18:28,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:18:28,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:30,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:30,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:30,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:30,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:18:30,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:18:30,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:32,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:32,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:32,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:32,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:18:32,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:18:32,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:33,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:33,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:33,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:33,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:18:33,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:18:33,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:34,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:34,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:34,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:34,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:18:34,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:18:34,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:39,680 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:18:39,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:18:39,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:18:39,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 20:18:39,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 20:18:39,957 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:18:41,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:41,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:41,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:41,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:18:41,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:18:41,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:45,184 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:18:45,224 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:18:45,317 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.286 +2025-10-01 20:18:45,317 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 20:18:45,317 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 20:18:45,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:45,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:45,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:46,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:18:46,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:18:46,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:47,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:47,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:47,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:47,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:18:47,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:18:47,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:48,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:48,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:48,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:48,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:18:48,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:18:48,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:53,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:53,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:53,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:53,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:18:53,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:18:53,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:54,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:54,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:54,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:54,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:18:54,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:18:54,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:18:55,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:18:55,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:18:55,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:18:55,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:18:55,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:18:55,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:00,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:00,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:00,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:00,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 20:19:00,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 20:19:00,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:03,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:03,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:03,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:03,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:19:03,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:19:03,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:05,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:05,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:05,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:05,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:19:05,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:19:05,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:06,177 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:19:06,197 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(630, 640, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:19:06,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.247 +2025-10-01 20:19:06,267 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 20:19:06,267 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 20:19:07,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:07,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:07,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:07,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:19:07,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:19:07,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:10,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:10,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:10,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:10,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:19:10,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:19:10,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:10,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:10,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:10,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:10,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:19:10,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:19:10,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:10,588 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:19:10,597 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(614, 610, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:19:10,661 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.763 +2025-10-01 20:19:10,662 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.064s +2025-10-01 20:19:10,662 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.064s +2025-10-01 20:19:11,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:11,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:11,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:11,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:19:11,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:19:11,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:12,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:12,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:12,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:12,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:19:12,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:19:12,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:17,066 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:19:17,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:19:17,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:19:17,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 20:19:17,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 20:19:17,370 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:19:17,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:17,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:17,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:17,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:19:17,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:19:17,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:18,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:18,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:18,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:18,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:19:18,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:19:18,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:18,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:18,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:19,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:19,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:19:19,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:19:19,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:23,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:23,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:23,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:23,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:19:23,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:19:23,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:25,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:25,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:25,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:25,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:19:25,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:19:25,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:27,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:27,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:27,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:28,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:19:28,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:19:28,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:29,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:29,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:29,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:29,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:19:29,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:19:29,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:31,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:31,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:32,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:32,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:19:32,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:19:32,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:32,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:32,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:32,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:32,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:19:32,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:19:32,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:33,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:33,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:33,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:33,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:19:33,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:19:33,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:37,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:37,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:37,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:37,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:19:37,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:19:37,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:37,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:37,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:37,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:37,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:19:37,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:19:37,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:39,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:39,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:39,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:39,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:19:39,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:19:39,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:39,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:39,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:40,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:40,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:19:40,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:19:40,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:40,888 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:19:40,917 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:19:41,000 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.627 +2025-10-01 20:19:41,001 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:19:41,001 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:19:43,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:43,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:43,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:43,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:19:43,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:19:43,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:44,850 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:19:44,873 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:19:44,953 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.430 +2025-10-01 20:19:44,954 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:19:44,954 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:19:46,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:46,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:46,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:47,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:19:47,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:19:47,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:47,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:47,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:47,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:47,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:19:47,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:19:47,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:49,116 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:19:49,139 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:19:49,222 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.442 +2025-10-01 20:19:49,222 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:19:49,222 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:19:51,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:51,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:51,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:51,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:19:51,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:19:51,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:52,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:52,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:52,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:52,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:19:52,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:19:52,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:55,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:55,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:55,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:55,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:19:55,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:19:55,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:55,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:55,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:56,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:56,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:19:56,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:19:56,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:19:58,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:19:58,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:19:58,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:19:58,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:19:58,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:19:58,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:00,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:00,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:00,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:00,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:20:00,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:20:00,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:03,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:03,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:03,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:03,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:20:03,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:20:03,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:04,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:04,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:04,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:04,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:20:04,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:20:04,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:07,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:07,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:07,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:07,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:20:07,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:20:07,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:07,820 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:20:07,836 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:20:07,918 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.068 +2025-10-01 20:20:07,918 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:20:07,918 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:20:08,142 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:20:08,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:20:08,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:20:08,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-01 20:20:08,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-01 20:20:08,410 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:20:10,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:10,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:10,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:10,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:20:10,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:20:10,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:11,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:11,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:11,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:11,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:20:11,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:20:11,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:13,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:13,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:13,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:13,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:20:13,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:20:13,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:15,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:15,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:15,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:15,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:20:15,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:20:15,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:15,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:15,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:15,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:15,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:20:15,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:20:15,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:16,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:16,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:16,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:16,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:20:16,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:20:16,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:17,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:17,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:17,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:17,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:20:17,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:20:17,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:19,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:19,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:19,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:19,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:20:19,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:20:19,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:19,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:19,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:19,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:19,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:20:19,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:20:19,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:22,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:22,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:22,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:22,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:20:22,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:20:22,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:22,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:22,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:23,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:23,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:20:23,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:20:23,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:25,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:25,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:25,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:25,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:20:25,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:20:25,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:25,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:25,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:25,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:26,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 20:20:26,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 20:20:26,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:28,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:28,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:28,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:28,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:20:28,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:20:28,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:28,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:28,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:28,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:29,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:20:29,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:20:29,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:29,263 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:20:29,282 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:20:29,361 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.534 +2025-10-01 20:20:29,361 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:20:29,361 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:20:30,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:30,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:30,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:31,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:20:31,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:20:31,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:32,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:32,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:32,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:32,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:20:32,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:20:32,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:33,648 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:20:33,676 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:20:33,752 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.002 +2025-10-01 20:20:33,752 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:20:33,752 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:20:34,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:34,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:34,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:34,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:20:34,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:20:34,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:37,189 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:20:37,215 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:20:37,291 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.357 +2025-10-01 20:20:37,291 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:20:37,291 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:20:37,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:37,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:37,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:37,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:20:37,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:20:37,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:41,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:41,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:41,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:41,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:20:41,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:20:41,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:42,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:42,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:42,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:43,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:20:43,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:20:43,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:44,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:44,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:44,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:44,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:20:44,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:20:44,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:45,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:45,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:45,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:45,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 20:20:45,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 20:20:45,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:45,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:45,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:45,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:46,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:20:46,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:20:46,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:46,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:46,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:46,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:46,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:20:46,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:20:46,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:47,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:47,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:47,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:47,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:20:47,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:20:47,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:47,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:47,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:47,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:47,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:20:47,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:20:47,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:47,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:47,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:48,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:48,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:20:48,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:20:48,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:50,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:50,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:50,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:50,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:20:50,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:20:50,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:51,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:51,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:51,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:51,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:20:51,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:20:51,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:52,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:52,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:52,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:52,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:20:52,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:20:52,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:54,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:54,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:54,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:54,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:20:54,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:20:54,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:55,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:55,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:55,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:55,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:20:55,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:20:55,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:56,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:56,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:56,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:56,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:20:56,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:20:56,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:56,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:56,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:56,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:57,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:20:57,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:20:57,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:57,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:57,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:57,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:20:58,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:20:58,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:20:58,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:20:59,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:20:59,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:20:59,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:00,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:21:00,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:21:00,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:01,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:01,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:01,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:01,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:21:01,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:21:01,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:02,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:02,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:03,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:03,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:21:03,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:21:03,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:05,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:05,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:05,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:05,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:21:05,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:21:05,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:11,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:11,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:12,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:12,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:21:12,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:21:12,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:12,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:12,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:12,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:12,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 20:21:12,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 20:21:12,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:13,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:13,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:13,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:13,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:21:13,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:21:13,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:16,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:16,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:16,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:16,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:21:16,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:21:16,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:18,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:18,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:18,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:18,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:21:18,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:21:18,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:19,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:19,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:19,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:19,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:21:19,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:21:19,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:20,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:20,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:20,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:20,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 20:21:20,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 20:21:20,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:24,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:24,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:24,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:24,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:21:24,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:21:24,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:25,897 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:21:25,935 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:21:26,016 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.185 +2025-10-01 20:21:26,017 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 20:21:26,017 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:21:26,325 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:21:26,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:21:26,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:21:26,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 20:21:26,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 20:21:26,619 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:21:29,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:29,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:29,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:30,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:21:30,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:21:30,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:30,483 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:21:30,504 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:21:30,581 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.927 +2025-10-01 20:21:30,582 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:21:30,582 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:21:34,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:34,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:34,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:35,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:21:35,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:21:35,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:35,252 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:21:35,274 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:21:35,348 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.813 +2025-10-01 20:21:35,348 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 20:21:35,348 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:21:38,342 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:21:38,381 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:21:38,461 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.117 +2025-10-01 20:21:38,461 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:21:38,461 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:21:39,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:39,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:39,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:39,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:21:39,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:21:39,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:41,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:41,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:41,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:41,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:21:41,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:21:41,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:47,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:47,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:47,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:47,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:21:47,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:21:47,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:48,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:48,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:48,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:48,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:21:48,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:21:48,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:49,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:49,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:49,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:49,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:21:49,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:21:49,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:51,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:51,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:51,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:51,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 20:21:51,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 20:21:51,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:54,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:54,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:54,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:54,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:21:54,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:21:54,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:21:59,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:21:59,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:21:59,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:21:59,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:21:59,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:21:59,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:01,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:01,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:01,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:02,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:22:02,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:22:02,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:03,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:03,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:03,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:03,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:22:03,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:22:03,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:07,208 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:22:07,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:22:07,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:22:07,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 20:22:07,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-01 20:22:07,510 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:22:08,322 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:22:08,367 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:22:08,451 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.107 +2025-10-01 20:22:08,452 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 20:22:08,452 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 20:22:12,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:12,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:12,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:12,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:22:12,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:22:12,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:12,281 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:22:12,306 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:22:12,384 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.097 +2025-10-01 20:22:12,384 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:22:12,384 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:22:15,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:15,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:15,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:15,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:22:15,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:22:15,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:16,180 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:22:16,207 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:22:16,286 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.826 +2025-10-01 20:22:16,286 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:22:16,286 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:22:16,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:16,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:16,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:17,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:22:17,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:22:17,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:19,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:19,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:19,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:19,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:22:19,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:22:19,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:19,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:19,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:19,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:19,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:22:19,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:22:19,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:21,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:21,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:21,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:21,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:22:21,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:22:21,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:23,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:23,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:23,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:23,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:22:23,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:22:23,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:25,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:25,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:25,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:25,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:22:25,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:22:25,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:26,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:26,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:26,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:26,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:22:26,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:22:26,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:27,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:27,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:27,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:27,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:22:27,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:22:27,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:27,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:27,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:27,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:27,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 20:22:27,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 20:22:27,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:29,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:29,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:29,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:29,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:22:29,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:22:29,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:31,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:31,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:31,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:31,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:22:31,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:22:31,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:31,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:31,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:31,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:32,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:22:32,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:22:32,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:34,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:34,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:34,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:34,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:22:34,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:22:34,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:35,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:35,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:35,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:35,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:22:35,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:22:35,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:38,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:38,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:38,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:39,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:22:39,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:22:39,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:41,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:41,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:41,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:41,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:22:41,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:22:41,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:42,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:42,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:42,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:42,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:22:42,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:22:42,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:47,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:47,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:47,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:48,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:22:48,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:22:48,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:49,299 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:22:49,330 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:22:49,408 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.290 +2025-10-01 20:22:49,408 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:22:49,409 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:22:53,531 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:22:53,564 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:22:53,652 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.079 +2025-10-01 20:22:53,652 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 20:22:53,652 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 20:22:54,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:22:54,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:22:54,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:22:54,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:22:54,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:22:54,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:22:57,964 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:22:57,990 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:22:58,067 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.019 +2025-10-01 20:22:58,068 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:22:58,068 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:23:01,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:23:01,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:23:01,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:23:01,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:23:01,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:23:01,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:23:06,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:23:06,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:23:06,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:23:07,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:23:07,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:23:07,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:23:20,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:23:20,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:23:20,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:23:20,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:23:20,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:23:20,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:23:26,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:23:26,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:23:26,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:23:26,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 20:23:26,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 20:23:26,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:23:28,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:23:28,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:23:28,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:23:28,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:23:28,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:23:28,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:23:30,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:23:30,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:23:30,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:23:30,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:23:30,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:23:30,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:23:39,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:23:39,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:23:39,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:23:39,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:23:39,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:23:39,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:23:40,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:23:40,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:23:40,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:23:40,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:23:40,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:23:40,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:23:55,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:23:55,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:23:55,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:23:55,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:23:55,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:23:55,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:24:06,688 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:24:06,724 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:24:06,809 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.368 +2025-10-01 20:24:06,809 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 20:24:06,809 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 20:24:11,733 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:24:11,775 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1070, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:24:11,857 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.344 +2025-10-01 20:24:11,857 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 20:24:11,857 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:24:13,021 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:24:13,041 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:24:13,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.896 +2025-10-01 20:24:13,123 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:24:13,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:24:16,063 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:24:16,093 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1070, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:24:16,172 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.878 +2025-10-01 20:24:16,172 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:24:16,173 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:24:16,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:24:16,449 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:24:16,532 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.886 +2025-10-01 20:24:16,533 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:24:16,533 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:24:17,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:24:17,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:24:17,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:24:17,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:24:17,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:24:17,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:24:19,761 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:24:19,787 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:24:19,875 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.853 +2025-10-01 20:24:19,875 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 20:24:19,875 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 20:24:22,413 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:24:22,445 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:24:22,530 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.216 +2025-10-01 20:24:22,531 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 20:24:22,531 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 20:24:52,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:24:52,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:24:52,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:24:52,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 20:24:52,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 20:24:52,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:04,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:04,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:05,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:05,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:25:05,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:25:05,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:09,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:09,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:09,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:09,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:25:09,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:25:09,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:10,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:10,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:10,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:10,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:25:10,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:25:10,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:14,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:14,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:14,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:14,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:25:14,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:25:14,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:16,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:16,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:16,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:16,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:25:16,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:25:16,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:18,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:18,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:18,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:18,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:25:18,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:25:18,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:21,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:21,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:21,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:22,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:25:22,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:25:22,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:23,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:23,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:23,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:23,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 20:25:23,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 20:25:23,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:25,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:25,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:25,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:25,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:25:25,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:25:25,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:28,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:28,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:28,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:29,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:25:29,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:25:29,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:29,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:29,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:29,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:29,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:25:29,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:25:29,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:32,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:32,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:32,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:32,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:25:32,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:25:32,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:34,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:34,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:34,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:34,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:25:34,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:25:34,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:36,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:36,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:36,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:37,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:25:37,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:25:37,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:39,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:39,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:39,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:39,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:25:39,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:25:39,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:40,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:40,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:40,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:40,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:25:40,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:25:40,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:45,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:45,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:45,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:46,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:25:46,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:25:46,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:47,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:47,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:47,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:47,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:25:47,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:25:47,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:47,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:47,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:47,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:47,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:25:47,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:25:47,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:51,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:51,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:51,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:51,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:25:51,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:25:51,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:52,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:52,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:52,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:52,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:25:52,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:25:52,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:55,322 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:25:55,347 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:25:55,424 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.267 +2025-10-01 20:25:55,425 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:25:55,425 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:25:55,450 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:25:55,475 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:25:55,565 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.679 +2025-10-01 20:25:55,565 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 20:25:55,565 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 20:25:56,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:56,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:56,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:56,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:25:56,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:25:56,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:57,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:57,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:58,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:58,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:25:58,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:25:58,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:58,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:25:58,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:25:58,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:25:58,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:25:58,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:25:58,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:25:59,011 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:25:59,036 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:25:59,113 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.733 +2025-10-01 20:25:59,114 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:25:59,114 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:25:59,283 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:25:59,308 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:25:59,397 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.462 +2025-10-01 20:25:59,397 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 20:25:59,397 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 20:26:03,097 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:26:03,128 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:26:03,210 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.950 +2025-10-01 20:26:03,210 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 20:26:03,210 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:26:03,810 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:26:03,844 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:26:03,925 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.159 +2025-10-01 20:26:03,925 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:26:03,926 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:26:04,592 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:26:04,628 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:26:04,717 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=229.866 +2025-10-01 20:26:04,717 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 20:26:04,718 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 20:26:07,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:07,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:07,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:07,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:26:07,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:26:07,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:08,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:08,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:08,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:08,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:26:08,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:26:08,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:10,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:10,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:10,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:10,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:26:10,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:26:10,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:11,007 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:26:11,032 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:26:11,108 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.542 +2025-10-01 20:26:11,108 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:26:11,108 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:26:11,386 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:26:11,424 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:26:11,502 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.718 +2025-10-01 20:26:11,502 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:26:11,502 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:26:14,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:14,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:14,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:15,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 20:26:15,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 20:26:15,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:16,130 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:26:16,157 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:26:16,242 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.855 +2025-10-01 20:26:16,242 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 20:26:16,242 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 20:26:18,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:18,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:18,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:19,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:26:19,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:26:19,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:21,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:21,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:21,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:21,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:26:21,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:26:21,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:21,817 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:26:21,836 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:26:21,914 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.218 +2025-10-01 20:26:21,914 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:26:21,915 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:26:21,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:21,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:21,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:22,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:26:22,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:26:22,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:24,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:24,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:24,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:25,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:26:25,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:26:25,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:26,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:26,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:26,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:26,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:26:26,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:26:26,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:28,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:28,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:28,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:28,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:26:28,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:26:28,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:28,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:28,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:28,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:28,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 20:26:28,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 20:26:28,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:31,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:31,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:31,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:31,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 20:26:31,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 20:26:31,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:32,398 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:26:32,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:26:32,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:26:32,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 20:26:32,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 20:26:32,671 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:26:34,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:34,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:34,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:34,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:26:34,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:26:34,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:39,607 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:26:39,644 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:26:39,725 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.158 +2025-10-01 20:26:39,725 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:26:39,725 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:26:42,738 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:26:42,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:26:42,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:26:43,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 20:26:43,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 20:26:43,032 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:26:43,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:43,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:43,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:43,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:26:43,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:26:43,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:47,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:47,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:47,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:47,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:26:47,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:26:47,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:48,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:48,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:48,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:48,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:26:48,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:26:48,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:49,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:49,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:49,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:49,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:26:49,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:26:49,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:50,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:50,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:50,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:50,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 20:26:50,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 20:26:50,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:54,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:54,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:54,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:54,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:26:54,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:26:54,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:55,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:55,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:55,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:55,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:26:55,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:26:55,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:57,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:57,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:57,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:57,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:26:57,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:26:57,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:57,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:57,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:57,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:57,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:26:57,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:26:57,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:26:58,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:26:58,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:26:58,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:26:58,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:26:58,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:26:58,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:02,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:02,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:02,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:02,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:27:02,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:27:02,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:03,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:03,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:03,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:03,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:27:03,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:27:03,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:04,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:04,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:04,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:04,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:27:04,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:27:04,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:05,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:05,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:05,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:05,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:27:05,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:27:05,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:05,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:05,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:06,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:06,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:27:06,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:27:06,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:09,904 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:27:09,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:27:09,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:27:10,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 20:27:10,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 20:27:10,189 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:27:10,328 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:27:10,346 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:27:10,420 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.810 +2025-10-01 20:27:10,420 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 20:27:10,420 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:27:12,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:12,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:12,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:12,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:27:12,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:27:12,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:13,765 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:27:13,788 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:27:13,863 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.009 +2025-10-01 20:27:13,864 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:27:13,864 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:27:14,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:14,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:14,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:14,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 20:27:14,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 20:27:14,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:15,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:15,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:15,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:15,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:27:15,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:27:15,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:16,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:16,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:16,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:16,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:27:16,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:27:16,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:16,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:16,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:16,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:16,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:27:16,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:27:16,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:17,177 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:27:17,209 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:27:17,289 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.867 +2025-10-01 20:27:17,290 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:27:17,290 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:27:18,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:18,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:18,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:18,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:27:18,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:27:18,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:22,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:22,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:22,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:22,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:27:22,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:27:22,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:24,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:24,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:24,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:24,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:27:24,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:27:24,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:25,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:25,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:25,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:25,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:27:25,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:27:25,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:27,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:27,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:27,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:28,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 20:27:28,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 20:27:28,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:28,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:28,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:28,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:28,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 20:27:28,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 20:27:28,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:30,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:30,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:30,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:30,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:27:30,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:27:30,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:34,150 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:27:34,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:27:34,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:27:34,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 20:27:34,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 20:27:34,451 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:27:35,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:35,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:35,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:35,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:27:35,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:27:35,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:35,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:35,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:36,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:36,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:27:36,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:27:36,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:39,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:39,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:39,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:39,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:27:39,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:27:39,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:40,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:40,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:40,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:40,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:27:40,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:27:40,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:40,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:40,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:40,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:40,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 20:27:40,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 20:27:40,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:40,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:40,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:40,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:40,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:27:40,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:27:40,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:41,009 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:27:41,024 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:27:41,093 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=177.877 +2025-10-01 20:27:41,093 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 20:27:41,093 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 20:27:43,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:43,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:43,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:44,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:27:44,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:27:44,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:46,050 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:27:46,087 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:27:46,171 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.189 +2025-10-01 20:27:46,171 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:27:46,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:27:46,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:46,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:46,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:47,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:27:47,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:27:47,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:48,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:48,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:48,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:48,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:27:48,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:27:48,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:48,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:48,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:48,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:49,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:27:49,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:27:49,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:50,457 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:27:50,480 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:27:50,558 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.408 +2025-10-01 20:27:50,558 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:27:50,558 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:27:51,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:51,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:51,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:51,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 20:27:51,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 20:27:51,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:51,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:51,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:51,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:52,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:27:52,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:27:52,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:54,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:54,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:54,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:54,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:27:54,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:27:54,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:57,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:57,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:57,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:57,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:27:57,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:27:57,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:58,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:58,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:58,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:58,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:27:58,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:27:58,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:27:59,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:27:59,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:27:59,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:27:59,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:27:59,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:27:59,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:01,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:01,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:01,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:01,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:28:01,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:28:01,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:01,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:01,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:01,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:01,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:28:01,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:28:01,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:02,511 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:28:02,534 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:28:02,610 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.846 +2025-10-01 20:28:02,610 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:28:02,610 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:28:03,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:03,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:03,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:03,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:28:03,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:28:03,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:06,366 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:28:06,400 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:28:06,475 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=14.173 +2025-10-01 20:28:06,476 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:28:06,476 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:28:06,683 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:28:06,709 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:28:06,783 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.325 +2025-10-01 20:28:06,783 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 20:28:06,784 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:28:07,418 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:28:07,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:28:07,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:28:07,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 20:28:07,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 20:28:07,723 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:28:09,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:09,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:09,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:09,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:28:09,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:28:09,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:10,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:10,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:10,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:10,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:28:10,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:28:10,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:13,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:13,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:13,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:14,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:28:14,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:28:14,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:15,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:15,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:15,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:15,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:28:15,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:28:15,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:15,929 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:28:15,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:28:15,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:28:16,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 20:28:16,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-01 20:28:16,236 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:28:21,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:21,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:21,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:21,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:28:21,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:28:21,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:23,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:23,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:23,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:23,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:28:23,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:28:23,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:23,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:23,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:23,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:24,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:28:24,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:28:24,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:24,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:24,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:24,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:24,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:28:24,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:28:24,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:29,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:29,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:29,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:29,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:28:29,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:28:29,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:34,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:34,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:34,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:34,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 20:28:34,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 20:28:34,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:34,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:34,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:34,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:34,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:28:34,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:28:34,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:40,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:40,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:40,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:40,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:28:40,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:28:40,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:40,467 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:28:40,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:28:40,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:28:40,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 20:28:40,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 20:28:40,748 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:28:44,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:44,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:44,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:44,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:28:44,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:28:44,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:45,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:45,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:45,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:45,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:28:45,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:28:45,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:46,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:46,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:46,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:46,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:28:46,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:28:46,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:47,374 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:28:47,394 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:28:47,472 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.223 +2025-10-01 20:28:47,472 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:28:47,473 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:28:49,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:49,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:49,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:49,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:28:49,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:28:49,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:50,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:50,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:50,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:50,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:28:50,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:28:50,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:50,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:50,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:50,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:50,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:28:50,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:28:50,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:50,995 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:28:51,006 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:28:51,076 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.631 +2025-10-01 20:28:51,076 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 20:28:51,077 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 20:28:51,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:51,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:51,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:51,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:28:51,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:28:51,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:53,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:53,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:53,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:53,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:28:53,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:28:53,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:54,519 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:28:54,541 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:28:54,618 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.321 +2025-10-01 20:28:54,618 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:28:54,618 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:28:55,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:55,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:55,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:55,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:28:55,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:28:55,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:55,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:55,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:56,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:56,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:28:56,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:28:56,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:28:59,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:28:59,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:28:59,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:28:59,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:28:59,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:28:59,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:00,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:00,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:00,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:00,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:29:00,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:29:00,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:00,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:00,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:00,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:00,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:29:00,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:29:00,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:01,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:01,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:01,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:01,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 20:29:01,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 20:29:01,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:01,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:01,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:01,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:01,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 20:29:01,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 20:29:01,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:09,154 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:29:09,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:29:09,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:29:09,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 20:29:09,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-01 20:29:09,449 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:29:13,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:13,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:13,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:13,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:29:13,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:29:13,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:14,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:14,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:14,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:14,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:29:14,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:29:14,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:15,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:15,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:15,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:15,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:29:15,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:29:15,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:15,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:15,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:15,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:15,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:29:15,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:29:15,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:19,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:19,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:19,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:19,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:29:19,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:29:19,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:21,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:21,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:21,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:21,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:29:21,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:29:21,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:21,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:21,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:21,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:21,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:29:21,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:29:21,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:25,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:25,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:25,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:25,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:29:25,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:29:25,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:26,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:26,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:26,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:26,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:29:26,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:29:26,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:27,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:27,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:27,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:27,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:29:27,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:29:27,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:29,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:29,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:29,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:30,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:29:30,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:29:30,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:31,873 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:29:31,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:29:31,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:29:32,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 20:29:32,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 20:29:32,149 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:29:33,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:33,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:33,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:33,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:29:33,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:29:33,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:34,684 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:29:34,707 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:29:34,784 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.715 +2025-10-01 20:29:34,785 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:29:34,785 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:29:36,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:36,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:36,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:36,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:29:36,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:29:36,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:37,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:37,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:37,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:37,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:29:37,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:29:37,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:37,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:37,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:37,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:38,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:29:38,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:29:38,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:38,813 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:29:38,838 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:29:38,916 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.975 +2025-10-01 20:29:38,917 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:29:38,917 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:29:39,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:39,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:39,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:39,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:29:39,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:29:39,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:39,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:39,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:39,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:39,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:29:39,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:29:39,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:42,660 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:29:42,687 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:29:42,766 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.003 +2025-10-01 20:29:42,766 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:29:42,766 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:29:44,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:44,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:44,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:44,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:29:44,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:29:44,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:45,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:45,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:45,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:45,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 20:29:45,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 20:29:45,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:46,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:46,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:46,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:46,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:29:46,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:29:46,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:48,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:48,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:48,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:48,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:29:48,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:29:48,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:49,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:49,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:49,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:49,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:29:49,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:29:49,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:50,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:50,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:50,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:50,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:29:50,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:29:50,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:52,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:52,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:52,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:52,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:29:52,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:29:52,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:54,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:54,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:54,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:55,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:29:55,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:29:55,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:58,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:58,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:58,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:58,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 20:29:58,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 20:29:58,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:59,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:59,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:59,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:29:59,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:29:59,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:29:59,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:29:59,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:29:59,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:29:59,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:00,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:30:00,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:30:00,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:01,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:01,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:01,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:01,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:30:01,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:30:01,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:02,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:02,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:02,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:02,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:30:02,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:30:02,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:05,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:05,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:05,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:05,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:30:05,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:30:05,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:05,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:05,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:05,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:06,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:30:06,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:30:06,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:06,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:06,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:06,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:06,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 20:30:06,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 20:30:06,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:08,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:08,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:08,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:08,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:30:08,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:30:08,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:09,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:09,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:09,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:09,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:30:09,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:30:09,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:10,079 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:30:10,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:30:10,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:30:10,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 20:30:10,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 20:30:10,355 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:30:11,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:11,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:11,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:11,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:30:11,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:30:11,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:13,447 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:30:13,467 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:30:13,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.476 +2025-10-01 20:30:13,547 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:30:13,547 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:30:14,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:14,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:14,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:14,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:30:14,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:30:14,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:14,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:14,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:15,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:15,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:30:15,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:30:15,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:17,342 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:30:17,373 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:30:17,452 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.441 +2025-10-01 20:30:17,452 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:30:17,452 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:30:18,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:18,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:18,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:18,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:30:18,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:30:18,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:18,689 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:30:18,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:30:18,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:30:18,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 20:30:18,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 20:30:18,995 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:30:19,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:19,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:19,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:19,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:30:19,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:30:19,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:20,985 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:30:21,008 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:30:21,085 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.243 +2025-10-01 20:30:21,085 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:30:21,085 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:30:22,881 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:30:22,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:30:22,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:30:23,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 20:30:23,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 20:30:23,165 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:30:23,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:23,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:23,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:23,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:30:23,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:30:23,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:26,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:26,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:26,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:26,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:30:26,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:30:26,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:28,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:28,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:28,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:29,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:30:29,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:30:29,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:29,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:29,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:29,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:29,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:30:29,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:30:29,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:31,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:31,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:31,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:31,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:30:31,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:30:31,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:33,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:33,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:33,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:33,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:30:33,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:30:33,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:35,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:35,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:35,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:35,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:30:35,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:30:35,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:37,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:37,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:37,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:37,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:30:37,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:30:37,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:37,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:37,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:37,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:37,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:30:37,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:30:37,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:39,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:39,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:39,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:39,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:30:39,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:30:39,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:39,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:39,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:39,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:40,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:30:40,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:30:40,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:40,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:40,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:40,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:40,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:30:40,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:30:40,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:42,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:42,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:42,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:42,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:30:42,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:30:42,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:43,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:43,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:43,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:43,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:30:43,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:30:43,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:45,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:45,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:45,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:46,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:30:46,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:30:46,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:47,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:47,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:47,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:47,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:30:47,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:30:47,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:48,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:48,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:48,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:48,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:30:48,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:30:48,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:48,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:48,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:48,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:48,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:30:48,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:30:48,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:49,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:49,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:49,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:49,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:30:49,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:30:49,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:50,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:50,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:50,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:50,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:30:50,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:30:50,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:53,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:53,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:53,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:53,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:30:53,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:30:53,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:56,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:56,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:56,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:56,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:30:56,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:30:56,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:57,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:57,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:57,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:57,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:30:57,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:30:57,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:57,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:30:57,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:30:57,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:30:58,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:30:58,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:30:58,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:30:58,604 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:30:58,637 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:30:58,733 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=8.904 +2025-10-01 20:30:58,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 20:30:58,734 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 20:31:00,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:00,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:00,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:00,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:31:00,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:31:00,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:02,949 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:31:02,972 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(620, 620, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:31:03,042 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.224 +2025-10-01 20:31:03,042 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 20:31:03,042 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 20:31:04,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:04,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:04,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:04,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:31:04,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:31:04,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:06,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:06,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:06,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:06,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:31:06,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:31:06,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:06,902 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:31:06,921 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(620, 620, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:31:06,994 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.629 +2025-10-01 20:31:06,994 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 20:31:06,995 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 20:31:07,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:07,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:07,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:07,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:31:07,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:31:07,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:08,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:08,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:08,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:09,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:31:09,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:31:09,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:09,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:09,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:09,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:09,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:31:09,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:31:09,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:11,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:11,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:11,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:12,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:31:12,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:31:12,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:12,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:12,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:12,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:13,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 20:31:13,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 20:31:13,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:14,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:14,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:14,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:14,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:31:14,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:31:14,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:14,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:14,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:14,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:14,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:31:14,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:31:14,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:16,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:16,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:16,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:16,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:31:16,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:31:16,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:17,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:17,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:17,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:17,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:31:17,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:31:17,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:21,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:21,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:21,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:21,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:31:21,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:31:21,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:21,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:21,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:21,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:22,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:31:22,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:31:22,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:24,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:24,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:24,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:24,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:31:24,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:31:24,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:26,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:26,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:26,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:26,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:31:26,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:31:26,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:27,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:27,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:27,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:27,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:31:27,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:31:27,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:28,055 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:31:28,087 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:31:28,167 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=194.801 +2025-10-01 20:31:28,167 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:31:28,167 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:31:28,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:28,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:28,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:28,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:31:28,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:31:28,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:30,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:30,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:30,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:30,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:31:30,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:31:30,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:33,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:33,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:33,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:34,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:31:34,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:31:34,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:37,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:37,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:37,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:37,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 20:31:37,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 20:31:37,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:38,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:38,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:38,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:38,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:31:38,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:31:38,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:39,030 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:31:39,056 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:31:39,131 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.072 +2025-10-01 20:31:39,131 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:31:39,131 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:31:41,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:41,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:41,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:42,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:31:42,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:31:42,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:46,094 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:31:46,121 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:31:46,200 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.414 +2025-10-01 20:31:46,200 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:31:46,200 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:31:46,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:46,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:46,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:46,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:31:46,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:31:46,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:48,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:48,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:48,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:48,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:31:48,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:31:48,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:52,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:52,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:52,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:52,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 20:31:52,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 20:31:52,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:53,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:53,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:53,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:53,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:31:53,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:31:53,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:54,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:54,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:54,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:54,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:31:54,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:31:54,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:31:56,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:31:56,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:31:56,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:31:56,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:31:56,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:31:56,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:06,864 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:32:06,892 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:32:06,970 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.300 +2025-10-01 20:32:06,970 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:32:06,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:32:08,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:08,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:08,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:08,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:32:08,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:32:08,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:08,668 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:32:08,690 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:32:08,764 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.164 +2025-10-01 20:32:08,764 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 20:32:08,764 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 20:32:09,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:09,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:09,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:10,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:32:10,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:32:10,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:10,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:10,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:10,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:10,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:32:10,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:32:10,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:13,942 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:32:13,967 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:32:14,045 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.731 +2025-10-01 20:32:14,046 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:32:14,046 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:32:15,658 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:32:15,701 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:32:15,789 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.401 +2025-10-01 20:32:15,790 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 20:32:15,790 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 20:32:16,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:16,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:16,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:16,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:32:16,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:32:16,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:17,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:17,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:17,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:17,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:32:17,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:32:17,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:19,452 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:32:19,470 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:32:19,545 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.499 +2025-10-01 20:32:19,546 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:32:19,546 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:32:20,358 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:32:20,388 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:32:20,474 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.661 +2025-10-01 20:32:20,474 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 20:32:20,475 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 20:32:20,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:20,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:20,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:20,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:32:20,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:32:20,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:21,178 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:32:21,199 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:32:21,278 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.509 +2025-10-01 20:32:21,279 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:32:21,279 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:32:24,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:24,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:24,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:24,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:32:24,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:32:24,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:25,262 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:32:25,292 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:32:25,380 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.208 +2025-10-01 20:32:25,380 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 20:32:25,380 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 20:32:25,418 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:32:25,439 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:32:25,518 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.578 +2025-10-01 20:32:25,519 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:32:25,519 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:32:25,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:25,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:25,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:25,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:32:25,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:32:25,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:28,765 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:32:28,788 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:32:28,868 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.193 +2025-10-01 20:32:28,868 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:32:28,868 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:32:34,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:34,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:35,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:35,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:32:35,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:32:35,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:40,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:40,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:40,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:40,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:32:40,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:32:40,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:43,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:43,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:43,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:43,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:32:43,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:32:43,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:45,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:45,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:45,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:45,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:32:45,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:32:45,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:45,840 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:32:45,874 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:32:45,961 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.668 +2025-10-01 20:32:45,961 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 20:32:45,961 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 20:32:46,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:46,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:46,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:46,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:32:46,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:32:46,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:47,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:47,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:47,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:47,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 20:32:47,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 20:32:47,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:47,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:47,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:47,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:47,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:32:47,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:32:47,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:49,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:49,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:49,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:49,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:32:49,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:32:49,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:53,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:53,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:53,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:53,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:32:53,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:32:53,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:54,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:54,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:54,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:54,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:32:54,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:32:54,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:55,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:55,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:55,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:55,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:32:55,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:32:55,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:56,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:56,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:56,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:56,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:32:56,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:32:56,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:57,507 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:32:57,531 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:32:57,613 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.611 +2025-10-01 20:32:57,613 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:32:57,614 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 20:32:58,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:58,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:58,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:58,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:32:58,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:32:58,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:32:59,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:32:59,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:32:59,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:32:59,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:32:59,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:32:59,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:01,219 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:33:01,244 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:33:01,332 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.269 +2025-10-01 20:33:01,332 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 20:33:01,332 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 20:33:01,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:01,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:01,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:02,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:33:02,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:33:02,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:03,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:03,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:03,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:03,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:33:03,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:33:03,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:03,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:03,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:03,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:03,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:33:03,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:33:03,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:05,244 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:33:05,270 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:33:05,355 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.897 +2025-10-01 20:33:05,355 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 20:33:05,355 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 20:33:07,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:07,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:07,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:08,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:33:08,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:33:08,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:08,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:08,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:08,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:08,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:33:08,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:33:08,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:09,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:09,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:09,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:09,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:33:09,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:33:09,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:13,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:13,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:13,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:13,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:33:13,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:33:13,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:13,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:13,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:13,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:14,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:33:14,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:33:14,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:15,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:15,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:15,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:15,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:33:15,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:33:15,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:17,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:17,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:17,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:17,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:33:17,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:33:17,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:17,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:17,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:17,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:17,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:33:17,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:33:17,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:19,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:19,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:19,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:20,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:33:20,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:33:20,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:22,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:22,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:22,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:22,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:33:22,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:33:22,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:23,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:23,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:23,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:23,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:33:23,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:33:23,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:26,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:26,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:26,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:26,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:33:26,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:33:26,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:27,127 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:33:27,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:33:27,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:33:27,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-01 20:33:27,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-01 20:33:27,402 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:33:28,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:28,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:28,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:28,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:33:28,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:33:28,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:29,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:29,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:29,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:29,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:33:29,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:33:29,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:31,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:31,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:31,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:31,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 20:33:31,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 20:33:31,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:32,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:32,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:32,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:32,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:33:32,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:33:32,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:32,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:32,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:32,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:32,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:33:32,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:33:32,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:34,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:34,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:34,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:34,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:33:34,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:33:34,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:35,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:35,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:35,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:35,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 20:33:35,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 20:33:35,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:36,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:36,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:36,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:36,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:33:36,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:33:36,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:37,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:37,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:37,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:37,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:33:37,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:33:37,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:38,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:38,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:38,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:38,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:33:38,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:33:38,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:39,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:39,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:39,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:39,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:33:39,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:33:39,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:40,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:40,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:40,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:40,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:33:40,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:33:40,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:41,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:41,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:41,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:41,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 20:33:41,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 20:33:41,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:41,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:41,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:41,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:41,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 20:33:41,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 20:33:41,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:42,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:42,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:42,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:42,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:33:42,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:33:42,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:44,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:44,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:44,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:44,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:33:44,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:33:44,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:44,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:44,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:44,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:44,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:33:44,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:33:44,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:47,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:47,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:47,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:48,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:33:48,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:33:48,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:48,716 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:33:48,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:33:48,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:33:49,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 20:33:49,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 20:33:49,013 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:33:49,217 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:33:49,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:33:49,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:33:49,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.254s +2025-10-01 20:33:49,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.254s (avg: 0.127s/image) +2025-10-01 20:33:49,473 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:33:53,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:53,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:53,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:53,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:33:53,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:33:53,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:54,205 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:33:54,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:33:54,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:33:54,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 20:33:54,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 20:33:54,488 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:33:54,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:54,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:54,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:55,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:33:55,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:33:55,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:58,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:58,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:58,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:58,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:33:58,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:33:58,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:33:59,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:33:59,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:33:59,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:33:59,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:33:59,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:33:59,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:00,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:00,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:00,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:00,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:34:00,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:34:00,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:00,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:00,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:00,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:00,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:34:00,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:34:00,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:02,070 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:34:02,097 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:34:02,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.268 +2025-10-01 20:34:02,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:34:02,180 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 20:34:02,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:02,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:02,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:03,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:34:03,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:34:03,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:04,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:04,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:04,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:05,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:34:05,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:34:05,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:05,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:05,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:05,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:05,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:34:05,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:34:05,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:05,823 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:34:05,854 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:34:05,930 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.818 +2025-10-01 20:34:05,930 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:34:05,930 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:34:06,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:06,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:06,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:07,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:34:07,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:34:07,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:07,904 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:34:07,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:34:07,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:34:08,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 20:34:08,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 20:34:08,210 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:34:09,695 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:34:09,720 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:34:09,799 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.881 +2025-10-01 20:34:09,799 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:34:09,799 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:34:11,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:11,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:11,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:11,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 20:34:11,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 20:34:11,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:12,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:12,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:12,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:12,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:34:12,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:34:12,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:12,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:12,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:12,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:13,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:34:13,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:34:13,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:14,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:14,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:14,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:14,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:34:14,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:34:14,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:16,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:16,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:16,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:16,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:34:16,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:34:16,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:17,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:17,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:17,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:17,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 20:34:17,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 20:34:17,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:18,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:18,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:18,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:18,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:34:18,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:34:18,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:19,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:19,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:19,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:19,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:34:19,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:34:19,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:20,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:20,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:20,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:20,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:34:20,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:34:20,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:21,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:21,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:21,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:21,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:34:21,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:34:21,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:23,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:23,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:23,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:24,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:34:24,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:34:24,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:24,893 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:34:24,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:34:24,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:34:25,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-01 20:34:25,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.133s/image) +2025-10-01 20:34:25,160 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:34:25,526 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:34:25,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:34:25,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:34:25,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 20:34:25,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 20:34:25,810 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:34:28,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:28,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:28,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:29,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:34:29,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:34:29,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:29,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:29,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:29,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:29,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:34:29,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:34:29,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:29,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:29,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:29,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:30,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:34:30,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:34:30,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:31,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:31,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:31,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:31,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:34:31,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:34:31,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:32,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:32,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:32,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:32,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:34:32,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:34:32,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:36,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:36,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:36,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:36,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:34:36,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:34:36,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:37,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:37,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:37,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:37,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:34:37,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:34:37,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:39,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:39,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:39,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:39,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:34:39,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:34:39,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:40,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:40,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:40,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:40,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:34:40,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:34:40,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:42,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:42,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:42,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:42,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:34:42,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:34:42,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:42,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:42,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:43,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:43,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:34:43,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:34:43,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:46,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:46,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:46,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:46,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:34:46,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:34:46,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:46,662 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:34:46,692 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:34:46,775 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.191 +2025-10-01 20:34:46,775 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 20:34:46,775 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 20:34:48,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:48,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:48,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:48,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:34:48,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:34:48,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:49,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:49,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:49,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:49,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:34:49,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:34:49,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:50,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:50,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:50,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:50,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:34:50,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:34:50,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:52,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:52,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:52,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:52,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 20:34:52,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 20:34:52,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:52,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:52,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:52,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:53,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:34:53,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:34:53,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:54,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:54,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:55,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:55,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:34:55,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:34:55,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:34:57,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:34:57,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:34:57,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:34:57,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:34:57,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:34:57,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:01,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:01,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:01,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:01,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:35:01,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:35:01,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:01,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:01,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:01,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:02,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:35:02,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:35:02,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:03,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:03,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:03,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:03,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:35:03,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:35:03,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:07,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:07,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:07,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:08,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:35:08,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:35:08,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:12,875 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:35:12,913 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:35:13,005 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=164.149 +2025-10-01 20:35:13,006 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 20:35:13,006 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 20:35:14,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:14,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:14,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:14,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:35:14,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:35:14,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:14,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:14,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:14,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:14,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:35:14,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:35:14,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:17,782 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:35:17,814 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:35:17,902 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.998 +2025-10-01 20:35:17,902 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 20:35:17,903 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 20:35:19,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:19,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:19,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:19,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:35:19,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:35:19,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:22,988 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:35:23,021 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:35:23,107 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=192.452 +2025-10-01 20:35:23,107 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 20:35:23,107 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 20:35:24,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:24,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:24,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:24,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:35:24,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:35:24,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:26,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:26,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:26,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:26,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:35:26,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:35:26,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:28,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:28,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:28,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:28,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:35:28,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:35:28,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:30,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:30,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:30,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:31,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:35:31,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:35:31,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:32,507 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:35:32,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:35:32,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:35:32,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-01 20:35:32,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-01 20:35:32,774 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:35:33,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:33,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:33,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:33,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:35:33,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:35:33,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:33,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:33,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:33,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:33,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:35:33,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:35:33,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:38,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:38,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:38,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:38,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:35:38,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:35:38,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:39,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:39,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:39,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:39,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:35:39,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:35:39,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:41,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:41,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:41,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:41,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:35:41,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:35:41,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:43,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:43,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:43,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:43,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:35:43,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:35:43,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:44,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:44,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:44,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:44,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:35:44,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:35:44,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:44,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:44,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:44,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:45,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:35:45,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:35:45,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:48,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:48,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:48,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:48,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:35:48,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:35:48,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:51,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:51,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:51,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:51,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:35:51,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:35:51,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:52,669 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:35:52,692 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:35:52,770 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.645 +2025-10-01 20:35:52,771 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:35:52,771 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:35:52,822 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:35:52,852 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:35:52,940 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.282 +2025-10-01 20:35:52,940 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 20:35:52,940 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 20:35:53,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:53,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:53,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:53,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:35:53,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:35:53,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:54,683 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:35:54,704 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:35:54,780 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.281 +2025-10-01 20:35:54,780 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:35:54,780 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:35:55,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:55,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:55,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:55,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:35:55,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:35:55,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:58,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:58,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:58,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:58,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:35:58,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:35:58,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:35:58,654 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:35:58,675 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:35:58,749 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=183.020 +2025-10-01 20:35:58,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:35:58,750 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:35:59,194 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:35:59,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:35:59,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:35:59,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 20:35:59,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 20:35:59,491 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:35:59,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:35:59,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:35:59,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:35:59,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:35:59,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:35:59,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:00,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:00,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:00,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:01,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:36:01,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:36:01,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:03,674 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:36:03,718 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:36:03,799 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.221 +2025-10-01 20:36:03,800 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 20:36:03,800 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:36:04,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:36:04,512 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:36:04,592 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.076 +2025-10-01 20:36:04,592 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:36:04,592 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:36:07,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:07,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:07,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:07,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:36:07,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:36:07,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:09,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:09,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:09,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:09,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:36:09,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:36:09,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:10,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:10,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:10,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:10,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 20:36:10,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 20:36:10,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:11,096 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:36:11,140 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:36:11,225 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.512 +2025-10-01 20:36:11,225 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 20:36:11,225 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 20:36:13,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:13,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:13,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:13,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 20:36:13,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 20:36:13,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:14,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:14,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:14,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:14,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:36:14,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:36:14,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:15,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:15,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:15,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:15,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:36:15,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:36:15,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:16,320 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:36:16,350 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:36:16,426 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.462 +2025-10-01 20:36:16,426 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:36:16,427 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:36:16,632 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:36:16,664 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:36:16,743 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.965 +2025-10-01 20:36:16,743 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:36:16,743 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:36:20,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:20,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:20,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:20,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:36:20,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:36:20,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:21,197 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:36:21,217 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:36:21,296 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.902 +2025-10-01 20:36:21,296 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:36:21,296 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:36:21,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:21,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:21,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:21,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:36:21,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:36:21,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:25,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:25,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:25,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:25,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:36:25,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:36:25,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:25,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:25,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:25,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:25,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:36:25,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:36:25,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:27,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:27,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:27,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:27,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:36:27,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:36:27,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:29,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:29,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:29,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:29,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:36:29,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:36:29,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:32,420 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:36:32,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:36:32,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:36:32,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 20:36:32,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 20:36:32,720 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:36:35,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:35,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:35,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:35,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 20:36:35,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 20:36:35,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:35,623 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:36:35,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:36:35,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:36:35,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 20:36:35,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 20:36:35,907 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:36:40,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:40,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:40,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:40,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:36:40,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:36:40,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:42,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:42,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:42,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:42,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:36:42,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:36:42,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:42,656 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:36:42,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:36:42,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:36:42,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 20:36:42,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 20:36:42,946 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:36:43,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:43,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:43,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:43,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:36:43,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:36:43,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:47,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:47,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:47,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:47,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:36:47,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:36:47,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:48,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:48,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:48,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:49,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:36:49,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:36:49,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:49,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:49,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:49,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:49,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:36:49,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:36:49,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:51,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:51,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:51,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:51,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:36:51,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:36:51,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:54,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:54,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:54,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:54,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-01 20:36:54,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-01 20:36:54,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:57,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:57,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:57,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:58,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:36:58,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:36:58,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:36:59,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:36:59,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:36:59,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:36:59,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:36:59,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:36:59,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:04,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:04,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:04,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:04,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:37:04,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:37:04,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:07,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:07,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:07,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:07,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:37:07,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:37:07,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:08,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:08,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:08,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:08,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:37:08,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:37:08,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:10,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:10,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:10,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:10,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:37:10,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:37:10,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:13,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:13,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:13,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:13,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:37:13,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:37:13,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:17,951 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:37:17,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:37:18,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:37:18,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 20:37:18,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 20:37:18,251 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:37:18,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:18,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:18,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:18,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:37:18,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:37:18,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:22,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:22,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:22,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:22,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:37:22,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:37:22,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:24,299 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:37:24,327 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:37:24,419 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.401 +2025-10-01 20:37:24,419 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 20:37:24,420 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 20:37:26,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:26,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:26,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:26,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:37:26,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:37:26,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:27,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:27,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:27,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:27,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:37:27,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:37:27,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:33,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:33,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:33,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:34,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:37:34,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:37:34,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:35,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:35,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:35,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:35,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:37:35,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:37:35,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:40,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:40,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:40,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:40,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:37:40,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:37:40,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:46,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:46,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:46,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:47,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:37:47,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:37:47,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:47,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:47,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:47,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:47,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:37:47,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:37:47,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:52,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:52,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:52,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:52,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:37:52,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:37:52,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:54,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:54,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:54,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:54,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:37:54,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:37:54,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:55,105 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:37:55,126 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:37:55,203 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.039 +2025-10-01 20:37:55,203 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:37:55,203 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:37:55,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:55,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:55,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:55,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:37:55,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:37:55,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:57,935 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:37:57,974 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:37:58,062 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.587 +2025-10-01 20:37:58,063 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 20:37:58,063 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 20:37:58,823 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:37:58,849 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:37:58,928 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.365 +2025-10-01 20:37:58,928 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:37:58,928 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:37:59,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:59,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:37:59,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:37:59,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:37:59,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:37:59,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:37:59,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:37:59,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:00,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:00,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:38:00,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:38:00,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:02,396 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:38:02,418 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:38:02,497 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.835 +2025-10-01 20:38:02,497 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:38:02,497 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:38:02,837 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:38:02,884 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:38:02,971 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.741 +2025-10-01 20:38:02,971 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 20:38:02,972 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 20:38:04,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:04,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:04,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:04,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:38:04,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:38:04,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:06,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:06,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:06,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:06,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:38:06,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:38:06,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:07,838 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:38:07,876 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:38:07,967 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.629 +2025-10-01 20:38:07,968 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 20:38:07,968 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 20:38:10,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:10,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:10,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:11,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:38:11,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:38:11,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:14,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:14,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:14,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:14,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:38:14,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:38:14,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:20,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:20,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:20,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:20,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:38:20,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:38:20,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:20,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:20,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:20,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:20,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:38:20,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:38:20,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:25,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:25,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:25,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:25,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:38:25,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:38:25,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:26,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:26,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:26,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:26,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:38:26,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:38:26,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:28,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:28,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:28,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:28,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:38:28,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:38:28,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:30,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:30,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:30,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:30,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:38:30,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:38:30,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:30,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:30,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:30,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:31,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:38:31,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:38:31,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:33,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:33,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:33,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:33,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:38:33,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:38:33,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:36,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:36,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:36,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:36,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:38:36,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:38:36,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:37,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:37,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:37,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:37,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:38:37,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:38:37,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:38,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:38,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:38,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:39,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:38:39,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:38:39,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:45,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:45,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:45,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:45,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:38:45,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:38:45,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:45,964 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:38:45,983 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:38:46,060 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.113 +2025-10-01 20:38:46,060 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:38:46,060 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:38:48,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:48,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:48,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:48,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:38:48,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:38:48,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:50,207 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:38:50,234 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:38:50,315 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.089 +2025-10-01 20:38:50,315 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:38:50,315 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:38:50,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:50,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:50,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:50,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:38:50,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:38:50,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:51,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:51,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:51,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:52,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 20:38:52,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 20:38:52,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:53,537 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:38:53,559 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:38:53,634 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.046 +2025-10-01 20:38:53,634 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:38:53,634 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:38:55,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:55,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:55,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:55,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:38:55,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:38:55,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:56,587 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:38:56,622 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:38:56,717 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=12.151 +2025-10-01 20:38:56,717 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-01 20:38:56,717 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 20:38:58,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:58,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:58,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:58,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:38:58,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:38:58,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:38:59,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:38:59,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:38:59,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:38:59,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:38:59,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:38:59,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:00,387 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:39:00,409 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:39:00,498 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.027 +2025-10-01 20:39:00,499 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 20:39:00,499 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 20:39:02,836 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:39:02,864 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:39:02,944 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.166 +2025-10-01 20:39:02,944 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:39:02,944 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:39:04,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:04,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:04,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:05,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:39:05,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:39:05,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:06,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:06,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:06,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:06,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:39:06,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:39:06,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:09,707 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:39:09,749 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:39:09,840 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.558 +2025-10-01 20:39:09,840 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 20:39:09,840 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 20:39:09,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:09,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:10,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:10,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:39:10,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:39:10,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:10,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:10,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:10,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:10,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:39:10,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:39:10,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:12,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:12,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:12,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:12,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:39:12,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:39:12,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:14,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:14,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:14,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:14,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:39:14,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:39:14,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:15,866 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:39:15,890 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:39:15,976 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.316 +2025-10-01 20:39:15,976 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 20:39:15,976 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 20:39:20,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:20,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:20,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:20,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:39:20,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:39:20,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:20,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:20,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:20,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:20,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 20:39:20,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 20:39:20,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:24,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:24,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:24,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:24,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:39:24,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:39:24,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:25,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:25,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:25,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:25,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:39:25,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:39:25,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:29,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:29,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:29,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:29,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:39:29,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:39:29,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:29,994 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:39:30,026 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:39:30,102 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.058 +2025-10-01 20:39:30,103 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:39:30,103 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:39:31,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:31,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:31,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:31,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 20:39:31,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 20:39:31,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:35,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:35,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:35,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:35,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:39:35,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:39:35,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:37,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:37,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:37,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:37,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:39:37,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:39:37,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:39,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:39,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:39,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:39,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:39:39,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:39:39,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:40,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:40,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:40,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:40,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 20:39:40,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 20:39:40,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:44,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:44,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:44,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:44,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 20:39:44,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 20:39:44,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:45,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:45,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:45,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:45,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:39:45,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:39:45,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:47,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:47,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:47,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:48,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:39:48,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:39:48,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:52,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:52,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:53,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:53,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 20:39:53,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 20:39:53,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:39:56,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:39:56,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:39:56,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:39:56,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:39:56,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:39:56,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:00,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:00,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:00,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:00,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:40:00,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:40:00,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:02,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:02,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:02,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:02,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:40:02,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:40:02,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:08,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:08,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:08,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:08,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:40:08,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:40:08,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:09,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:09,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:09,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:09,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 20:40:09,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 20:40:09,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:11,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:11,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:11,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:11,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:40:11,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:40:11,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:15,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:15,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:15,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:15,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 20:40:15,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 20:40:15,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:16,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:16,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:16,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:17,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.207s +2025-10-01 20:40:17,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.207s (avg: 0.207s/image) +2025-10-01 20:40:17,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:21,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:21,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:22,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:22,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:40:22,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:40:22,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:22,328 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:40:22,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:40:22,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:40:22,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 20:40:22,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-01 20:40:22,614 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:40:30,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:30,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:30,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:30,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:40:30,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:40:30,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:31,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:31,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:31,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:32,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:40:32,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:40:32,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:32,441 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:40:32,468 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:40:32,551 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=8.828 +2025-10-01 20:40:32,552 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 20:40:32,552 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:40:32,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:32,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:32,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:32,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:40:32,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:40:32,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:35,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:35,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:35,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:35,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:40:35,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:40:35,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:35,676 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:40:35,701 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:40:35,784 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=5.506 +2025-10-01 20:40:35,784 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:40:35,784 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:40:38,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:38,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:38,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:38,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:40:38,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:40:38,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:38,913 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:40:38,937 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:40:39,021 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=6.914 +2025-10-01 20:40:39,021 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 20:40:39,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:40:40,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:40,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:40,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:40,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:40:40,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:40:40,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:45,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:45,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:45,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:45,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:40:45,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:40:45,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:46,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:46,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:46,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:46,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:40:46,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:40:46,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:48,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:48,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:48,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:48,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:40:48,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:40:48,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:49,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:49,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:49,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:49,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:40:49,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:40:49,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:49,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:49,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:49,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:50,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 20:40:50,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 20:40:50,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:50,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:50,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:50,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:50,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:40:50,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:40:50,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:50,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:50,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:50,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:50,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:40:50,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:40:50,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:51,276 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:40:51,304 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:40:51,387 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.172 +2025-10-01 20:40:51,388 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:40:51,388 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 20:40:54,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:54,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:54,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:55,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:40:55,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:40:55,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:59,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:40:59,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:40:59,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:40:59,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:40:59,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:40:59,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:40:59,837 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:40:59,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:40:59,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:41:00,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 20:41:00,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 20:41:00,116 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:41:03,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:03,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:03,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:03,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:41:03,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:41:03,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:06,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:06,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:06,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:06,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:41:06,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:41:06,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:12,743 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:41:12,769 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:41:12,849 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.494 +2025-10-01 20:41:12,849 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:41:12,850 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:41:15,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:15,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:15,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:15,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:41:15,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:41:15,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:21,798 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:41:21,822 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:41:21,897 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.007 +2025-10-01 20:41:21,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:41:21,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:41:28,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:28,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:28,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:28,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:41:28,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:41:28,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:31,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:31,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:31,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:31,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:41:31,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:41:31,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:34,558 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:41:34,602 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:41:34,688 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.731 +2025-10-01 20:41:34,688 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 20:41:34,688 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 20:41:35,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:35,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:35,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:35,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:41:35,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:41:35,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:36,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:36,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:36,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:36,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:41:36,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:41:36,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:40,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:40,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:40,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:40,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 20:41:40,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 20:41:40,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:41,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:41,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:41,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:42,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:41:42,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:41:42,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:43,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:43,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:43,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:43,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 20:41:43,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 20:41:43,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:44,969 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:41:45,009 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:41:45,095 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.510 +2025-10-01 20:41:45,095 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 20:41:45,095 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 20:41:47,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:47,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:47,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:48,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:41:48,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:41:48,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:49,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:49,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:49,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:49,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:41:49,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:41:49,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:53,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:53,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:53,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:54,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:41:54,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:41:54,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:55,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:55,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:55,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:55,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:41:55,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:41:55,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:41:57,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:41:57,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:41:57,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:41:57,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:41:57,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:41:57,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:00,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:01,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:01,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:01,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:42:01,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:42:01,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:04,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:04,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:04,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:04,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 20:42:04,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 20:42:04,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:04,978 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:42:05,020 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:42:05,104 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.474 +2025-10-01 20:42:05,104 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 20:42:05,105 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:42:06,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:06,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:06,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:06,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 20:42:06,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 20:42:06,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:06,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:06,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:06,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:06,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 20:42:06,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 20:42:06,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:08,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:08,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:08,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:08,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:42:08,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:42:08,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:09,301 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:42:09,327 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:42:09,403 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=215.685 +2025-10-01 20:42:09,403 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:42:09,403 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:42:09,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:09,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:09,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:09,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:42:09,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:42:09,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:10,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:10,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:10,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:10,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:42:10,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:42:10,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:11,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:11,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:11,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:12,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:42:12,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:42:12,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:13,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:13,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:13,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:13,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:42:13,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:42:13,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:14,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:14,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:15,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:15,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.210s +2025-10-01 20:42:15,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.210s (avg: 0.210s/image) +2025-10-01 20:42:15,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:17,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:17,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:17,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:17,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:42:17,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:42:17,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:17,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:17,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:17,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:17,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:42:17,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:42:17,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:17,917 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:42:17,942 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:42:18,021 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.879 +2025-10-01 20:42:18,022 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:42:18,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:42:19,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:19,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:19,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:19,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 20:42:19,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 20:42:19,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:19,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:19,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:19,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:19,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:42:19,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:42:19,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:20,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:20,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:20,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:20,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 20:42:20,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 20:42:20,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:24,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:24,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:24,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:24,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:42:24,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:42:24,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:27,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:27,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:27,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:28,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 20:42:28,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 20:42:28,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:28,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:28,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:28,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:29,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:42:29,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:42:29,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:30,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:30,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:30,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:30,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:42:30,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:42:30,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:32,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:32,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:32,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:32,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:42:32,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:42:32,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:35,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:35,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:35,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:36,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:42:36,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:42:36,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:37,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:37,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:37,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:37,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:42:37,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:42:37,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:37,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:37,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:37,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:37,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:42:37,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:42:37,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:38,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:38,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:39,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:39,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:42:39,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:42:39,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:40,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:40,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:40,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:40,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:42:40,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:42:40,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:41,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:41,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:41,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:41,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:42:41,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:42:41,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:43,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:43,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:43,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:43,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:42:43,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:42:43,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:44,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:44,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:44,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:44,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:42:44,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:42:44,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:44,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:44,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:45,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:45,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:42:45,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:42:45,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:46,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:46,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:46,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:47,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:42:47,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:42:47,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:48,155 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:42:48,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:42:48,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:42:48,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 20:42:48,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 20:42:48,436 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:42:53,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:53,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:53,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:53,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:42:53,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:42:53,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:56,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:56,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:56,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:56,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:42:56,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:42:56,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:42:56,353 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:42:56,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:42:56,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:42:56,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 20:42:56,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 20:42:56,650 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:42:58,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:42:58,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:42:58,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:42:58,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:42:58,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:42:58,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:02,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:02,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:02,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:02,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:43:02,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:43:02,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:03,062 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:43:03,087 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:43:03,166 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.764 +2025-10-01 20:43:03,166 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:43:03,167 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:43:03,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:03,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:03,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:03,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:43:03,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:43:03,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:03,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:03,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:03,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:04,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:43:04,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:43:04,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:04,223 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:43:04,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:43:04,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:43:04,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 20:43:04,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 20:43:04,517 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:43:05,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:05,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:05,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:05,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:43:05,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:43:05,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:07,668 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:43:07,692 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:43:07,769 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.171 +2025-10-01 20:43:07,769 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:43:07,769 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:43:10,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:10,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:10,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:10,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 20:43:10,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 20:43:10,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:10,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:10,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:10,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:10,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:43:10,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:43:10,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:11,504 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:43:11,527 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:43:11,602 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.864 +2025-10-01 20:43:11,602 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:43:11,602 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:43:12,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:12,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:12,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:12,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:43:12,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:43:12,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:15,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:15,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:15,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:15,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:43:15,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:43:15,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:16,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:16,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:16,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:16,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:43:16,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:43:16,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:18,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:18,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:18,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:18,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:43:18,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:43:18,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:20,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:20,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:20,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:20,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 20:43:20,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 20:43:20,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:21,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:21,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:21,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:22,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:43:22,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:43:22,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:22,545 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:43:22,568 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:43:22,646 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.793 +2025-10-01 20:43:22,646 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:43:22,646 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:43:26,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:26,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:26,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:26,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:43:26,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:43:26,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:27,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:27,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:27,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:27,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:43:27,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:43:27,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:28,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:28,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:28,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:29,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:43:29,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:43:29,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:29,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:29,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:29,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:29,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:43:29,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:43:29,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:32,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:32,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:32,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:32,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:43:32,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:43:32,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:34,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:34,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:34,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:34,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:43:34,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:43:34,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:35,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:35,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:36,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:36,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:43:36,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:43:36,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:37,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:37,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:37,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:37,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:43:37,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:43:37,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:40,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:40,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:40,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:40,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:43:40,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:43:40,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:41,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:41,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:41,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:41,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:43:41,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:43:41,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:42,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:42,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:42,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:42,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:43:42,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:43:42,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:47,264 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 20:43:47,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 20:43:47,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 20:43:47,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.442s +2025-10-01 20:43:47,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.442s (avg: 0.147s/image) +2025-10-01 20:43:47,707 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 20:43:48,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:48,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:48,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:48,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:43:48,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:43:48,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:48,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:48,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:48,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:48,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:43:48,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:43:48,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:51,664 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:43:51,699 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:43:51,797 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.352 +2025-10-01 20:43:51,797 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 20:43:51,798 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 20:43:54,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:43:54,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:43:55,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:43:55,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:43:55,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:43:55,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:43:58,111 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:43:58,150 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:43:58,239 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.273 +2025-10-01 20:43:58,239 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 20:43:58,239 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 20:44:01,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:01,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:01,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:01,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:44:01,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:44:01,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:02,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:02,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:02,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:02,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:44:02,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:44:02,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:04,650 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:44:04,687 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:44:04,776 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.351 +2025-10-01 20:44:04,777 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 20:44:04,777 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 20:44:08,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:08,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:08,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:08,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:44:08,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:44:08,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:11,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:11,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:11,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:11,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:44:11,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:44:11,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:12,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:12,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:12,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:12,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:44:12,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:44:12,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:13,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:13,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:13,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:13,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:44:13,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:44:13,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:20,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:20,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:20,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:21,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:44:21,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:44:21,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:25,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:25,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:25,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:25,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:44:25,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:44:25,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:29,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:29,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:29,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:29,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:44:29,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:44:29,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:32,787 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:44:32,838 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:44:32,924 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.790 +2025-10-01 20:44:32,925 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 20:44:32,925 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 20:44:33,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:33,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:33,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:33,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:44:33,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:44:33,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:34,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:34,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:34,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:34,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:44:34,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:44:34,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:40,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:40,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:40,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:41,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:44:41,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:44:41,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:41,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:41,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:41,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:41,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:44:41,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:44:41,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:42,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:42,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:42,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:42,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:44:42,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:44:42,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:44,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:44,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:44,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:44,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:44:44,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:44:44,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:52,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:52,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:52,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:52,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:44:52,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:44:52,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:52,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:52,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:52,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:53,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:44:53,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:44:53,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:56,745 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:44:56,771 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:44:56,850 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.056 +2025-10-01 20:44:56,850 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:44:56,850 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:44:57,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:57,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:57,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:57,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:44:57,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:44:57,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:44:59,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:44:59,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:44:59,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:44:59,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:44:59,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:44:59,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:01,887 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:45:01,915 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:45:01,993 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.978 +2025-10-01 20:45:01,993 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:45:01,993 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:45:02,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:02,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:02,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:03,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:45:03,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:45:03,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:06,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:06,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:06,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:06,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:45:06,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:45:06,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:06,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:06,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:06,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:07,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:45:07,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:45:07,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:13,372 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:45:13,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:45:13,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:45:13,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 20:45:13,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 20:45:13,656 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:45:15,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:15,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:15,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:16,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 20:45:16,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 20:45:16,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:16,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:16,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:16,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:16,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:45:16,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:45:16,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:22,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:22,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:22,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:22,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:45:22,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:45:22,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:24,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:24,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:24,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:24,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:45:24,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:45:24,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:28,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:28,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:28,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:28,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:45:28,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:45:28,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:30,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:30,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:30,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:30,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:45:30,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:45:30,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:31,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:31,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:31,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:31,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:45:31,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:45:31,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:32,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:32,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:32,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:32,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:45:32,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:45:32,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:32,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:32,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:32,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:32,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:45:32,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:45:32,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:36,121 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:45:36,169 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:45:36,252 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.748 +2025-10-01 20:45:36,253 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 20:45:36,253 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:45:37,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:37,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:37,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:37,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:45:37,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:45:37,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:38,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:38,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:38,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:38,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:45:38,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:45:38,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:41,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:41,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:41,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:41,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:45:41,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:45:41,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:41,314 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:45:41,331 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:45:41,406 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.740 +2025-10-01 20:45:41,406 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:45:41,407 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:45:42,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:42,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:42,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:42,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 20:45:42,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 20:45:42,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:46,978 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:45:47,013 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:45:47,091 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.827 +2025-10-01 20:45:47,091 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:45:47,092 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:45:49,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:49,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:49,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:49,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:45:49,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:45:49,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:49,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:49,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:49,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:49,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:45:49,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:45:49,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:50,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:50,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:50,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:50,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:45:50,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:45:50,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:55,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:55,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:55,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:55,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:45:55,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:45:55,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:45:55,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:45:55,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:45:55,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:45:56,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:45:56,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:45:56,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:00,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:00,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:00,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:01,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:46:01,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:46:01,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:01,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:01,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:01,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:01,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:46:01,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:46:01,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:02,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:02,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:02,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:03,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:46:03,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:46:03,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:04,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:04,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:04,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:04,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:46:04,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:46:04,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:05,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:05,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:05,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:05,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 20:46:05,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 20:46:05,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:07,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:07,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:08,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:08,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:46:08,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:46:08,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:10,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:10,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:10,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:10,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:46:10,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:46:10,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:10,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:10,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:10,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:10,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:46:10,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:46:10,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:16,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:16,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:16,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:16,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:46:16,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:46:16,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:19,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:19,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:19,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:19,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 20:46:19,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 20:46:19,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:21,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:21,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:21,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:21,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:46:21,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:46:21,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:23,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:23,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:23,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:23,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:46:23,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:46:23,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:24,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:24,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:24,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:25,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 20:46:25,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 20:46:25,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:30,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:30,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:30,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:30,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:46:30,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:46:30,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:33,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:33,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:33,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:34,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:46:34,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:46:34,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:34,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:34,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:34,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:34,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:46:34,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:46:34,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:38,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:38,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:38,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:38,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:46:38,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:46:38,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:41,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:41,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:41,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:41,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:46:41,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:46:41,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:43,716 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:46:43,750 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:46:43,828 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.417 +2025-10-01 20:46:43,828 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:46:43,828 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:46:44,201 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:46:44,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:46:44,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:46:44,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 20:46:44,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 20:46:44,493 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:46:47,382 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:46:47,403 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:46:47,476 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.358 +2025-10-01 20:46:47,476 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 20:46:47,477 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 20:46:49,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:49,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:49,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:49,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:46:49,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:46:49,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:51,058 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:46:51,088 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:46:51,167 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.321 +2025-10-01 20:46:51,167 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:46:51,167 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:46:53,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:53,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:53,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:53,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:46:53,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:46:53,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:53,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:53,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:53,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:53,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 20:46:53,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 20:46:53,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:56,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:56,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:56,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:56,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:46:56,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:46:56,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:46:59,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:46:59,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:46:59,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:46:59,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:46:59,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:46:59,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:00,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:00,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:00,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:00,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:47:00,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:47:00,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:02,627 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:47:02,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:47:02,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:47:02,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 20:47:02,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 20:47:02,904 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:47:07,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:07,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:07,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:07,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:47:07,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:47:07,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:08,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:08,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:08,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:08,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:47:08,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:47:08,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:14,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:14,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:14,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:14,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:47:14,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:47:14,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:15,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:15,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:15,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:16,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:47:16,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:47:16,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:21,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:21,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:21,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:21,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:47:21,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:47:21,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:22,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:22,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:22,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:22,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:47:22,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:47:22,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:23,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:23,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:23,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:23,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:47:23,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:47:23,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:29,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:29,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:29,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:29,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:47:29,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:47:29,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:30,995 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:47:31,021 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:47:31,097 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.632 +2025-10-01 20:47:31,097 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:47:31,097 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:47:32,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:32,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:32,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:32,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:47:32,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:47:32,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:33,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:33,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:33,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:33,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:47:33,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:47:33,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:37,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:37,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:37,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:37,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:47:37,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:47:37,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:38,265 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:47:38,293 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(640, 640, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:47:38,370 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.893 +2025-10-01 20:47:38,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:47:38,370 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:47:39,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:39,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:39,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:39,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 20:47:39,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 20:47:39,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:42,641 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:47:42,675 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:47:42,756 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.445 +2025-10-01 20:47:42,757 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:47:42,757 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:47:42,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:42,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:42,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:43,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:47:43,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:47:43,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:45,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:45,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:45,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:45,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:47:45,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:47:45,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:46,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:46,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:46,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:46,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:47:46,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:47:46,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:51,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:51,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:51,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:51,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 20:47:51,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 20:47:51,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:51,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:51,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:51,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:51,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:47:51,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:47:51,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:53,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:53,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:53,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:53,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:47:53,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:47:53,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:53,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:53,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:53,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:53,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:47:53,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:47:53,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:54,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:54,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:54,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:54,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:47:54,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:47:54,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:57,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:57,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:57,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:57,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:47:57,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:47:57,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:47:59,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:47:59,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:47:59,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:47:59,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:47:59,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:47:59,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:03,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:03,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:03,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:04,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 20:48:04,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 20:48:04,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:05,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:05,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:05,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:05,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:48:05,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:48:05,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:06,262 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:48:06,295 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:48:06,378 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.485 +2025-10-01 20:48:06,378 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:48:06,378 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:48:13,217 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:48:13,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:48:13,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:48:13,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s +2025-10-01 20:48:13,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image) +2025-10-01 20:48:13,539 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:48:15,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:15,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:15,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:15,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:48:15,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:48:15,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:21,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:21,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:21,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:21,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 20:48:21,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 20:48:21,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:22,931 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:48:22,969 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:48:23,046 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.043 +2025-10-01 20:48:23,046 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:48:23,047 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:48:26,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:26,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:26,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:27,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:48:27,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:48:27,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:28,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:28,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:28,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:28,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:48:28,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:48:28,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:32,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:32,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:32,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:32,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:48:32,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:48:32,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:34,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:34,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:34,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:34,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:48:34,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:48:34,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:40,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:40,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:40,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:40,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:48:40,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:48:40,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:42,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:42,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:42,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:42,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:48:42,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:48:42,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:44,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:44,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:44,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:44,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:48:44,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:48:44,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:44,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:44,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:44,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:45,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:48:45,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:48:45,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:45,535 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:48:45,561 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:48:45,635 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.271 +2025-10-01 20:48:45,636 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:48:45,636 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:48:49,519 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:48:49,553 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:48:49,634 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.301 +2025-10-01 20:48:49,635 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:48:49,635 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:48:50,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:50,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:50,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:50,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:48:50,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:48:50,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:53,083 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:48:53,105 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:48:53,182 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.493 +2025-10-01 20:48:53,183 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:48:53,183 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:48:55,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:55,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:55,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:55,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 20:48:55,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 20:48:55,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:58,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:58,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:58,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:59,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:48:59,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:48:59,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:48:59,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:48:59,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:48:59,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:48:59,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:48:59,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:48:59,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:07,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:07,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:07,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:07,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:49:07,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:49:07,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:08,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:08,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:08,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:08,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:49:08,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:49:08,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:13,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:13,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:13,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:13,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 20:49:13,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 20:49:13,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:15,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:15,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:15,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:15,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:49:15,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:49:15,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:19,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:19,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:19,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:19,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 20:49:19,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 20:49:19,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:20,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:20,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:20,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:20,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:49:20,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:49:20,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:22,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:22,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:22,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:22,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 20:49:22,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 20:49:22,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:26,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:26,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:26,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:26,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:49:26,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:49:26,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:26,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:26,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:26,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:27,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 20:49:27,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 20:49:27,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:27,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:27,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:27,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:27,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:49:27,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:49:27,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:29,267 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:49:29,313 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:49:29,403 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.850 +2025-10-01 20:49:29,403 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 20:49:29,404 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 20:49:32,309 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:49:32,325 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:49:32,401 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.117 +2025-10-01 20:49:32,401 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:49:32,401 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:49:32,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:32,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:32,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:33,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:49:33,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:49:33,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:35,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:35,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:35,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:35,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.204s +2025-10-01 20:49:35,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image) +2025-10-01 20:49:35,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:38,216 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:49:38,266 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:49:38,362 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.551 +2025-10-01 20:49:38,362 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-01 20:49:38,362 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 20:49:40,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:40,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:41,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:41,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:49:41,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:49:41,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:41,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:41,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:41,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:41,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:49:41,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:49:41,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:44,622 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:49:44,666 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:49:44,763 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.631 +2025-10-01 20:49:44,763 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 20:49:44,763 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-01 20:49:49,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:49,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:49,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:49,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:49:49,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:49:49,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:50,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:50,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:50,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:50,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:49:50,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:49:50,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:54,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:54,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:54,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:54,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:49:54,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:49:54,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:55,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:55,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:55,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:55,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:49:55,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:49:55,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:56,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:56,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:56,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:56,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:49:56,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:49:56,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:49:59,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:49:59,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:49:59,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:49:59,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:49:59,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:49:59,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:01,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:01,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:01,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:01,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:50:01,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:50:01,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:01,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:01,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:01,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:01,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:50:01,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:50:01,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:03,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:03,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:04,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:04,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:50:04,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:50:04,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:07,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:07,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:07,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:07,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 20:50:07,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 20:50:07,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:08,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:08,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:08,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:09,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:50:09,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:50:09,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:11,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:11,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:11,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:12,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 20:50:12,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 20:50:12,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:12,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:12,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:12,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:12,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:50:12,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:50:12,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:16,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:16,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:16,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:16,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 20:50:16,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 20:50:16,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:16,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:16,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:16,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:16,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:50:16,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:50:16,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:19,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:19,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:19,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:19,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:50:19,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:50:19,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:20,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:20,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:20,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:20,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:50:20,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:50:20,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:21,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:21,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:21,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:21,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:50:21,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:50:21,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:21,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:21,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:21,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:21,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-01 20:50:21,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-01 20:50:21,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:24,812 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:50:24,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:50:24,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:50:25,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 20:50:25,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 20:50:25,095 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:50:28,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:28,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:28,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:29,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:50:29,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:50:29,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:29,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:29,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:29,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:29,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:50:29,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:50:29,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:30,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:30,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:30,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:30,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:50:30,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:50:30,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:31,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:31,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:31,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:31,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 20:50:31,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 20:50:31,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:34,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:34,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:34,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:34,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:50:34,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:50:34,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:39,146 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:50:39,174 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:50:39,265 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.821 +2025-10-01 20:50:39,265 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 20:50:39,265 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 20:50:40,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:40,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:40,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:40,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:50:40,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:50:40,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:40,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:40,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:40,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:41,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:50:41,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:50:41,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:42,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:42,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:42,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:42,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s +2025-10-01 20:50:42,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image) +2025-10-01 20:50:42,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:42,926 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:50:42,949 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:50:43,029 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.585 +2025-10-01 20:50:43,029 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:50:43,030 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:50:45,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:45,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:45,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:45,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:50:45,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:50:45,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:47,775 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:50:47,802 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:50:47,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.824 +2025-10-01 20:50:47,885 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:50:47,885 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 20:50:48,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:48,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:48,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:48,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:50:48,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:50:48,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:50,221 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:50:50,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:50:50,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:50:50,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 20:50:50,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 20:50:50,495 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:50:51,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:51,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:51,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:51,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:50:51,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:50:51,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:54,821 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:50:54,858 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:50:54,937 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.172 +2025-10-01 20:50:54,937 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:50:54,937 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 20:50:55,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:55,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:55,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:55,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:50:55,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:50:55,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:57,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:50:57,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:50:57,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:50:57,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:50:57,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:50:57,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:50:59,585 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:50:59,611 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:50:59,690 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.104 +2025-10-01 20:50:59,691 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:50:59,691 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:51:00,094 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:51:00,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:51:00,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:51:00,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 20:51:00,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 20:51:00,373 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:51:04,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:51:04,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:51:04,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:51:04,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 20:51:04,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 20:51:04,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:51:05,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:51:05,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:51:05,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:51:05,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:51:05,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:51:05,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:51:06,129 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:51:06,163 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:51:06,243 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.077 +2025-10-01 20:51:06,244 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:51:06,244 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:51:13,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:51:13,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:51:13,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:51:13,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:51:13,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:51:13,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:51:17,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:51:17,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:51:17,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:51:17,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:51:17,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:51:17,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:51:23,107 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:51:23,135 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:51:23,216 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.281 +2025-10-01 20:51:23,217 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:51:23,217 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:51:30,626 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:51:30,653 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:51:30,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.733 +2025-10-01 20:51:30,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 20:51:30,734 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 20:51:30,911 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:51:30,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:51:30,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:51:31,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 20:51:31,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 20:51:31,193 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:51:33,277 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:51:33,299 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:51:33,375 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.219 +2025-10-01 20:51:33,376 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:51:33,376 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:51:37,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:51:37,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:51:37,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:51:38,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:51:38,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:51:38,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:51:40,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:51:40,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:51:40,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:51:40,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:51:40,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:51:40,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:51:44,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:51:44,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:51:44,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:51:44,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 20:51:44,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 20:51:44,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:51:50,144 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:51:50,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:51:50,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:51:50,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 20:51:50,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 20:51:50,451 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:51:51,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:51:51,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:51:51,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:51:51,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:51:51,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:51:51,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:51:51,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:51:51,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:51:52,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:51:52,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:51:52,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:51:52,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:51:55,492 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:51:55,523 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:51:55,598 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.443 +2025-10-01 20:51:55,599 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:51:55,599 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:51:58,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:51:58,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:51:58,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:51:58,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:51:58,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:51:58,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:51:59,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:51:59,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:51:59,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:51:59,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:51:59,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:51:59,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:51:59,754 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:51:59,785 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:51:59,872 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.964 +2025-10-01 20:51:59,872 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 20:51:59,872 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 20:52:00,462 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:52:00,488 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:52:00,564 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.034 +2025-10-01 20:52:00,564 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 20:52:00,565 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:52:04,022 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:52:04,042 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:52:04,117 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.511 +2025-10-01 20:52:04,117 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:52:04,117 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:52:06,077 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:52:06,107 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:52:06,182 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.350 +2025-10-01 20:52:06,183 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:52:06,183 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:52:06,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:06,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:06,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:06,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:52:06,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:52:06,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:11,107 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:52:11,139 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:52:11,223 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.753 +2025-10-01 20:52:11,223 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 20:52:11,224 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 20:52:15,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:15,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:15,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:15,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:52:15,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:52:15,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:17,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:17,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:17,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:17,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 20:52:17,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 20:52:17,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:20,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:20,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:20,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:20,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:52:20,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:52:20,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:24,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:24,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:24,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:24,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:52:24,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:52:24,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:25,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:25,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:25,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:25,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:52:25,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:52:25,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:30,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:30,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:30,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:30,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:52:30,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:52:30,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:30,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:30,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:30,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:31,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:52:31,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:52:31,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:32,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:32,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:32,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:32,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:52:32,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:52:32,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:37,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:37,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:37,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:37,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:52:37,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:52:37,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:39,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:39,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:39,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:39,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:52:39,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:52:39,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:39,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:39,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:40,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:40,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:52:40,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:52:40,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:40,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:40,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:40,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:40,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:52:40,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:52:40,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:40,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:40,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:40,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:40,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 20:52:40,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 20:52:40,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:44,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:44,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:44,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:44,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:52:44,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:52:44,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:49,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:49,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:49,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:49,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 20:52:49,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 20:52:49,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:49,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:49,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:49,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:49,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:52:49,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:52:49,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:51,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:51,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:51,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:51,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:52:51,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:52:51,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:55,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:55,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:55,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:56,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:52:56,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:52:56,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:52:58,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:52:58,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:52:58,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:52:59,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:52:59,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:52:59,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:00,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:00,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:00,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:00,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 20:53:00,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 20:53:00,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:01,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:01,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:01,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:01,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:53:01,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:53:01,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:01,664 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:53:01,684 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:53:01,758 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.979 +2025-10-01 20:53:01,759 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 20:53:01,759 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:53:05,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:05,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:05,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:05,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-01 20:53:05,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-01 20:53:05,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:10,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:10,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:10,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:10,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 20:53:10,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 20:53:10,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:12,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:12,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:12,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:12,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:53:12,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:53:12,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:13,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:13,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:13,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:13,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:53:13,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:53:13,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:14,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:14,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:14,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:14,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:53:14,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:53:14,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:16,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:16,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:16,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:17,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 20:53:17,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 20:53:17,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:19,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:19,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:19,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:19,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:53:19,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:53:19,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:22,225 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:53:22,256 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:53:22,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.204 +2025-10-01 20:53:22,336 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:53:22,337 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:53:22,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:22,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:22,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:22,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:53:22,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:53:22,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:22,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:22,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:22,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:23,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:53:23,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:53:23,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:26,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:26,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:26,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:26,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:53:26,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:53:26,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:28,372 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:53:28,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:53:28,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:53:28,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 20:53:28,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 20:53:28,670 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:53:28,997 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:53:29,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:53:29,125 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.250 +2025-10-01 20:53:29,126 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 20:53:29,126 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:53:30,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:30,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:30,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:30,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:53:30,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:53:30,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:34,087 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:53:34,127 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:53:34,209 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.372 +2025-10-01 20:53:34,209 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 20:53:34,209 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:53:36,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:36,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:36,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:36,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:53:36,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:53:36,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:36,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:36,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:37,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:37,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:53:37,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:53:37,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:39,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:39,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:39,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:39,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:53:39,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:53:39,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:41,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:41,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:41,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:41,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:53:41,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:53:41,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:42,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:42,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:42,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:42,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:53:42,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:53:42,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:43,330 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:53:43,359 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 755, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:53:43,438 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.235 +2025-10-01 20:53:43,438 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:53:43,439 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:53:43,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:43,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:43,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:43,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:53:43,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:53:43,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:48,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:48,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:48,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:48,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:53:48,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:53:48,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:50,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:50,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:51,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:51,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:53:51,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:53:51,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:51,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:51,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:51,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:51,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:53:51,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:53:51,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:53:56,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:53:56,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:53:56,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:53:56,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:53:56,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:53:56,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:00,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:00,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:00,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:00,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 20:54:00,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 20:54:00,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:01,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:01,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:01,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:01,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:54:01,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:54:01,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:06,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:06,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:06,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:07,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:54:07,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:54:07,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:22,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:22,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:22,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:22,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.204s +2025-10-01 20:54:22,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image) +2025-10-01 20:54:22,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:24,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:24,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:24,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:24,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 20:54:24,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 20:54:24,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:26,378 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:54:26,407 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:54:26,496 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.206 +2025-10-01 20:54:26,496 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 20:54:26,496 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 20:54:28,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:28,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:28,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:28,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:54:28,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:54:28,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:30,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:30,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:30,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:30,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:54:30,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:54:30,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:30,384 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:54:30,405 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:54:30,479 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.942 +2025-10-01 20:54:30,479 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 20:54:30,480 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 20:54:34,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:34,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:34,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:35,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:54:35,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:54:35,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:36,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:36,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:36,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:36,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:54:36,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:54:36,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:37,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:37,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:37,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:37,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:54:37,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:54:37,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:50,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:50,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:50,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:50,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 20:54:50,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 20:54:50,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:56,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:56,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:56,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:56,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:54:56,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:54:56,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:54:58,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:54:58,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:54:58,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:54:58,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:54:58,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:54:58,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:55:05,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:55:05,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:55:05,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:55:05,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 20:55:05,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 20:55:05,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:55:07,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:55:07,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:55:07,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:55:07,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:55:07,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:55:07,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:55:12,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:55:12,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:55:12,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:55:12,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:55:12,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:55:12,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:55:15,575 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:55:15,600 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:55:15,677 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.688 +2025-10-01 20:55:15,677 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:55:15,677 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:55:19,655 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:55:19,684 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:55:19,766 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.724 +2025-10-01 20:55:19,766 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 20:55:19,766 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:55:20,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:55:20,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:55:20,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:55:20,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:55:20,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:55:20,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:55:22,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:55:22,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:55:22,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:55:22,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 20:55:22,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 20:55:22,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:55:22,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:55:22,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:55:22,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:55:22,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 20:55:22,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 20:55:22,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:55:23,546 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:55:23,596 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:55:23,684 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=222.218 +2025-10-01 20:55:23,684 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 20:55:23,684 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 20:55:28,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:55:28,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:55:28,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:55:28,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:55:28,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:55:28,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:55:31,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:55:31,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:55:31,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:55:31,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:55:31,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:55:31,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:55:35,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:55:35,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:55:35,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:55:35,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 20:55:35,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 20:55:35,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:55:39,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:55:39,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:55:39,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:55:39,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:55:39,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:55:39,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:55:46,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:55:46,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:55:46,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:55:46,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:55:46,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:55:46,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:55:55,410 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:55:55,435 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:55:55,519 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.121 +2025-10-01 20:55:55,520 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 20:55:55,520 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 20:56:16,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:56:16,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:56:16,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:56:17,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 20:56:17,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 20:56:17,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:56:37,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:56:37,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:56:37,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:56:37,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:56:37,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:56:37,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:56:48,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:56:48,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:56:48,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:56:48,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:56:48,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:56:48,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:56:50,112 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:56:50,148 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(749, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:56:50,230 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.234 +2025-10-01 20:56:50,230 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 20:56:50,230 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 20:56:52,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:56:52,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:56:52,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:56:53,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:56:53,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:56:53,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:56:54,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:56:54,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:56:54,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:56:55,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:56:55,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:56:55,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:56:55,326 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:56:55,354 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:56:55,444 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.406 +2025-10-01 20:56:55,445 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 20:56:55,445 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 20:56:59,289 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:56:59,317 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:56:59,408 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.920 +2025-10-01 20:56:59,408 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 20:56:59,408 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 20:57:00,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:00,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:00,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:00,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 20:57:00,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 20:57:00,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:00,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:00,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:01,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:01,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:57:01,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:57:01,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:03,686 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:57:03,715 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:57:03,806 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.426 +2025-10-01 20:57:03,806 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 20:57:03,806 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 20:57:05,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:05,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:05,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:06,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:57:06,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:57:06,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:09,076 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:57:09,096 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:57:09,173 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.322 +2025-10-01 20:57:09,173 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:57:09,173 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:57:09,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:09,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:09,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:09,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:57:09,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:57:09,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:10,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:10,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:10,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:10,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:57:10,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:57:10,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:12,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:12,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:12,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:12,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:57:12,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:57:12,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:17,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:17,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:18,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:18,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:57:18,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:57:18,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:20,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:20,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:20,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:20,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:57:20,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:57:20,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:26,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:26,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:26,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:26,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:57:26,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:57:26,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:27,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:27,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:27,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:27,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:57:27,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:57:27,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:32,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:32,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:32,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:32,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:57:32,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:57:32,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:33,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:33,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:33,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:33,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:57:33,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:57:33,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:37,498 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:57:37,541 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:57:37,627 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.400 +2025-10-01 20:57:37,628 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 20:57:37,628 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 20:57:37,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:37,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:37,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:37,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 20:57:37,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 20:57:37,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:45,132 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:57:45,175 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:57:45,255 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=187.896 +2025-10-01 20:57:45,255 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:57:45,255 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:57:45,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:45,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:45,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:45,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:57:45,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:57:45,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:48,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:48,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:48,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:48,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:57:48,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:57:48,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:51,096 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:57:51,128 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:57:51,205 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.181 +2025-10-01 20:57:51,206 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 20:57:51,206 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:57:51,765 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:57:51,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:57:51,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:57:52,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 20:57:52,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 20:57:52,066 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:57:52,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:52,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:52,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:52,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:57:52,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:57:52,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:57,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:57,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:57,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:57,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:57:57,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:57:57,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:57:58,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:57:58,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:57:58,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:57:59,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:57:59,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:57:59,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:00,921 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:58:00,950 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:58:01,033 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.521 +2025-10-01 20:58:01,034 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 20:58:01,034 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:58:01,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:01,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:01,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:01,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:58:01,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:58:01,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:02,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:02,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:02,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:02,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:58:02,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:58:02,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:03,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:03,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:03,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:03,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 20:58:03,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 20:58:03,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:03,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:03,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:03,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:03,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:58:03,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:58:03,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:05,200 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:58:05,225 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:58:05,304 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.673 +2025-10-01 20:58:05,304 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 20:58:05,304 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:58:06,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:06,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:06,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:06,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:58:06,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:58:06,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:08,945 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:58:08,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:58:09,055 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.572 +2025-10-01 20:58:09,055 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 20:58:09,055 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 20:58:12,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:12,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:12,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:12,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:58:12,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:58:12,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:13,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:13,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:13,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:13,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:58:13,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:58:13,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:13,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:13,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:13,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:13,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:58:13,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:58:13,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:13,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:13,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:13,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:13,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:58:13,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:58:13,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:14,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:14,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:14,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:14,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 20:58:14,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 20:58:14,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:15,005 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:58:15,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:58:15,125 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.742 +2025-10-01 20:58:15,125 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:58:15,126 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 20:58:16,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:16,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:16,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:16,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 20:58:16,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 20:58:16,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:18,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:18,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:18,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:19,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:58:19,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:58:19,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:20,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:20,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:20,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:20,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:58:20,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:58:20,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:22,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:22,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:22,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:22,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:58:22,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:58:22,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:23,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:23,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:23,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:23,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 20:58:23,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 20:58:23,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:23,780 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:58:23,803 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:58:23,877 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.692 +2025-10-01 20:58:23,877 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 20:58:23,877 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 20:58:24,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:24,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:24,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:24,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:58:24,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:58:24,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:24,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:24,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:24,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:24,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 20:58:24,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 20:58:24,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:27,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:27,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:27,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:27,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:58:27,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:58:27,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:28,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:28,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:28,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:28,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:58:28,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:58:28,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:29,474 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:58:29,496 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:58:29,571 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.059 +2025-10-01 20:58:29,571 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:58:29,571 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 20:58:31,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:31,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:31,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:31,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 20:58:31,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 20:58:31,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:31,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:31,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:31,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:31,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 20:58:31,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 20:58:31,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:32,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:32,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:32,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:32,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 20:58:32,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 20:58:32,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:33,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:33,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:33,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:33,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:58:33,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:58:33,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:37,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:37,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:37,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:37,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:58:37,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:58:37,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:38,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:38,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:38,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:38,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 20:58:38,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 20:58:38,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:41,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:41,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:41,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:41,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:58:41,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:58:41,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:42,174 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:58:42,201 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:58:42,279 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.909 +2025-10-01 20:58:42,279 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:58:42,279 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 20:58:43,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:43,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:43,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:43,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:58:43,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:58:43,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:47,991 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:58:48,028 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:58:48,116 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.784 +2025-10-01 20:58:48,116 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 20:58:48,116 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 20:58:51,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:51,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:51,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:51,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 20:58:51,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 20:58:51,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:51,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:51,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:51,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:51,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:58:51,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:58:51,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:53,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:53,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:53,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:53,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 20:58:53,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 20:58:53,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:53,822 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:58:53,861 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 765, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:58:53,944 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.303 +2025-10-01 20:58:53,944 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 20:58:53,945 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 20:58:55,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:55,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:55,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:55,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 20:58:55,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 20:58:55,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:57,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:57,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:57,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:57,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:58:57,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:58:57,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:57,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:57,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:57,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:57,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:58:57,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:58:57,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:58:59,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:58:59,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:58:59,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:58:59,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:58:59,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:58:59,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:00,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:00,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:00,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:00,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:59:00,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:59:00,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:01,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:01,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:01,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:01,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:59:01,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:59:01,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:02,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:02,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:02,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:02,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 20:59:02,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 20:59:02,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:05,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:05,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:05,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:05,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:59:05,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:59:05,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:06,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:06,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:06,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:06,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:59:06,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:59:06,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:06,351 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:59:06,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:59:06,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:59:06,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 20:59:06,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 20:59:06,645 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:59:07,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:07,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:07,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:07,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:59:07,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:59:07,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:08,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:08,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:08,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:08,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:59:08,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:59:08,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:11,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:11,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:11,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:11,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 20:59:11,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 20:59:11,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:12,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:12,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:12,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:12,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 20:59:12,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 20:59:12,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:13,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:13,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:13,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:13,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 20:59:13,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 20:59:13,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:15,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:15,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:15,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:15,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 20:59:15,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 20:59:15,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:16,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:16,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:16,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:16,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:59:16,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:59:16,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:16,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:16,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:16,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:16,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 20:59:16,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 20:59:16,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:17,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:17,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:17,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:17,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 20:59:17,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 20:59:17,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:17,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:17,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:17,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:18,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:59:18,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:59:18,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:19,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:19,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:19,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:19,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 20:59:19,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 20:59:19,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:20,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:20,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:20,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:20,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 20:59:20,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 20:59:20,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:22,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:22,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:22,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:22,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 20:59:22,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 20:59:22,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:22,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:22,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:22,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:22,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:59:22,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:59:22,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:24,775 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:59:24,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:59:24,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:59:25,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 20:59:25,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 20:59:25,065 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:59:26,812 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:59:26,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:59:26,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:59:27,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 20:59:27,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 20:59:27,106 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:59:27,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:27,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:27,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:27,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:59:27,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:59:27,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:27,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:27,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:27,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:28,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 20:59:28,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 20:59:28,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:28,048 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:59:28,068 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:59:28,143 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.606 +2025-10-01 20:59:28,143 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 20:59:28,143 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 20:59:32,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:32,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:32,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:32,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:59:32,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:59:32,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:32,867 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 20:59:32,888 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 20:59:32,965 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.432 +2025-10-01 20:59:32,965 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 20:59:32,965 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 20:59:33,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:33,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:33,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:33,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:59:33,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:59:33,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:36,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:36,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:36,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:36,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 20:59:36,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 20:59:36,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:37,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:37,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:37,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:37,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:59:37,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:59:37,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:39,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:39,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:40,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:40,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:59:40,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:59:40,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:41,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:41,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:41,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:41,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:59:41,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:59:41,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:41,799 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 20:59:41,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 20:59:41,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 20:59:42,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 20:59:42,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 20:59:42,079 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 20:59:45,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:45,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:45,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:45,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 20:59:45,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 20:59:45,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:45,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:45,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:45,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:45,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 20:59:45,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 20:59:45,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:46,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:46,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:46,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:46,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 20:59:46,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 20:59:46,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:46,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:46,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:46,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:46,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 20:59:46,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 20:59:46,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:47,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:47,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:47,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:47,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 20:59:47,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 20:59:47,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:47,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:47,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:47,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:48,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 20:59:48,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 20:59:48,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:50,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:50,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:50,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:50,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 20:59:50,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 20:59:50,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:51,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:51,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:51,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:52,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 20:59:52,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 20:59:52,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:52,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:52,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:52,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:52,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 20:59:52,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 20:59:52,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:53,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:53,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:53,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:53,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 20:59:53,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 20:59:53,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:54,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:54,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:54,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:54,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 20:59:54,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 20:59:54,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:55,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:55,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:55,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:55,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 20:59:55,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 20:59:55,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:57,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:57,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:57,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:57,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 20:59:57,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 20:59:57,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:57,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:57,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:57,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:58,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 20:59:58,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 20:59:58,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:59,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:59,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:59,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:59,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 20:59:59,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 20:59:59,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 20:59:59,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 20:59:59,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 20:59:59,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 20:59:59,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 20:59:59,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 20:59:59,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:05,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:05,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:05,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:05,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:00:05,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:00:05,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:05,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:05,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:06,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:06,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:00:06,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:00:06,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:13,192 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:00:13,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:00:13,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:00:13,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 21:00:13,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 21:00:13,492 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:00:14,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:14,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:14,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:14,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 21:00:14,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 21:00:14,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:16,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:16,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:16,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:16,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:00:16,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:00:16,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:20,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:20,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:20,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:20,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:00:20,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:00:20,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:21,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:21,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:22,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:22,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:00:22,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:00:22,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:22,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:22,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:22,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:22,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:00:22,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:00:22,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:25,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:25,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:25,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:25,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:00:25,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:00:25,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:29,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:29,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:29,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:30,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:00:30,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:00:30,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:31,326 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:00:31,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:00:31,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:00:31,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 21:00:31,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 21:00:31,619 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:00:33,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:33,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:33,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:33,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:00:33,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:00:33,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:36,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:36,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:36,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:36,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:00:36,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:00:36,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:38,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:38,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:39,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:39,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:00:39,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:00:39,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:39,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:39,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:39,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:39,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:00:39,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:00:39,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:41,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:41,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:41,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:41,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 21:00:41,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 21:00:41,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:41,636 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:00:41,666 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:00:41,749 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.687 +2025-10-01 21:00:41,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:00:41,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:00:43,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:43,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:43,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:43,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:00:43,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:00:43,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:46,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:46,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:46,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:46,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:00:46,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:00:46,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:46,817 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:00:46,839 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:00:46,917 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.678 +2025-10-01 21:00:46,918 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:00:46,918 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:00:49,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:49,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:49,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:49,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:00:49,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:00:49,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:50,984 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:00:51,020 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:00:51,103 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.953 +2025-10-01 21:00:51,104 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:00:51,104 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:00:51,261 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:00:51,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:00:51,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:00:51,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 21:00:51,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 21:00:51,541 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:00:53,952 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:00:53,977 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:00:54,059 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.964 +2025-10-01 21:00:54,059 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:00:54,059 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:00:54,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:54,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:54,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:54,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:00:54,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:00:54,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:55,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:55,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:55,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:56,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:00:56,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:00:56,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:00:58,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:00:58,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:00:58,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:00:58,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:00:58,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:00:58,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:02,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:02,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:02,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:02,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:01:02,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:01:02,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:02,297 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:01:02,333 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:01:02,414 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.423 +2025-10-01 21:01:02,414 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:01:02,414 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:01:03,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:03,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:03,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:03,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:01:03,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:01:03,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:04,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:04,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:04,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:04,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:01:04,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:01:04,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:06,615 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:01:06,639 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:01:06,721 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.808 +2025-10-01 21:01:06,721 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:01:06,721 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:01:06,865 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:01:06,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:01:06,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:01:07,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 21:01:07,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 21:01:07,173 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:01:08,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:08,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:08,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:08,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:01:08,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:01:08,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:10,337 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:01:10,362 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:01:10,441 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.195 +2025-10-01 21:01:10,441 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:01:10,442 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:01:10,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:10,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:10,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:11,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:01:11,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:01:11,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:14,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:14,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:14,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:14,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:01:14,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:01:14,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:15,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:15,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:15,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:16,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:01:16,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:01:16,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:16,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:16,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:16,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:16,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:01:16,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:01:16,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:17,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:17,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:17,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:17,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:01:17,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:01:17,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:19,805 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:01:19,827 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:01:19,913 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.627 +2025-10-01 21:01:19,913 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 21:01:19,913 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 21:01:24,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:24,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:24,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:24,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:01:24,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:01:24,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:25,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:25,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:25,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:25,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:01:25,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:01:25,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:27,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:27,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:27,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:27,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:01:27,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:01:27,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:31,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:31,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:31,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:31,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:01:31,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:01:31,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:31,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:31,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:32,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:32,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:01:32,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:01:32,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:32,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:32,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:32,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:32,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:01:32,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:01:32,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:34,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:34,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:34,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:34,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:01:34,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:01:34,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:41,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:41,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:41,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:41,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:01:41,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:01:41,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:41,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:41,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:41,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:41,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 21:01:41,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 21:01:41,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:42,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:42,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:42,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:42,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:01:42,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:01:42,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:43,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:43,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:43,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:44,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:01:44,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:01:44,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:49,549 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:01:49,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:01:49,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:01:49,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 21:01:49,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 21:01:49,860 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:01:51,814 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:01:51,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:01:51,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:01:52,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 21:01:52,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 21:01:52,124 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:01:53,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:53,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:53,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:53,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 21:01:53,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 21:01:53,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:54,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:54,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:54,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:54,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:01:54,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:01:54,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:01:58,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:01:58,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:01:58,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:01:58,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:01:58,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:01:58,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:00,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:00,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:00,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:00,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:02:00,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:02:00,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:01,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:01,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:01,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:01,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:02:01,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:02:01,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:02,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:02,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:02,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:02,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:02:02,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:02:02,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:03,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:03,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:03,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:03,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:02:03,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:02:03,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:04,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:04,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:04,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:04,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:02:04,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:02:04,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:05,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:05,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:05,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:05,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 21:02:05,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 21:02:05,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:06,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:06,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:06,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:06,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:02:06,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:02:06,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:07,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:07,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:07,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:07,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:02:07,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:02:07,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:08,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:08,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:08,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:08,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:02:08,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:02:08,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:08,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:08,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:09,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:09,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:02:09,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:02:09,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:11,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:11,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:11,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:11,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:02:11,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:02:11,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:12,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:12,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:12,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:12,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:02:12,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:02:12,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:13,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:13,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:13,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:13,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:02:13,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:02:13,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:14,352 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:02:14,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:02:14,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:02:14,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 21:02:14,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 21:02:14,649 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:02:15,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:15,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:15,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:15,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 21:02:15,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 21:02:15,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:16,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:16,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:16,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:16,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:02:16,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:02:16,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:19,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:19,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:19,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:20,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:02:20,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:02:20,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:20,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:20,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:20,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:20,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:02:20,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:02:20,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:23,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:23,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:23,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:23,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:02:23,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:02:23,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:24,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:24,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:24,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:24,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:02:24,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:02:24,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:25,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:25,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:25,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:25,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 21:02:25,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 21:02:25,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:27,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:27,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:27,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:27,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:02:27,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:02:27,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:27,934 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:02:27,967 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:02:28,045 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.751 +2025-10-01 21:02:28,046 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:02:28,046 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:02:28,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:28,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:28,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:28,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:02:28,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:02:28,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:28,910 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:02:28,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:02:28,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:02:29,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 21:02:29,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 21:02:29,205 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:02:32,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:32,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:32,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:32,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 21:02:32,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 21:02:32,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:32,271 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:02:32,289 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:02:32,366 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.358 +2025-10-01 21:02:32,367 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:02:32,367 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:02:32,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:32,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:32,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:32,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 21:02:32,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 21:02:32,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:34,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:34,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:34,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:34,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:02:34,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:02:34,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:35,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:35,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:35,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:35,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:02:35,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:02:35,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:36,833 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:02:36,856 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:02:36,933 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.037 +2025-10-01 21:02:36,933 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:02:36,934 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:02:37,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:37,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:37,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:38,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:02:38,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:02:38,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:38,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:38,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:38,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:38,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:02:38,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:02:38,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:38,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:38,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:38,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:38,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:02:38,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:02:38,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:41,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:41,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:41,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:41,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 21:02:41,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 21:02:41,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:43,715 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:02:43,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:02:43,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:02:44,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 21:02:44,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-01 21:02:44,024 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:02:44,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:44,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:44,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:45,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:02:45,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:02:45,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:46,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:46,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:46,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:46,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 21:02:46,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 21:02:46,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:46,661 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:02:46,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:02:46,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:02:46,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 21:02:46,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 21:02:46,949 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:02:48,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:48,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:48,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:48,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:02:48,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:02:48,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:49,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:49,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:49,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:49,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:02:49,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:02:49,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:52,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:52,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:52,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:52,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 21:02:52,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 21:02:52,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:52,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:52,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:52,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:52,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:02:52,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:02:52,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:52,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:52,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:52,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:53,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:02:53,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:02:53,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:55,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:55,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:56,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:56,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 21:02:56,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 21:02:56,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:58,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:58,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:58,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:58,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:02:58,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:02:58,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:02:59,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:02:59,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:02:59,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:02:59,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:02:59,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:02:59,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:05,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:05,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:05,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:05,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:03:05,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:03:05,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:11,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:11,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:11,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:11,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 21:03:11,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 21:03:11,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:14,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:14,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:14,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:14,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-01 21:03:14,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-01 21:03:14,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:14,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:14,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:14,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:15,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-01 21:03:15,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-01 21:03:15,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:16,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:16,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:16,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:16,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:03:16,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:03:16,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:16,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:16,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:16,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:16,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:03:16,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:03:16,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:17,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:17,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:17,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:17,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:03:17,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:03:17,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:18,765 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:03:18,793 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:03:18,876 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=156.957 +2025-10-01 21:03:18,876 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:03:18,876 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:03:22,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:22,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:22,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:22,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 21:03:22,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 21:03:22,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:22,868 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:03:22,895 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:03:22,971 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=198.328 +2025-10-01 21:03:22,972 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:03:22,972 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:03:23,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:23,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:23,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:23,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:03:23,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:03:23,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:26,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:26,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:26,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:26,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:03:26,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:03:26,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:28,593 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:03:28,634 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:03:28,715 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.833 +2025-10-01 21:03:28,715 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:03:28,715 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:03:31,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:31,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:31,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:31,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:03:31,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:03:31,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:34,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:34,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:34,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:34,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 21:03:34,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 21:03:34,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:35,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:35,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:35,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:35,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:03:35,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:03:35,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:36,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:36,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:36,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:36,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:03:36,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:03:36,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:37,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:37,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:37,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:37,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:03:37,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:03:37,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:42,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:42,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:42,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:42,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 21:03:42,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 21:03:42,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:43,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:43,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:43,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:43,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:03:43,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:03:43,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:44,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:44,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:44,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:45,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:03:45,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:03:45,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:46,658 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:03:46,701 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:03:46,779 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.743 +2025-10-01 21:03:46,780 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:03:46,780 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:03:46,806 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:03:46,819 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:03:46,882 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.473 +2025-10-01 21:03:46,882 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.062s +2025-10-01 21:03:46,882 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.063s +2025-10-01 21:03:50,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:50,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:50,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:51,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:03:51,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:03:51,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:51,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:51,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:51,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:51,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:03:51,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:03:51,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:52,909 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:03:52,936 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:03:53,018 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.297 +2025-10-01 21:03:53,018 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:03:53,018 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:03:54,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:54,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:54,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:54,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:03:54,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:03:54,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:56,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:56,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:56,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:56,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 21:03:56,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 21:03:56,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:03:56,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:03:56,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:03:56,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:03:57,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:03:57,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:03:57,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:02,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:02,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:02,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:02,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:04:02,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:04:02,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:03,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:03,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:04,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:04,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 21:04:04,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 21:04:04,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:05,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:05,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:05,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:05,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:04:05,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:04:05,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:09,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:09,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:09,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:09,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:04:09,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:04:09,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:13,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:13,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:13,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:13,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:04:13,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:04:13,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:14,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:14,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:14,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:14,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:04:14,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:04:14,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:20,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:20,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:20,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:20,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:04:20,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:04:20,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:22,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:22,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:22,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:22,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:04:22,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:04:22,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:22,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:22,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:22,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:22,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 21:04:22,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 21:04:22,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:26,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:26,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:26,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:26,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:04:26,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:04:26,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:27,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:27,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:27,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:27,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:04:27,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:04:27,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:28,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:28,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:28,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:28,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:04:28,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:04:28,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:32,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:32,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:32,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:32,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:04:32,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:04:32,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:33,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:33,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:33,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:33,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:04:33,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:04:33,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:33,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:33,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:33,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:33,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:04:33,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:04:33,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:36,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:36,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:36,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:36,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:04:36,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:04:36,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:37,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:37,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:37,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:38,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:04:38,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:04:38,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:41,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:41,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:41,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:41,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 21:04:41,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 21:04:41,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:42,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:42,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:42,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:42,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:04:42,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:04:42,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:43,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:43,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:43,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:43,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:04:43,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:04:43,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:44,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:44,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:44,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:44,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:04:44,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:04:44,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:46,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:46,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:46,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:46,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:04:46,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:04:46,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:47,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:47,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:47,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:47,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:04:47,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:04:47,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:48,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:48,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:48,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:48,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:04:48,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:04:48,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:50,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:51,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:51,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:51,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:04:51,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:04:51,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:51,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:51,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:51,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:51,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:04:51,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:04:51,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:54,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:54,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:54,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:54,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:04:54,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:04:54,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:55,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:55,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:55,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:56,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:04:56,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:04:56,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:57,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:04:57,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:04:57,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:04:57,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:04:57,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:04:57,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:04:58,524 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:04:58,564 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:04:58,653 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.133 +2025-10-01 21:04:58,653 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 21:04:58,653 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 21:05:02,922 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:05:02,944 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:05:03,025 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.486 +2025-10-01 21:05:03,025 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:05:03,026 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:05:03,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:03,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:03,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:03,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:05:03,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:05:03,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:05,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:05,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:05,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:05,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:05:05,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:05:05,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:06,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:06,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:06,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:06,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:05:06,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:05:06,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:07,285 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:05:07,322 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:05:07,406 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.486 +2025-10-01 21:05:07,406 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 21:05:07,407 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 21:05:11,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:11,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:11,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:11,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:05:11,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:05:11,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:12,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:12,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:12,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:12,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:05:12,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:05:12,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:15,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:15,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:15,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:15,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:05:15,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:05:15,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:20,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:20,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:20,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:20,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 21:05:20,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 21:05:20,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:21,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:21,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:21,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:21,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:05:21,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:05:21,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:26,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:26,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:26,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:26,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:05:26,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:05:26,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:27,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:27,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:27,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:27,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:05:27,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:05:27,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:30,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:30,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:30,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:30,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:05:30,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:05:30,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:31,067 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:05:31,084 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:05:31,160 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.255 +2025-10-01 21:05:31,160 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:05:31,160 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:05:31,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:31,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:31,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:31,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 21:05:31,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 21:05:31,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:35,163 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:05:35,193 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:05:35,275 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.016 +2025-10-01 21:05:35,275 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:05:35,275 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:05:37,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:37,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:37,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:37,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:05:37,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:05:37,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:37,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:37,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:37,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:37,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:05:37,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:05:37,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:38,878 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:05:38,905 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:05:38,989 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=184.455 +2025-10-01 21:05:38,989 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 21:05:38,989 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 21:05:39,429 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:05:39,453 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:05:39,534 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.069 +2025-10-01 21:05:39,534 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:05:39,534 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:05:43,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:43,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:44,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:44,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:05:44,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:05:44,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:44,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:44,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:44,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:44,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:05:44,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:05:44,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:46,549 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:05:46,589 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:05:46,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.709 +2025-10-01 21:05:46,676 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 21:05:46,676 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 21:05:49,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:49,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:49,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:49,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:05:49,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:05:49,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:51,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:51,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:51,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:51,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:05:51,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:05:51,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:05:52,388 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:05:52,422 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:05:52,496 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.274 +2025-10-01 21:05:52,496 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:05:52,497 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:05:57,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:05:57,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:05:57,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:05:57,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:05:57,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:05:57,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:00,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:00,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:00,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:00,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:06:00,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:06:00,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:01,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:01,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:01,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:01,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:06:01,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:06:01,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:02,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:02,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:02,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:02,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:06:02,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:06:02,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:02,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:02,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:02,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:02,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:06:02,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:06:02,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:05,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:05,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:06,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:06,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 21:06:06,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 21:06:06,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:06,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:06,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:06,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:06,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:06:06,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:06:06,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:08,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:08,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:08,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:08,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:06:08,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:06:08,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:08,961 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:06:08,986 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:06:09,066 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.793 +2025-10-01 21:06:09,066 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:06:09,066 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:06:11,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:11,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:11,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:11,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 21:06:11,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 21:06:11,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:13,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:13,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:13,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:13,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:06:13,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:06:13,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:13,306 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:06:13,332 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:06:13,406 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.296 +2025-10-01 21:06:13,407 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:06:13,407 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:06:13,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:13,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:13,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:13,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:06:13,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:06:13,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:15,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:15,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:15,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:15,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:06:15,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:06:15,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:17,550 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:06:17,573 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:06:17,652 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.670 +2025-10-01 21:06:17,652 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:06:17,652 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:06:18,784 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:06:18,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:06:18,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:06:19,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 21:06:19,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 21:06:19,076 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:06:20,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:20,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:20,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:20,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:06:20,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:06:20,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:22,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:22,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:22,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:22,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:06:22,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:06:22,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:24,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:24,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:24,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:24,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:06:24,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:06:24,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:25,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:25,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:25,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:25,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:06:25,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:06:25,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:25,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:25,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:25,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:25,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:06:25,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:06:25,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:29,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:29,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:29,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:29,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:06:29,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:06:29,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:32,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:32,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:32,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:32,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:06:32,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:06:32,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:33,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:33,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:33,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:33,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:06:33,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:06:33,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:33,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:33,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:33,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:33,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:06:33,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:06:33,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:36,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:36,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:36,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:36,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:06:36,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:06:36,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:37,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:37,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:37,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:37,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:06:37,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:06:37,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:37,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:37,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:37,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:37,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:06:37,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:06:37,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:38,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:38,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:38,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:38,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:06:38,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:06:38,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:41,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:41,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:41,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:41,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:06:41,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:06:41,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:41,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:41,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:41,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:42,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:06:42,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:06:42,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:44,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:44,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:44,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:44,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:06:44,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:06:44,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:45,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:45,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:45,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:45,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:06:45,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:06:45,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:45,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:45,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:45,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:45,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:06:45,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:06:45,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:46,135 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:06:46,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:06:46,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:06:46,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 21:06:46,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 21:06:46,423 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:06:48,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:48,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:48,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:48,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:06:48,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:06:48,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:51,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:51,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:51,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:51,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:06:51,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:06:51,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:52,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:52,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:52,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:52,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:06:52,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:06:52,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:54,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:54,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:54,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:54,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:06:54,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:06:54,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:54,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:54,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:54,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:54,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:06:54,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:06:54,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:55,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:55,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:55,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:55,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:06:55,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:06:55,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:55,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:55,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:55,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:55,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:06:55,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:06:55,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:06:58,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:06:58,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:06:58,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:06:58,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:06:58,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:06:58,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:01,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:01,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:01,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:01,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:07:01,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:07:01,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:02,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:02,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:02,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:02,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:07:02,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:07:02,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:03,074 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:07:03,110 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:07:03,191 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.150 +2025-10-01 21:07:03,191 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:07:03,191 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:07:06,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:06,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:06,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:06,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:07:06,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:07:06,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:07,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:07,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:07,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:07,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:07:07,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:07:07,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:08,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:08,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:08,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:08,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 21:07:08,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 21:07:08,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:10,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:10,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:10,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:10,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:07:10,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:07:10,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:10,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:10,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:10,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:11,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:07:11,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:07:11,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:11,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:11,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:11,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:11,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:07:11,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:07:11,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:13,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:13,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:13,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:13,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:07:13,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:07:13,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:15,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:15,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:15,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:15,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:07:15,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:07:15,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:16,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:16,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:16,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:16,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:07:16,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:07:16,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:17,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:17,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:17,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:17,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:07:17,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:07:17,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:18,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:18,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:18,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:18,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:07:18,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:07:18,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:18,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:18,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:19,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:19,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:07:19,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:07:19,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:19,267 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:07:19,296 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:07:19,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.394 +2025-10-01 21:07:19,379 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:07:19,380 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:07:23,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:23,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:23,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:23,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:07:23,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:07:23,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:23,822 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:07:23,849 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:07:23,926 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.049 +2025-10-01 21:07:23,927 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:07:23,927 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:07:26,805 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:07:26,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:07:26,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:07:27,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 21:07:27,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 21:07:27,093 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:07:27,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:27,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:27,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:27,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:07:27,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:07:27,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:28,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:28,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:28,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:28,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:07:28,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:07:28,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:28,324 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:07:28,348 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:07:28,425 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.646 +2025-10-01 21:07:28,426 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:07:28,426 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:07:33,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:33,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:33,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:34,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:07:34,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:07:34,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:34,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:34,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:34,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:34,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:07:34,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:07:34,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:34,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:34,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:34,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:34,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:07:34,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:07:34,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:37,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:37,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:37,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:37,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:07:37,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:07:37,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:39,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:39,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:39,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:40,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:07:40,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:07:40,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:41,331 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:07:41,354 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:07:41,433 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.253 +2025-10-01 21:07:41,433 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:07:41,434 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:07:44,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:44,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:44,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:44,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:07:44,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:07:44,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:49,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:49,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:49,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:49,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:07:49,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:07:49,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:50,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:50,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:50,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:50,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:07:50,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:07:50,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:07:59,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:07:59,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:07:59,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:07:59,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:07:59,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:07:59,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:00,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:00,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:00,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:00,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:08:00,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:08:00,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:03,038 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:08:03,061 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:08:03,141 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.467 +2025-10-01 21:08:03,141 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:08:03,142 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:08:06,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:06,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:06,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:06,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:08:06,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:08:06,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:06,707 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:08:06,725 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:08:06,806 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.874 +2025-10-01 21:08:06,806 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:08:06,806 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:08:06,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:06,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:06,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:06,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:08:06,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:08:06,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:10,176 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:08:10,202 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:08:10,285 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.612 +2025-10-01 21:08:10,285 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:08:10,285 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:08:11,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:11,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:11,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:11,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:08:11,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:08:11,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:11,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:11,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:12,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:12,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:08:12,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:08:12,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:15,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:15,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:15,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:15,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:08:15,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:08:15,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:16,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:16,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:16,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:16,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:08:16,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:08:16,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:17,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:17,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:17,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:17,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:08:17,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:08:17,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:18,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:18,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:18,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:19,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:08:19,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:08:19,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:20,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:20,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:20,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:20,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:08:20,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:08:20,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:24,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:24,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:24,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:24,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:08:24,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:08:24,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:26,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:26,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:26,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:26,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:08:26,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:08:26,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:29,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:29,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:29,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:30,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:08:30,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:08:30,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:31,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:31,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:31,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:31,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:08:31,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:08:31,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:32,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:32,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:33,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:33,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:08:33,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:08:33,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:35,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:35,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:35,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:35,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:08:35,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:08:35,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:36,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:36,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:36,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:36,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:08:36,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:08:36,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:36,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:36,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:36,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:36,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:08:36,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:08:36,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:38,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:38,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:38,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:38,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:08:38,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:08:38,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:38,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:38,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:39,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:39,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:08:39,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:08:39,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:42,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:42,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:42,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:42,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:08:42,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:08:42,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:42,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:42,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:42,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:43,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:08:43,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:08:43,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:44,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:44,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:44,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:44,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:08:44,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:08:44,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:45,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:45,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:45,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:45,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:08:45,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:08:45,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:46,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:46,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:46,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:46,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:08:46,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:08:46,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:47,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:47,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:47,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:47,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:08:47,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:08:47,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:48,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:48,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:48,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:48,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:08:48,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:08:48,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:48,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:48,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:49,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:49,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:08:49,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:08:49,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:50,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:50,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:50,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:51,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:08:51,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:08:51,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:52,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:52,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:52,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:53,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:08:53,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:08:53,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:53,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:53,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:53,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:53,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 21:08:53,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 21:08:53,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:54,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:54,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:54,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:54,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:08:54,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:08:54,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:55,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:55,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:55,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:55,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:08:55,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:08:55,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:55,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:55,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:55,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:55,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:08:55,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:08:55,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:56,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:56,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:56,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:56,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:08:56,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:08:56,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:08:58,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:08:58,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:08:58,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:08:58,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:08:58,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:08:58,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:01,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:01,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:01,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:01,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:09:01,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:09:01,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:02,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:02,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:02,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:02,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:09:02,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:09:02,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:02,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:02,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:02,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:02,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:09:02,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:09:02,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:06,508 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:09:06,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:09:06,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:09:06,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 21:09:06,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 21:09:06,805 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:09:07,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:07,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:07,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:07,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:09:07,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:09:07,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:07,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:07,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:07,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:07,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:09:07,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:09:07,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:09,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:09,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:09,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:09,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:09:09,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:09:09,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:14,060 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:09:14,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:09:14,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:09:14,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.316s +2025-10-01 21:09:14,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.316s (avg: 0.158s/image) +2025-10-01 21:09:14,378 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:09:14,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:14,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:14,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:14,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:09:14,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:09:14,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:17,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:17,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:17,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:17,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:09:17,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:09:17,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:19,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:19,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:19,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:19,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:09:19,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:09:19,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:19,268 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:09:19,286 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:09:19,366 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.330 +2025-10-01 21:09:19,367 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:09:19,367 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:09:20,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:20,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:20,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:20,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:09:20,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:09:20,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:21,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:21,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:21,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:21,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 21:09:21,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 21:09:21,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:22,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:22,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:22,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:22,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:09:22,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:09:22,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:24,155 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:09:24,179 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:09:24,260 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.585 +2025-10-01 21:09:24,260 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:09:24,261 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:09:24,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:24,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:24,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:24,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:09:24,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:09:24,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:24,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:24,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:24,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:24,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:09:24,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:09:24,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:28,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:28,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:29,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:29,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:09:29,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:09:29,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:29,206 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:09:29,227 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:09:29,311 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.611 +2025-10-01 21:09:29,311 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 21:09:29,311 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 21:09:29,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:29,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:29,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:29,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:09:29,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:09:29,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:29,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:29,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:29,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:29,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:09:29,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:09:29,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:32,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:32,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:32,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:32,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:09:32,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:09:32,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:35,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:35,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:35,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:35,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:09:35,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:09:35,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:41,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:41,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:41,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:41,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:09:41,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:09:41,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:44,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:44,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:44,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:45,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:09:45,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:09:45,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:46,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:46,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:46,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:46,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:09:46,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:09:46,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:48,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:48,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:48,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:48,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:09:48,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:09:48,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:53,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:53,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:54,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:54,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:09:54,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:09:54,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:09:56,117 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:09:56,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:09:56,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:09:56,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.316s +2025-10-01 21:09:56,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.316s (avg: 0.158s/image) +2025-10-01 21:09:56,434 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:09:58,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:09:58,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:09:58,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:09:58,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:09:58,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:09:58,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:04,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:04,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:04,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:04,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:10:04,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:10:04,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:05,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:05,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:05,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:05,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 21:10:05,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 21:10:05,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:09,580 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:10:09,601 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:10:09,681 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.082 +2025-10-01 21:10:09,682 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:10:09,682 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:10:10,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:10,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:10,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:10,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:10:10,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:10:10,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:12,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:12,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:12,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:12,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:10:12,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:10:12,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:13,175 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:10:13,197 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:10:13,271 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.371 +2025-10-01 21:10:13,271 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:10:13,272 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:10:14,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:14,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:14,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:14,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:10:14,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:10:14,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:16,674 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:10:16,696 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:10:16,772 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.897 +2025-10-01 21:10:16,773 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:10:16,773 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:10:16,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:16,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:16,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:16,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:10:16,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:10:16,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:20,980 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:10:21,009 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:10:21,091 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.590 +2025-10-01 21:10:21,092 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:10:21,092 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:10:23,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:23,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:23,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:24,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:10:24,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:10:24,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:24,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:24,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:24,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:24,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:10:24,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:10:24,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:27,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:27,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:27,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:27,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:10:27,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:10:27,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:33,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:33,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:33,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:34,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:10:34,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:10:34,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:42,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:42,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:42,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:43,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:10:43,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:10:43,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:44,217 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:10:44,238 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:10:44,321 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.267 +2025-10-01 21:10:44,321 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:10:44,321 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 21:10:46,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:46,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:46,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:46,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:10:46,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:10:46,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:48,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:48,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:48,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:49,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 21:10:49,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 21:10:49,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:49,740 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:10:49,761 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:10:49,837 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.435 +2025-10-01 21:10:49,837 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:10:49,837 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:10:52,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:52,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:52,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:52,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:10:52,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:10:52,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:54,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:54,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:54,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:54,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:10:54,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:10:54,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:54,909 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:10:54,939 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:10:55,017 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=167.350 +2025-10-01 21:10:55,018 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:10:55,018 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:10:55,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:55,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:55,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:55,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:10:55,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:10:55,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:10:57,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:10:57,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:10:57,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:10:57,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:10:57,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:10:57,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:00,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:00,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:00,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:00,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:11:00,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:11:00,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:01,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:01,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:01,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:01,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:11:01,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:11:01,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:03,232 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:11:03,254 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:11:03,331 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=169.924 +2025-10-01 21:11:03,332 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:11:03,332 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:11:03,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:03,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:03,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:03,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:11:03,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:11:03,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:10,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:10,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:10,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:10,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:11:10,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:11:10,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:12,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:12,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:12,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:12,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:11:12,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:11:12,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:13,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:13,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:13,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:13,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:11:13,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:11:13,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:21,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:21,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:21,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:21,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +2025-10-01 21:11:21,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +2025-10-01 21:11:21,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:21,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:21,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:21,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:21,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:11:21,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:11:21,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:22,367 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 21:11:22,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 21:11:22,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 21:11:22,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.407s +2025-10-01 21:11:22,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.407s (avg: 0.136s/image) +2025-10-01 21:11:22,775 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 21:11:23,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:23,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:23,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:23,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:11:23,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:11:23,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:24,018 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:11:24,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:11:24,120 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.771 +2025-10-01 21:11:24,121 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:11:24,121 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:11:28,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:28,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:28,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:28,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:11:28,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:11:28,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:28,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:28,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:28,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:28,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:11:28,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:11:28,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:30,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:30,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:30,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:30,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:11:30,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:11:30,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:31,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:31,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:31,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:31,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:11:31,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:11:31,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:31,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:31,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:31,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:31,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:11:31,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:11:31,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:32,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:32,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:32,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:32,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:11:32,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:11:32,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:33,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:33,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:33,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:33,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:11:33,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:11:33,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:37,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:37,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:37,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:38,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:11:38,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:11:38,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:38,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:38,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:38,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:38,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 21:11:38,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 21:11:38,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:38,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:38,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:38,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:38,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:11:38,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:11:38,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:38,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:38,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:38,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:39,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:11:39,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:11:39,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:41,507 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:11:41,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:11:41,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:11:41,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 21:11:41,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 21:11:41,800 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:11:42,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:42,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:42,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:42,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:11:42,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:11:42,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:43,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:43,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:43,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:43,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:11:43,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:11:43,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:45,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:45,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:45,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:45,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:11:45,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:11:45,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:48,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:48,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:48,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:48,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:11:48,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:11:48,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:52,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:52,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:52,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:52,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:11:52,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:11:52,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:53,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:53,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:53,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:54,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 21:11:54,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 21:11:54,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:54,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:11:54,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:11:54,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:11:54,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:11:54,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:11:54,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:11:58,019 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:11:58,055 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 716, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:11:58,141 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.973 +2025-10-01 21:11:58,142 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 21:11:58,142 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 21:12:01,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:01,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:01,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:01,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:12:01,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:12:01,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:02,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:02,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:02,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:03,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:12:03,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:12:03,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:03,801 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:12:03,823 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(725, 724, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:12:03,898 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.774 +2025-10-01 21:12:03,898 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:12:03,898 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:12:04,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:04,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:04,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:04,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:12:04,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:12:04,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:10,483 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:12:10,521 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(894, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:12:10,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.481 +2025-10-01 21:12:10,603 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:12:10,603 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:12:11,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:11,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:11,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:11,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:12:11,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:12:11,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:13,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:13,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:13,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:13,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:12:13,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:12:13,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:17,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:17,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:17,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:17,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 21:12:17,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 21:12:17,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:17,751 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:12:17,776 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:12:17,852 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.818 +2025-10-01 21:12:17,852 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:12:17,852 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:12:21,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:21,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:21,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:21,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:12:21,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:12:21,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:21,745 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:12:21,768 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:12:21,842 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.631 +2025-10-01 21:12:21,842 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:12:21,842 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:12:22,356 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:12:22,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:12:22,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:12:22,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 21:12:22,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 21:12:22,655 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:12:25,208 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:12:25,230 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:12:25,307 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=5.459 +2025-10-01 21:12:25,307 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:12:25,308 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:12:26,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:26,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:26,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:26,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 21:12:26,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 21:12:26,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:28,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:28,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:28,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:28,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:12:28,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:12:28,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:30,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:30,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:30,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:30,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 21:12:30,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 21:12:30,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:31,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:31,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:31,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:31,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:12:31,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:12:31,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:32,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:32,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:32,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:32,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:12:32,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:12:32,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:32,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:32,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:32,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:32,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:12:32,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:12:32,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:33,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:33,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:33,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:33,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:12:33,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:12:33,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:34,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:34,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:34,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:34,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:12:34,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:12:34,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:35,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:35,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:35,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:35,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 21:12:35,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 21:12:35,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:35,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:35,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:35,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:35,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:12:35,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:12:35,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:38,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:38,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:38,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:38,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:12:38,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:12:38,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:39,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:39,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:39,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:39,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:12:39,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:12:39,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:40,604 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:12:40,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:12:40,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:12:40,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 21:12:40,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 21:12:40,893 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:12:41,814 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:12:41,833 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:12:41,905 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.107 +2025-10-01 21:12:41,905 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 21:12:41,905 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 21:12:42,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:42,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:42,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:42,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:12:42,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:12:42,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:45,326 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:12:45,361 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:12:45,453 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.161 +2025-10-01 21:12:45,454 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 21:12:45,454 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 21:12:45,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:45,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:45,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:45,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:12:45,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:12:45,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:46,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:46,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:46,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:47,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:12:47,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:12:47,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:49,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:49,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:49,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:50,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:12:50,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:12:50,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:50,299 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:12:50,333 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:12:50,432 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=187.958 +2025-10-01 21:12:50,433 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-01 21:12:50,433 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-01 21:12:51,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:51,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:51,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:52,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:12:52,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:12:52,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:53,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:53,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:53,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:53,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:12:53,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:12:53,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:53,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:53,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:53,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:53,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:12:53,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:12:53,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:55,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:55,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:55,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:55,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 21:12:55,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 21:12:55,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:56,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:56,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:56,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:56,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:12:56,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:12:56,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:12:59,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:12:59,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:12:59,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:12:59,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:12:59,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:12:59,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:01,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:01,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:01,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:01,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:13:01,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:13:01,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:01,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:01,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:01,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:02,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:13:02,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:13:02,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:02,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:02,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:02,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:02,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:13:02,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:13:02,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:03,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:03,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:03,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:03,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 21:13:03,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 21:13:03,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:06,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:06,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:06,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:07,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:13:07,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:13:07,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:07,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:07,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:08,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:08,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:13:08,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:13:08,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:08,502 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:13:08,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:13:08,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:13:08,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 21:13:08,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 21:13:08,781 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:13:10,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:10,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:10,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:10,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:13:10,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:13:10,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:10,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:10,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:10,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:10,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:13:10,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:13:10,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:11,810 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:13:11,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:13:11,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:13:12,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 21:13:12,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 21:13:12,094 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:13:13,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:13,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:13,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:14,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:13:14,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:13:14,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:14,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:14,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:14,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:15,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:13:15,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:13:15,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:15,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:15,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:15,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:15,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 21:13:15,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 21:13:15,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:18,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:18,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:18,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:18,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:13:18,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:13:18,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:19,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:19,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:19,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:19,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:13:19,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:13:19,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:20,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:20,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:20,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:21,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:13:21,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:13:21,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:21,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:21,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:21,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:22,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:13:22,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:13:22,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:23,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:23,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:23,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:23,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:13:23,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:13:23,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:24,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:24,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:24,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:24,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:13:24,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:13:24,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:27,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:27,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:27,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:27,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:13:27,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:13:27,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:28,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:28,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:28,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:28,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 21:13:28,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 21:13:28,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:28,959 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:13:28,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:13:29,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:13:29,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 21:13:29,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-01 21:13:29,262 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:13:29,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:29,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:29,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:29,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:13:29,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:13:29,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:34,414 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:13:34,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:13:34,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:13:34,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 21:13:34,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 21:13:34,705 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:13:35,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:35,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:35,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:35,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:13:35,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:13:35,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:36,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:36,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:36,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:36,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:13:36,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:13:36,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:40,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:40,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:40,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:40,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:13:40,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:13:40,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:41,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:41,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:41,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:41,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:13:41,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:13:41,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:45,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:45,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:45,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:46,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:13:46,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:13:46,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:46,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:46,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:46,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:46,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:13:46,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:13:46,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:47,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:47,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:47,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:47,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 21:13:47,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 21:13:47,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:52,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:52,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:52,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:52,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 21:13:52,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 21:13:52,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:52,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:52,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:52,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:52,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:13:52,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:13:52,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:54,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:54,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:54,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:54,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 21:13:54,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 21:13:54,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:13:55,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:13:55,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:13:55,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:13:55,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:13:55,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:13:55,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:04,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:04,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:05,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:05,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:14:05,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:14:05,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:05,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:05,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:05,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:05,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:14:05,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:14:05,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:11,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:11,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:11,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:11,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:14:11,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:14:11,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:15,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:15,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:15,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:15,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:14:15,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:14:15,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:17,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:17,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:17,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:17,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:14:17,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:14:17,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:19,255 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:14:19,273 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:14:19,354 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.541 +2025-10-01 21:14:19,354 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:14:19,355 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:14:19,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:19,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:19,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:19,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:14:19,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:14:19,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:20,685 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:14:20,706 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:14:20,780 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.535 +2025-10-01 21:14:20,781 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:14:20,781 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:14:22,653 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:14:22,676 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:14:22,757 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=13.781 +2025-10-01 21:14:22,757 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:14:22,757 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:14:24,323 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:14:24,347 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:14:24,424 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.641 +2025-10-01 21:14:24,424 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:14:24,424 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:14:24,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:24,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:24,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:24,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:14:24,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:14:24,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:25,881 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:14:25,906 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:14:25,985 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.256 +2025-10-01 21:14:25,985 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:14:25,985 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:14:26,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:26,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:26,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:26,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:14:26,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:14:26,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:28,659 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:14:28,680 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:14:28,754 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.520 +2025-10-01 21:14:28,754 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:14:28,755 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:14:30,848 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:14:30,890 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:14:30,975 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.571 +2025-10-01 21:14:30,976 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 21:14:30,976 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 21:14:32,559 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:14:32,577 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:14:32,653 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.572 +2025-10-01 21:14:32,653 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:14:32,653 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:14:32,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:32,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:32,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:32,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:14:32,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:14:32,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:33,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:33,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:33,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:33,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:14:33,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:14:33,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:34,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:34,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:34,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:34,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:14:34,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:14:34,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:35,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:35,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:35,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:35,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 21:14:35,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 21:14:35,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:37,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:37,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:37,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:37,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:14:37,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:14:37,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:38,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:38,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:38,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:38,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:14:38,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:14:38,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:39,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:39,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:39,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:39,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:14:39,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:14:39,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:44,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:44,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:44,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:44,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:14:44,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:14:44,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:44,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:44,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:44,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:44,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:14:44,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:14:44,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:45,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:45,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:45,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:45,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:14:45,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:14:45,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:49,826 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:14:49,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:14:49,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:14:50,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 21:14:50,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 21:14:50,130 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:14:53,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:53,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:53,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:53,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:14:53,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:14:53,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:55,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:55,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:55,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:55,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:14:55,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:14:55,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:14:58,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:14:58,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:14:58,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:14:59,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:14:59,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:14:59,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:02,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:02,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:02,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:02,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:15:02,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:15:02,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:04,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:04,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:04,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:04,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:15:04,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:15:04,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:12,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:12,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:12,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:12,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:15:12,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:15:12,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:13,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:13,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:13,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:13,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:15:13,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:15:13,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:16,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:16,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:16,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:17,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:15:17,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:15:17,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:17,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:17,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:17,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:17,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 21:15:17,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 21:15:17,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:22,083 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:15:22,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:15:22,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:15:22,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 21:15:22,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 21:15:22,383 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:15:25,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:25,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:25,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:26,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:15:26,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:15:26,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:32,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:32,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:32,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:32,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:15:32,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:15:32,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:34,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:34,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:34,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:34,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:15:34,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:15:34,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:37,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:37,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:37,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:37,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:15:37,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:15:37,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:39,021 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:15:39,046 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:15:39,125 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.780 +2025-10-01 21:15:39,125 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:15:39,126 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:15:39,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:39,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:39,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:39,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-01 21:15:39,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-01 21:15:39,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:40,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:40,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:40,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:40,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:15:40,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:15:40,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:42,310 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:15:42,330 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:15:42,408 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.429 +2025-10-01 21:15:42,408 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:15:42,408 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:15:43,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:43,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:43,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:44,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:15:44,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:15:44,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:45,588 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:15:45,612 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:15:45,691 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.510 +2025-10-01 21:15:45,692 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:15:45,692 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:15:46,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:46,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:46,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:46,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:15:46,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:15:46,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:47,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:47,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:47,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:48,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:15:48,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:15:48,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:50,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:50,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:50,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:50,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:15:50,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:15:50,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:50,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:50,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:50,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:50,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:15:50,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:15:50,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:54,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:54,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:54,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:54,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:15:54,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:15:54,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:55,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:55,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:55,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:55,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:15:55,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:15:55,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:56,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:56,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:56,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:56,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:15:56,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:15:56,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:57,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:57,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:57,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:57,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:15:57,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:15:57,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:15:58,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:15:58,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:15:58,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:15:59,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:15:59,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:15:59,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:01,558 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:16:01,590 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:16:01,671 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.101 +2025-10-01 21:16:01,671 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:16:01,671 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:16:03,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:03,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:03,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:03,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:16:03,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:16:03,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:07,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:07,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:07,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:08,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:16:08,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:16:08,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:09,847 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:16:09,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:16:09,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:16:10,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 21:16:10,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 21:16:10,139 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:16:11,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:11,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:11,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:11,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:16:11,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:16:11,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:12,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:12,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:12,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:12,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:16:12,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:16:12,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:13,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:13,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:13,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:13,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:16:13,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:16:13,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:16,399 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:16:16,426 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:16:16,504 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.314 +2025-10-01 21:16:16,505 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:16:16,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:16:16,551 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:16:16,563 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(602, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:16:16,627 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.375 +2025-10-01 21:16:16,627 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.064s +2025-10-01 21:16:16,627 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.065s +2025-10-01 21:16:16,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:16,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:16,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:16,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 21:16:16,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 21:16:16,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:19,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:19,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:19,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:19,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:16:19,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:16:19,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:19,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:19,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:19,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:20,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:16:20,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:16:20,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:20,914 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:16:20,958 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:16:21,036 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=224.782 +2025-10-01 21:16:21,036 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:16:21,037 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:16:21,085 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:16:21,097 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(602, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:16:21,160 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.227 +2025-10-01 21:16:21,160 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.062s +2025-10-01 21:16:21,160 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.063s +2025-10-01 21:16:22,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:22,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:22,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:22,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:16:22,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:16:22,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:24,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:24,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:24,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:24,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:16:24,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:16:24,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:25,138 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:16:25,158 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:16:25,236 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.546 +2025-10-01 21:16:25,237 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:16:25,237 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:16:25,409 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:16:25,435 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:16:25,513 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.391 +2025-10-01 21:16:25,513 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:16:25,513 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:16:30,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:30,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:30,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:30,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:16:30,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:16:30,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:37,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:37,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:37,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:37,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:16:37,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:16:37,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:40,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:40,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:40,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:40,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:16:40,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:16:40,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:44,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:44,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:44,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:44,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:16:44,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:16:44,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:45,495 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:16:45,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:16:45,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:16:45,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 21:16:45,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 21:16:45,796 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:16:46,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:46,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:46,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:46,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:16:46,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:16:46,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:50,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:50,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:50,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:50,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:16:50,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:16:50,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:52,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:52,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:52,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:52,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 21:16:52,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 21:16:52,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:53,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:53,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:53,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:53,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:16:53,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:16:53,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:55,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:55,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:55,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:55,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:16:55,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:16:55,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:57,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:57,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:57,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:57,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:16:57,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:16:57,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:16:57,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:16:57,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:16:57,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:16:58,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:16:58,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:16:58,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:00,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:00,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:00,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:01,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:17:01,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:17:01,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:01,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:01,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:01,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:01,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:17:01,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:17:01,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:02,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:02,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:02,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:02,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:17:02,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:17:02,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:03,518 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:17:03,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:17:03,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:17:03,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 21:17:03,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 21:17:03,813 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:17:06,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:06,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:06,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:06,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 21:17:06,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 21:17:06,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:08,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:08,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:08,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:08,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:17:08,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:17:08,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:09,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:09,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:09,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:10,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:17:10,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:17:10,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:14,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:14,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:14,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:14,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:17:14,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:17:14,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:16,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:16,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:16,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:16,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:17:16,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:17:16,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:17,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:17,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:17,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:17,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:17:17,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:17:17,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:20,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:20,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:20,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:20,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:17:20,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:17:20,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:21,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:21,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:22,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:22,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:17:22,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:17:22,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:24,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:17:24,580 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:17:24,665 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=156.297 +2025-10-01 21:17:24,666 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 21:17:24,666 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 21:17:25,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:25,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:25,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:25,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:17:25,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:17:25,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:27,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:27,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:27,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:27,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:17:27,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:17:27,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:28,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:28,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:28,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:28,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:17:28,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:17:28,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:30,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:30,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:30,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:30,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:17:30,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:17:30,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:32,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:32,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:32,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:32,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:17:32,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:17:32,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:33,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:33,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:33,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:33,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:17:33,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:17:33,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:34,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:34,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:34,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:34,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:17:34,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:17:34,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:36,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:36,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:36,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:36,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:17:36,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:17:36,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:38,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:38,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:38,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:38,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:17:38,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:17:38,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:38,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:38,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:38,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:39,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:17:39,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:17:39,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:39,939 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:17:39,962 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(680, 964, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:17:40,037 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.400 +2025-10-01 21:17:40,037 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:17:40,037 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:17:40,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:40,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:40,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:40,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:17:40,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:17:40,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:41,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:41,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:41,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:41,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:17:41,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:17:41,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:41,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:41,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:41,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:41,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:17:41,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:17:41,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:43,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:43,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:43,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:43,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:17:43,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:17:43,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:43,910 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:17:43,945 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:17:44,032 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.785 +2025-10-01 21:17:44,032 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 21:17:44,033 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 21:17:47,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:47,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:47,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:47,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:17:47,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:17:47,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:47,911 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:17:47,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:17:47,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:17:48,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-01 21:17:48,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +2025-10-01 21:17:48,172 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:17:48,346 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:17:48,360 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(904, 675, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:17:48,426 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.290 +2025-10-01 21:17:48,427 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 21:17:48,427 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.066s +2025-10-01 21:17:49,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:49,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:49,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:49,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:17:49,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:17:49,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:53,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:53,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:53,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:53,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:17:53,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:17:53,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:54,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:54,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:54,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:54,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:17:54,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:17:54,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:56,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:56,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:56,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:56,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:17:56,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:17:56,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:58,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:58,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:58,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:58,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:17:58,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:17:58,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:58,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:58,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:58,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:58,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:17:58,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:17:58,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:17:59,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:17:59,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:17:59,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:17:59,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:17:59,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:17:59,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:00,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:00,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:00,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:00,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:18:00,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:18:00,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:02,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:02,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:02,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:02,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 21:18:02,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 21:18:02,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:02,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:02,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:02,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:02,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 21:18:02,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 21:18:02,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:03,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:03,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:03,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:03,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:18:03,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:18:03,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:03,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:03,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:03,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:03,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 21:18:03,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 21:18:03,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:06,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:06,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:06,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:06,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:18:06,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:18:06,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:10,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:10,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:10,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:10,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:18:10,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:18:10,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:12,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:12,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:12,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:12,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:18:12,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:18:12,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:13,326 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:18:13,346 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:18:13,425 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.562 +2025-10-01 21:18:13,426 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:18:13,426 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:18:14,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:14,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:14,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:14,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:18:14,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:18:14,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:20,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:20,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:20,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:20,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:18:20,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:18:20,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:20,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:20,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:20,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:20,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:18:20,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:18:20,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:22,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:22,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:22,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:22,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:18:22,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:18:22,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:24,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:24,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:24,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:24,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:18:24,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:18:24,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:26,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:26,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:26,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:26,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:18:26,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:18:26,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:26,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:26,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:26,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:26,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:18:26,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:18:26,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:30,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:30,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:30,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:30,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:18:30,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:18:30,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:31,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:31,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:31,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:31,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:18:31,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:18:31,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:35,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:35,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:35,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:35,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:18:35,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:18:35,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:38,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:38,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:38,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:38,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:18:38,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:18:38,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:40,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:40,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:40,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:40,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:18:40,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:18:40,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:44,229 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:18:44,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:18:44,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:18:44,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 21:18:44,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 21:18:44,521 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:18:44,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:44,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:44,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:44,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:18:44,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:18:44,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:48,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:48,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:49,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:49,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:18:49,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:18:49,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:49,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:49,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:49,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:49,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:18:49,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:18:49,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:50,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:50,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:50,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:50,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:18:50,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:18:50,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:54,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:54,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:54,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:55,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 21:18:55,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 21:18:55,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:56,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:56,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:56,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:56,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:18:56,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:18:56,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:18:57,650 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:18:57,676 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:18:57,752 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=193.681 +2025-10-01 21:18:57,752 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:18:57,752 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:18:58,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:18:58,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:18:58,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:18:59,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:18:59,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:18:59,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:00,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:00,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:00,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:00,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 21:19:00,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 21:19:00,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:00,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:00,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:00,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:00,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:19:00,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:19:00,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:02,297 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:19:02,328 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(720, 720, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:19:02,406 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.941 +2025-10-01 21:19:02,406 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:19:02,406 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:19:04,882 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:19:04,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:19:04,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:19:05,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 21:19:05,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 21:19:05,169 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:19:06,490 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:19:06,525 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(720, 720, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:19:06,601 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=209.522 +2025-10-01 21:19:06,601 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:19:06,601 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:19:10,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:10,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:10,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:10,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:19:10,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:19:10,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:10,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:10,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:10,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:10,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:19:10,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:19:10,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:11,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:11,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:11,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:11,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:19:11,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:19:11,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:13,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:19:13,551 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:19:13,629 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.999 +2025-10-01 21:19:13,629 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:19:13,629 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:19:14,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:14,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:14,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:14,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:19:14,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:19:14,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:16,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:16,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:16,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:16,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:19:16,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:19:16,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:16,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:16,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:16,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:16,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:19:16,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:19:16,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:17,402 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:19:17,432 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:19:17,511 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.555 +2025-10-01 21:19:17,511 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:19:17,511 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:19:19,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:19,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:19,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:19,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:19:19,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:19:19,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:20,838 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:19:20,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:19:20,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:19:21,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 21:19:21,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-01 21:19:21,115 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:19:21,431 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:19:21,454 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:19:21,531 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.406 +2025-10-01 21:19:21,531 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:19:21,531 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:19:22,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:22,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:22,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:23,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:19:23,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:19:23,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:26,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:26,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:26,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:26,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:19:26,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:19:26,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:28,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:28,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:28,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:29,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:19:29,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:19:29,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:31,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:31,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:31,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:31,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:19:31,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:19:31,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:32,920 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:19:32,960 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:19:33,046 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.414 +2025-10-01 21:19:33,046 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 21:19:33,046 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 21:19:33,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:33,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:33,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:33,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:19:33,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:19:33,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:35,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:35,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:35,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:35,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:19:35,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:19:35,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:37,062 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:19:37,095 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:19:37,173 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.486 +2025-10-01 21:19:37,173 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:19:37,173 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:19:38,846 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:19:38,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:19:38,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:19:39,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 21:19:39,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-01 21:19:39,124 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:19:40,710 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:19:40,746 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:19:40,824 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.844 +2025-10-01 21:19:40,824 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:19:40,825 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:19:43,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:43,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:43,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:43,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:19:43,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:19:43,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:43,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:43,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:43,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:44,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:19:44,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:19:44,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:44,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:44,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:44,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:45,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:19:45,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:19:45,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:47,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:47,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:47,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:48,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:19:48,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:19:48,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:48,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:48,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:48,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:48,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:19:48,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:19:48,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:50,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:50,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:50,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:50,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:19:50,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:19:50,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:50,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:50,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:50,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:51,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:19:51,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:19:51,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:53,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:53,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:53,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:53,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:19:53,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:19:53,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:57,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:57,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:57,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:57,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 21:19:57,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 21:19:57,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:19:57,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:19:57,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:19:57,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:19:57,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:19:57,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:19:57,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:01,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:01,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:01,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:02,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:20:02,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:20:02,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:03,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:03,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:03,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:04,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:20:04,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:20:04,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:04,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:04,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:04,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:04,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:20:04,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:20:04,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:05,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:05,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:05,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:05,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:20:05,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:20:05,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:06,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:06,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:06,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:06,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:20:06,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:20:06,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:09,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:09,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:09,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:10,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:20:10,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:20:10,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:12,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:12,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:12,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:12,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:20:12,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:20:12,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:15,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:15,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:15,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:15,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:20:15,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:20:15,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:20,638 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:20:20,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:20:20,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:20:20,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 21:20:20,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-01 21:20:20,941 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:20:22,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:22,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:22,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:22,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:20:22,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:20:22,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:25,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:25,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:25,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:25,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:20:25,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:20:25,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:28,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:28,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:28,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:29,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:20:29,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:20:29,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:31,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:31,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:31,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:31,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:20:31,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:20:31,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:34,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:34,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:34,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:34,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:20:34,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:20:34,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:36,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:36,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:36,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:36,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:20:36,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:20:36,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:36,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:36,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:36,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:36,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:20:36,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:20:36,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:43,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:43,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:43,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:43,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:20:43,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:20:43,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:44,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:44,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:44,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:44,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:20:44,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:20:44,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:48,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:48,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:48,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:48,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:20:48,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:20:48,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:51,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:51,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:51,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:51,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:20:51,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:20:51,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:52,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:52,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:52,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:52,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:20:52,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:20:52,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:54,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:54,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:54,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:55,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:20:55,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:20:55,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:56,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:56,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:56,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:56,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:20:56,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:20:56,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:56,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:56,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:56,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:56,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:20:56,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:20:56,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:20:59,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:20:59,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:20:59,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:20:59,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:20:59,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:20:59,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:01,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:01,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:01,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:01,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:21:01,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:21:01,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:02,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:02,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:02,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:02,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:21:02,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:21:02,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:04,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:04,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:04,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:04,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:21:04,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:21:04,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:05,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:05,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:05,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:05,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:21:05,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:21:05,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:07,885 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:21:07,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:21:07,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:21:08,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 21:21:08,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 21:21:08,182 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:21:13,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:13,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:13,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:13,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:21:13,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:21:13,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:13,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:13,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:13,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:13,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:21:13,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:21:13,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:15,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:15,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:15,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:15,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:21:15,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:21:15,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:19,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:19,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:19,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:19,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:21:19,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:21:19,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:19,656 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:21:19,684 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:21:19,765 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.515 +2025-10-01 21:21:19,765 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:21:19,765 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:21:22,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:22,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:22,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:23,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:21:23,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:21:23,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:23,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:23,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:23,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:23,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:21:23,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:21:23,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:31,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:31,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:31,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:31,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:21:31,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:21:31,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:32,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:32,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:32,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:32,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:21:32,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:21:32,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:38,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:38,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:38,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:38,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:21:38,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:21:38,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:39,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:39,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:39,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:39,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:21:39,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:21:39,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:42,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:42,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:42,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:42,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:21:42,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:21:42,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:46,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:46,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:46,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:46,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:21:46,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:21:46,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:49,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:49,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:49,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:49,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:21:49,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:21:49,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:51,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:51,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:51,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:51,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:21:51,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:21:51,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:51,690 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:21:51,711 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:21:51,792 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.131 +2025-10-01 21:21:51,792 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:21:51,792 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:21:52,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:52,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:52,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:52,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:21:52,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:21:52,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:21:56,743 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:21:56,784 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:21:56,859 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=7.963 +2025-10-01 21:21:56,859 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:21:56,860 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:21:57,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:21:57,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:21:57,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:21:57,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:21:57,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:21:57,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:00,063 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:22:00,088 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:22:00,165 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.926 +2025-10-01 21:22:00,166 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:22:00,166 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:22:00,769 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:22:00,797 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:22:00,871 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.653 +2025-10-01 21:22:00,871 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:22:00,871 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 21:22:03,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:03,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:03,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:03,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:22:03,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:22:03,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:03,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:03,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:03,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:03,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-01 21:22:03,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-01 21:22:03,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:03,789 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:22:03,813 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:22:03,889 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.036 +2025-10-01 21:22:03,890 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:22:03,890 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:22:05,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:05,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:05,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:05,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:22:05,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:22:05,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:07,353 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:22:07,381 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:22:07,460 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.214 +2025-10-01 21:22:07,460 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:22:07,460 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:22:08,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:08,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:08,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:08,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:22:08,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:22:08,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:12,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:12,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:12,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:12,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:22:12,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:22:12,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:19,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:19,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:19,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:19,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:22:19,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:22:19,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:19,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:19,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:19,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:19,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 21:22:19,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 21:22:19,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:20,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:20,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:20,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:20,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:22:20,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:22:20,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:21,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:21,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:21,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:21,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:22:21,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:22:21,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:23,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:23,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:23,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:23,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:22:23,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:22:23,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:24,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:24,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:24,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:24,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:22:24,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:22:24,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:26,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:26,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:26,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:26,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:22:26,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:22:26,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:28,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:28,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:28,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:29,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:22:29,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:22:29,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:29,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:29,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:29,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:29,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:22:29,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:22:29,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:32,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:32,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:32,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:32,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:22:32,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:22:32,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:33,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:33,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:33,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:33,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:22:33,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:22:33,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:36,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:36,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:36,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:36,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:22:36,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:22:36,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:37,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:37,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:37,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:37,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:22:37,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:22:37,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:37,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:37,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:37,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:38,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:22:38,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:22:38,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:42,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:42,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:42,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:42,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:22:42,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:22:42,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:43,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:43,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:43,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:43,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:22:43,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:22:43,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:44,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:44,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:44,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:44,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:22:44,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:22:44,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:48,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:48,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:48,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:48,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:22:48,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:22:48,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:49,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:49,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:49,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:49,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:22:49,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:22:49,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:52,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:22:52,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:22:52,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:22:52,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:22:52,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:22:52,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:22:53,576 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:22:53,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:22:53,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:22:53,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 21:22:53,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 21:22:53,865 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:22:57,595 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:22:57,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:22:57,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:22:57,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 21:22:57,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +2025-10-01 21:22:57,900 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:23:01,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:01,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:01,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:01,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:23:01,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:23:01,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:02,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:02,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:02,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:02,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:23:02,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:23:02,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:03,254 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:23:03,284 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:23:03,364 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.829 +2025-10-01 21:23:03,364 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:23:03,365 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:23:04,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:04,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:04,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:05,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:23:05,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:23:05,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:06,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:06,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:06,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:07,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:23:07,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:23:07,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:08,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:08,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:08,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:09,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:23:09,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:23:09,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:10,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:10,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:10,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:10,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:23:10,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:23:10,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:10,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:10,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:10,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:10,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:23:10,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:23:10,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:12,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:12,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:12,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:12,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:23:12,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:23:12,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:14,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:14,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:14,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:14,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:23:14,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:23:14,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:22,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:22,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:22,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:22,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:23:22,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:23:22,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:23,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:23,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:23,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:23,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:23:23,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:23:23,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:28,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:28,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:28,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:28,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:23:28,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:23:28,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:29,230 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:23:29,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:23:29,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:23:29,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 21:23:29,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-01 21:23:29,532 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:23:29,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:29,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:29,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:29,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:23:29,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:23:29,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:31,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:31,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:31,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:31,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:23:31,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:23:31,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:33,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:33,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:33,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:33,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:23:33,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:23:33,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:38,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:38,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:38,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:38,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:23:38,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:23:38,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:40,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:40,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:40,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:40,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:23:40,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:23:40,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:41,459 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:23:41,491 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:23:41,574 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.555 +2025-10-01 21:23:41,574 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:23:41,575 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 21:23:43,534 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:23:43,565 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:23:43,655 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.391 +2025-10-01 21:23:43,655 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 21:23:43,655 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 21:23:44,917 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:23:44,952 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:23:45,037 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.796 +2025-10-01 21:23:45,037 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 21:23:45,037 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 21:23:47,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:47,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:47,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:47,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:23:47,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:23:47,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:48,722 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:23:48,756 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:23:48,839 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.603 +2025-10-01 21:23:48,840 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:23:48,840 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:23:50,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:50,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:50,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:51,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:23:51,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:23:51,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:52,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:52,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:52,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:52,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:23:52,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:23:52,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:53,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:53,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:53,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:53,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:23:53,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:23:53,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:56,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:56,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:56,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:56,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:23:56,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:23:56,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:58,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:58,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:58,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:58,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:23:58,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:23:58,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:23:59,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:23:59,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:23:59,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:23:59,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:23:59,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:23:59,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:02,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:02,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:02,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:02,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:24:02,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:24:02,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:03,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:03,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:03,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:03,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:24:03,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:24:03,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:03,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:03,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:03,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:03,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:24:03,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:24:03,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:05,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:05,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:05,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:05,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:24:05,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:24:05,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:09,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:09,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:10,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:10,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:24:10,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:24:10,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:10,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:10,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:10,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:10,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:24:10,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:24:10,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:13,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:13,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:13,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:13,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:24:13,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:24:13,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:15,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:15,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:15,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:15,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:24:15,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:24:15,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:20,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:20,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:20,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:20,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:24:20,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:24:20,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:22,818 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 21:24:22,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 21:24:22,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 21:24:23,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.419s +2025-10-01 21:24:23,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.419s (avg: 0.140s/image) +2025-10-01 21:24:23,238 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 21:24:27,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:27,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:27,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:28,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 21:24:28,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 21:24:28,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:31,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:31,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:31,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:31,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:24:31,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:24:31,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:32,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:32,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:33,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:33,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:24:33,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:24:33,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:33,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:33,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:33,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:33,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:24:33,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:24:33,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:34,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:34,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:34,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:34,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:24:34,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:24:34,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:34,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:34,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:34,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:34,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 21:24:34,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 21:24:34,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:35,649 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:24:35,686 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:24:35,767 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.527 +2025-10-01 21:24:35,767 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:24:35,767 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:24:37,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:37,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:37,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:37,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:24:37,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:24:37,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:40,689 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:24:40,712 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:24:40,787 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=204.505 +2025-10-01 21:24:40,788 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:24:40,788 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:24:42,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:42,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:42,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:42,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:24:42,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:24:42,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:43,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:43,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:43,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:43,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:24:43,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:24:43,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:43,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:43,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:44,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:44,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:24:44,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:24:44,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:44,804 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:24:44,826 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:24:44,905 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.535 +2025-10-01 21:24:44,906 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:24:44,906 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:24:45,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:45,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:45,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:45,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:24:45,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:24:45,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:48,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:48,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:48,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:48,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:24:48,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:24:48,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:48,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:48,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:48,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:48,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.122s +2025-10-01 21:24:48,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.122s (avg: 0.122s/image) +2025-10-01 21:24:48,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:50,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:50,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:50,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:51,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:24:51,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:24:51,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:53,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:53,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:53,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:53,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:24:53,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:24:53,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:53,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:53,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:53,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:54,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:24:54,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:24:54,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:56,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:56,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:56,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:56,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:24:56,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:24:56,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:57,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:57,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:57,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:57,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:24:57,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:24:57,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:58,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:58,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:58,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:58,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:24:58,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:24:58,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:24:59,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:24:59,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:24:59,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:24:59,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:24:59,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:24:59,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:01,812 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:25:01,832 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:25:01,914 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.989 +2025-10-01 21:25:01,915 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:25:01,915 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:25:02,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:02,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:02,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:03,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:25:03,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:25:03,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:03,396 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:25:03,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:25:03,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:25:03,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.255s +2025-10-01 21:25:03,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.255s (avg: 0.128s/image) +2025-10-01 21:25:03,653 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:25:05,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:05,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:05,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:05,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 21:25:05,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 21:25:05,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:05,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:05,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:05,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:06,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:25:06,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:25:06,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:06,072 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:25:06,092 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:25:06,168 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.029 +2025-10-01 21:25:06,169 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:25:06,169 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:25:08,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:08,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:08,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:08,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:25:08,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:25:08,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:10,415 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:25:10,436 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:25:10,516 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.606 +2025-10-01 21:25:10,517 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:25:10,517 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:25:10,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:10,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:10,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:10,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:25:10,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:25:10,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:11,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:11,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:11,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:11,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:25:11,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:25:11,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:12,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:12,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:12,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:12,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:25:12,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:25:12,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:14,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:14,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:14,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:14,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:25:14,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:25:14,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:18,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:18,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:18,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:18,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:25:18,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:25:18,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:18,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:18,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:18,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:18,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:25:18,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:25:18,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:19,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:19,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:19,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:19,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:25:19,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:25:19,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:21,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:21,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:21,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:21,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:25:21,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:25:21,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:22,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:22,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:22,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:22,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:25:22,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:25:22,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:23,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:23,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:23,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:23,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:25:23,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:25:23,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:24,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:24,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:24,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:24,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:25:24,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:25:24,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:26,677 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:25:26,701 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:25:26,775 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.720 +2025-10-01 21:25:26,776 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:25:26,776 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:25:27,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:27,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:27,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:27,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:25:27,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:25:27,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:27,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:27,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:27,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:27,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:25:27,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:25:27,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:29,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:29,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:29,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:29,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:25:29,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:25:29,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:30,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:30,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:30,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:30,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:25:30,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:25:30,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:31,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:31,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:31,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:31,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:25:31,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:25:31,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:31,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:31,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:31,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:31,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:25:31,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:25:31,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:32,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:32,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:32,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:32,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:25:32,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:25:32,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:34,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:34,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:34,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:35,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:25:35,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:25:35,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:35,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:35,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:35,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:35,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:25:35,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:25:35,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:36,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:36,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:36,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:36,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:25:36,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:25:36,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:37,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:37,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:37,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:38,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:25:38,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:25:38,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:38,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:38,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:38,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:38,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:25:38,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:25:38,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:39,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:39,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:39,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:39,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:25:39,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:25:39,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:39,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:39,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:39,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:40,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:25:40,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:25:40,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:44,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:44,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:44,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:44,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:25:44,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:25:44,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:45,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:45,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:45,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:45,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:25:45,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:25:45,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:46,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:46,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:46,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:46,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:25:46,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:25:46,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:47,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:47,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:47,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:47,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:25:47,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:25:47,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:48,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:48,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:48,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:48,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:25:48,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:25:48,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:48,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:48,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:48,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:49,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:25:49,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:25:49,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:52,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:52,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:52,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:52,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:25:52,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:25:52,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:55,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:55,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:55,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:55,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:25:55,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:25:55,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:55,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:25:55,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:25:55,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:25:55,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:25:55,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:25:55,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:25:59,672 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:25:59,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:25:59,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:25:59,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 21:25:59,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 21:25:59,958 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:26:00,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:00,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:00,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:00,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:26:00,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:26:00,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:00,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:00,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:01,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:01,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:26:01,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:26:01,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:04,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:04,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:04,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:04,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:26:04,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:26:04,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:06,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:06,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:07,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:07,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:26:07,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:26:07,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:09,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:09,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:09,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:09,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:26:09,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:26:09,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:10,353 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:26:10,373 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:26:10,452 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.345 +2025-10-01 21:26:10,452 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:26:10,452 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:26:11,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:11,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:11,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:11,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:26:11,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:26:11,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:12,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:12,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:12,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:13,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:26:13,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:26:13,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:13,890 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:26:13,913 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:26:13,986 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.227 +2025-10-01 21:26:13,987 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 21:26:13,987 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 21:26:15,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:15,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:15,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:15,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:26:15,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:26:15,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:16,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:16,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:16,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:17,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:26:17,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:26:17,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:17,328 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:26:17,347 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:26:17,420 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.366 +2025-10-01 21:26:17,420 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:26:17,421 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 21:26:17,627 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:26:17,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:26:17,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:26:17,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 21:26:17,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 21:26:17,906 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:26:19,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:19,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:19,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:20,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:26:20,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:26:20,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:20,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:20,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:20,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:20,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:26:20,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:26:20,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:21,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:21,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:21,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:21,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:26:21,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:26:21,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:22,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:22,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:22,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:22,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:26:22,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:26:22,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:23,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:23,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:23,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:23,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 21:26:23,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 21:26:23,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:24,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:24,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:24,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:24,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:26:24,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:26:24,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:25,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:25,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:25,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:25,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:26:25,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:26:25,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:27,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:27,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:27,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:27,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:26:27,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:26:27,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:29,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:29,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:29,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:29,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:26:29,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:26:29,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:30,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:30,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:30,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:30,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:26:30,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:26:30,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:31,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:31,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:31,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:31,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:26:31,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:26:31,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:35,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:35,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:35,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:35,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:26:35,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:26:35,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:40,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:40,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:40,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:40,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:26:40,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:26:40,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:40,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:40,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:40,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:40,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:26:40,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:26:40,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:41,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:41,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:41,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:41,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:26:41,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:26:41,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:46,378 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:26:46,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:26:46,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:26:46,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 21:26:46,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 21:26:46,670 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:26:46,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:46,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:46,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:47,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:26:47,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:26:47,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:49,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:49,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:49,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:50,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:26:50,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:26:50,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:54,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:54,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:54,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:54,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:26:54,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:26:54,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:54,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:54,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:54,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:54,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:26:54,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:26:54,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:56,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:56,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:56,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:57,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:26:57,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:26:57,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:26:58,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:26:58,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:26:58,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:26:58,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:26:58,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:26:58,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:01,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:01,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:01,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:01,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:27:01,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:27:01,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:02,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:02,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:02,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:02,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:27:02,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:27:02,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:02,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:02,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:02,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:02,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:27:02,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:27:02,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:07,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:07,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:07,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:07,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:27:07,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:27:07,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:08,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:08,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:08,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:08,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:27:08,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:27:08,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:09,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:09,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:09,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:09,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:27:09,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:27:09,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:17,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:17,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:17,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:17,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:27:17,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:27:17,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:20,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:20,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:20,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:20,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:27:20,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:27:20,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:23,796 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:27:23,818 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:27:23,894 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.638 +2025-10-01 21:27:23,895 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:27:23,895 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:27:24,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:24,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:24,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:24,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:27:24,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:27:24,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:28,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:28,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:28,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:28,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:27:28,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:27:28,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:31,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:31,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:31,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:31,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:27:31,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:27:31,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:35,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:35,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:35,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:35,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:27:35,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:27:35,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:39,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:39,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:39,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:39,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:27:39,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:27:39,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:42,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:42,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:42,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:42,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:27:43,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:27:43,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:48,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:48,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:48,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:48,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:27:48,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:27:48,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:52,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:52,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:52,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:52,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 21:27:52,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 21:27:52,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:53,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:53,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:53,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:53,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:27:53,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:27:53,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:56,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:56,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:56,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:57,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 21:27:57,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 21:27:57,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:57,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:27:57,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:27:57,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:27:57,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:27:57,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:27:57,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:27:58,401 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:27:58,422 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:27:58,499 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.530 +2025-10-01 21:27:58,500 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:27:58,500 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:27:59,155 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:27:59,186 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:27:59,261 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.446 +2025-10-01 21:27:59,261 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:27:59,261 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:28:00,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:00,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:00,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:00,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:28:00,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:28:00,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:01,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:01,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:01,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:01,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:28:01,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:28:01,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:01,936 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:28:01,957 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:28:02,029 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.534 +2025-10-01 21:28:02,030 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 21:28:02,030 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 21:28:02,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:02,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:02,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:02,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:28:02,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:28:02,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:02,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:02,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:02,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:02,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:28:02,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:28:02,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:04,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:04,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:04,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:04,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:28:04,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:28:04,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:04,256 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:28:04,270 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:28:04,342 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.472 +2025-10-01 21:28:04,342 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 21:28:04,343 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 21:28:05,583 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:28:05,612 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:28:05,685 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.959 +2025-10-01 21:28:05,686 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 21:28:05,686 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 21:28:06,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:06,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:06,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:06,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:28:06,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:28:06,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:08,110 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:28:08,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:28:08,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:28:08,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 21:28:08,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 21:28:08,398 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:28:08,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:08,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:08,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:08,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:28:08,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:28:08,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:08,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:08,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:09,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:09,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:28:09,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:28:09,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:09,214 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:28:09,229 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:28:09,301 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.217 +2025-10-01 21:28:09,301 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 21:28:09,301 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 21:28:09,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:09,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:09,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:09,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:28:09,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:28:09,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:11,154 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:28:11,176 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:28:11,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.996 +2025-10-01 21:28:11,251 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:28:11,251 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:28:13,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:13,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:13,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:13,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:28:13,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:28:13,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:15,109 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:28:15,130 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:28:15,207 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.218 +2025-10-01 21:28:15,208 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:28:15,208 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:28:15,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:15,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:15,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:16,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:28:16,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:28:16,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:16,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:16,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:16,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:16,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:28:16,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:28:16,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:18,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:18,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:18,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:18,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:28:18,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:28:18,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:20,704 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:28:20,732 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:28:20,809 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.886 +2025-10-01 21:28:20,810 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:28:20,810 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:28:22,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:22,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:22,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:22,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:28:22,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:28:22,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:23,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:23,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:23,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:24,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:28:24,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:28:24,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:25,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:25,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:25,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:25,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:28:25,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:28:25,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:26,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:26,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:26,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:26,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:28:26,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:28:26,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:27,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:27,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:27,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:27,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:28:27,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:28:27,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:27,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:27,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:27,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:27,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:28:27,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:28:27,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:30,932 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:28:30,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:28:30,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:28:31,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 21:28:31,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 21:28:31,223 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:28:33,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:33,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:33,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:33,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:28:33,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:28:33,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:33,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:33,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:33,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:34,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:28:34,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:28:34,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:35,994 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:28:36,017 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:28:36,094 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.348 +2025-10-01 21:28:36,094 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:28:36,094 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:28:36,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:36,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:36,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:36,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:28:36,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:28:36,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:37,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:37,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:37,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:37,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:28:37,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:28:37,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:40,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:40,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:40,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:40,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:28:40,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:28:40,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:42,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:42,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:42,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:42,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:28:42,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:28:42,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:47,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:47,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:47,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:47,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:28:47,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:28:47,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:48,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:48,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:48,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:48,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:28:48,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:28:48,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:50,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:50,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:50,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:50,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:28:50,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:28:50,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:51,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:51,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:51,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:51,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:28:51,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:28:51,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:53,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:53,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:53,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:53,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:28:53,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:28:53,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:56,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:56,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:56,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:56,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:28:56,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:28:56,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:28:58,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:28:58,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:28:58,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:28:59,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:28:59,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:28:59,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:00,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:00,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:00,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:00,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:29:00,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:29:00,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:00,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:00,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:00,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:01,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 21:29:01,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 21:29:01,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:04,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:04,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:04,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:04,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:29:04,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:29:04,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:05,447 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:29:05,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:29:05,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:29:05,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 21:29:05,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 21:29:05,723 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:29:11,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:11,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:11,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:11,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:29:11,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:29:11,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:16,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:16,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:16,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:16,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:29:16,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:29:16,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:19,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:19,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:19,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:19,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 21:29:19,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 21:29:19,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:22,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:22,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:22,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:22,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 21:29:22,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 21:29:22,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:24,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:24,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:24,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:24,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 21:29:24,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 21:29:24,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:26,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:26,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:27,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:27,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:29:27,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:29:27,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:27,468 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:29:27,488 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:29:27,567 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.568 +2025-10-01 21:29:27,568 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:29:27,568 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:29:27,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:27,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:27,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:27,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 21:29:27,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 21:29:27,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:30,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:30,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:30,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:30,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 21:29:30,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 21:29:30,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:32,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:32,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:32,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:32,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s +2025-10-01 21:29:32,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +2025-10-01 21:29:32,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:32,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:32,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:32,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:33,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:29:33,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:29:33,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:33,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:33,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:33,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:33,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:29:33,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:29:33,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:35,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:35,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:35,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:35,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 21:29:35,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 21:29:35,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:38,371 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:29:38,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:29:38,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:29:38,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-01 21:29:38,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-01 21:29:38,686 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:29:39,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:39,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:39,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:39,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:29:39,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:29:39,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:39,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:39,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:39,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:39,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:29:39,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:29:39,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:41,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:41,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:41,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:41,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 21:29:41,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 21:29:41,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:42,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:42,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:42,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:42,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:29:42,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:29:42,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:43,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:43,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:43,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:43,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:29:43,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:29:43,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:43,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:43,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:43,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:44,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:29:44,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:29:44,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:44,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:44,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:44,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:44,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 21:29:44,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 21:29:44,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:47,068 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:29:47,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:29:47,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:29:47,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s +2025-10-01 21:29:47,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.323s (avg: 0.161s/image) +2025-10-01 21:29:47,392 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:29:52,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:52,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:52,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:52,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:29:52,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:29:52,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:53,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:53,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:53,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:53,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:29:53,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:29:53,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:55,782 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:29:55,816 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:29:55,899 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.904 +2025-10-01 21:29:55,899 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:29:55,899 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:29:56,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:56,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:56,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:56,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:29:56,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:29:56,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:29:59,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:29:59,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:29:59,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:29:59,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:29:59,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:29:59,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:00,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:00,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:00,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:00,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:30:00,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:30:00,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:00,704 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:30:00,744 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:30:00,823 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.800 +2025-10-01 21:30:00,823 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:30:00,824 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:30:01,333 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:30:01,362 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:30:01,444 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.864 +2025-10-01 21:30:01,445 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:30:01,445 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:30:05,220 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:30:05,242 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:30:05,323 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.032 +2025-10-01 21:30:05,323 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:30:05,324 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:30:08,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:08,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:08,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:08,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:30:08,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:30:08,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:10,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:10,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:10,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:10,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:30:10,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:30:10,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:23,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:23,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:23,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:24,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:30:24,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:30:24,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:27,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:27,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:27,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:28,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:30:28,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:30:28,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:29,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:29,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:29,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:29,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:30:29,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:30:29,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:29,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:29,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:29,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:30,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:30:30,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:30:30,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:35,077 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:30:35,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:30:35,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:30:35,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 21:30:35,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 21:30:35,358 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:30:38,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:38,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:38,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:38,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:30:38,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:30:38,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:39,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:39,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:39,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:39,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:30:39,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:30:39,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:41,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:41,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:41,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:41,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:30:41,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:30:41,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:42,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:42,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:42,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:42,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:30:42,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:30:42,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:44,678 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:30:44,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:30:44,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:30:44,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 21:30:44,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 21:30:44,972 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:30:50,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:50,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:50,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:50,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:30:50,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:30:50,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:50,832 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:30:50,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:30:50,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:30:51,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 21:30:51,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 21:30:51,117 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:30:55,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:55,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:55,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:55,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:30:55,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:30:55,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:55,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:55,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:55,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:56,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:30:56,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:30:56,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:56,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:56,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:56,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:56,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:30:56,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:30:56,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:30:59,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:30:59,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:30:59,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:30:59,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:30:59,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:30:59,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:03,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:03,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:03,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:04,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:31:04,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:31:04,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:06,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:06,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:06,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:06,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:31:06,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:31:06,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:08,107 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:31:08,144 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:31:08,224 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.715 +2025-10-01 21:31:08,224 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:31:08,225 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:31:11,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:11,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:11,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:11,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:31:11,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:31:11,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:12,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:12,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:12,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:12,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:31:12,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:31:12,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:14,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:14,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:14,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:14,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:31:14,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:31:14,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:17,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:17,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:17,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:17,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:31:17,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:31:17,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:20,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:20,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:20,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:20,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:31:20,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:31:20,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:20,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:20,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:21,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:21,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:31:21,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:31:21,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:22,722 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:31:22,760 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:31:22,835 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.371 +2025-10-01 21:31:22,835 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:31:22,835 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:31:27,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:27,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:27,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:27,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:31:27,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:31:27,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:28,858 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:31:28,879 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1071, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:31:28,954 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.126 +2025-10-01 21:31:28,954 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:31:28,954 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:31:33,249 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:31:33,284 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:31:33,359 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.924 +2025-10-01 21:31:33,360 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:31:33,360 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:31:36,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:36,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:36,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:36,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:31:36,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:31:36,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:42,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:42,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:42,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:42,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:31:42,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:31:42,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:47,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:47,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:47,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:47,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:31:47,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:31:47,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:47,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:47,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:47,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:47,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:31:47,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:31:47,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:49,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:49,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:49,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:49,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:31:49,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:31:49,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:51,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:51,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:51,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:51,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:31:51,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:31:51,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:53,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:53,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:53,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:53,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:31:53,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:31:53,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:55,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:55,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:55,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:55,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 21:31:55,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 21:31:55,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:55,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:55,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:55,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:55,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:31:55,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:31:55,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:31:57,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:31:57,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:31:57,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:31:58,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:31:58,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:31:58,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:00,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:00,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:00,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:00,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:32:00,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:32:00,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:01,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:01,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:01,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:02,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:32:02,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:32:02,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:04,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:04,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:04,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:04,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:32:04,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:32:04,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:08,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:08,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:08,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:08,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:32:08,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:32:08,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:12,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:12,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:12,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:12,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 21:32:12,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 21:32:12,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:12,597 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:32:12,635 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:32:12,714 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.665 +2025-10-01 21:32:12,714 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:32:12,714 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:32:13,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:13,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:13,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:14,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:32:14,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:32:14,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:17,396 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:32:17,435 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:32:17,517 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.123 +2025-10-01 21:32:17,517 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:32:17,517 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:32:20,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:20,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:20,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:21,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:32:21,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:32:21,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:21,896 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:32:21,927 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:32:22,015 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.713 +2025-10-01 21:32:22,016 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 21:32:22,016 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 21:32:22,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:22,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:22,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:22,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:32:22,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:32:22,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:22,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:22,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:22,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:23,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:32:23,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:32:23,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:27,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:27,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:27,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:27,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:32:27,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:32:27,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:28,845 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:32:28,868 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:32:28,944 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.694 +2025-10-01 21:32:28,945 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:32:28,945 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:32:29,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:29,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:29,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:29,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:32:29,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:32:29,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:32,481 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:32:32,500 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:32:32,577 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.161 +2025-10-01 21:32:32,577 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:32:32,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:32:35,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:35,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:35,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:35,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:32:35,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:32:35,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:35,862 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:32:35,884 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:32:35,962 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.757 +2025-10-01 21:32:35,962 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:32:35,962 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:32:36,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:36,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:36,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:36,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:32:36,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:32:36,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:41,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:41,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:41,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:41,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:32:41,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:32:41,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:44,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:44,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:44,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:44,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:32:44,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:32:44,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:45,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:45,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:45,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:45,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:32:45,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:32:45,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:45,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:45,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:45,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:45,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:32:45,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:32:45,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:46,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:46,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:46,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:46,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:32:46,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:32:46,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:51,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:51,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:51,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:51,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:32:51,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:32:51,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:53,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:53,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:53,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:54,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:32:54,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:32:54,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:57,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:57,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:57,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:57,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:32:57,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:32:57,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:32:58,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:32:58,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:32:58,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:32:58,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:32:58,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:32:58,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:00,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:00,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:00,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:00,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:33:00,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:33:00,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:03,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:03,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:03,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:03,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:33:03,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:33:03,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:05,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:05,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:05,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:05,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:33:05,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:33:05,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:08,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:08,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:08,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:08,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:33:08,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:33:08,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:08,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:08,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:08,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:08,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:33:08,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:33:08,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:14,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:14,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:14,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:14,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:33:14,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:33:14,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:15,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:15,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:15,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:15,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:33:15,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:33:15,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:20,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:20,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:20,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:20,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:33:20,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:33:20,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:22,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:22,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:22,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:22,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:33:22,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:33:22,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:27,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:27,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:27,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:27,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:33:27,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:33:27,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:30,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:30,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:30,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:30,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:33:30,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:33:30,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:33,154 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:33:33,177 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:33:33,260 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.601 +2025-10-01 21:33:33,260 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:33:33,261 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 21:33:34,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:34,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:34,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:34,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:33:34,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:33:34,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:37,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:37,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:37,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:37,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:33:37,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:33:37,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:39,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:39,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:39,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:39,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:33:39,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:33:39,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:39,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:39,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:39,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:40,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:33:40,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:33:40,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:40,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:40,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:40,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:40,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:33:40,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:33:40,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:40,652 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:33:40,685 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:33:40,764 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.649 +2025-10-01 21:33:40,765 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:33:40,765 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:33:43,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:43,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:43,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:44,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:33:44,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:33:44,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:45,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:45,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:45,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:45,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:33:45,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:33:45,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:50,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:50,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:50,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:50,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:33:50,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:33:50,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:50,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:50,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:50,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:50,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:33:50,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:33:50,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:33:57,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:33:57,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:33:57,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:33:57,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:33:57,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:33:57,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:00,713 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:34:00,737 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:34:00,811 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.374 +2025-10-01 21:34:00,812 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:34:00,812 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:34:03,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:03,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:03,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:03,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:34:03,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:34:03,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:07,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:07,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:07,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:07,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:34:07,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:34:07,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:08,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:08,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:08,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:08,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:34:08,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:34:08,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:14,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:14,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:14,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:14,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:34:14,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:34:14,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:15,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:15,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:16,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:16,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:34:16,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:34:16,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:22,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:22,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:22,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:22,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:34:22,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:34:22,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:26,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:26,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:26,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:26,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:34:26,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:34:26,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:28,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:28,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:28,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:29,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:34:29,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:34:29,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:32,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:32,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:32,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:32,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:34:32,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:34:32,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:34,384 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:34:34,403 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:34:34,474 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.133 +2025-10-01 21:34:34,474 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 21:34:34,474 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 21:34:38,262 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:34:38,282 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:34:38,354 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.082 +2025-10-01 21:34:38,354 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 21:34:38,354 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 21:34:39,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:39,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:39,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:39,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:34:39,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:34:39,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:43,205 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:34:43,233 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:34:43,305 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=8.664 +2025-10-01 21:34:43,305 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 21:34:43,305 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 21:34:43,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:43,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:43,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:44,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:34:44,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:34:44,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:45,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:45,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:45,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:45,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:34:45,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:34:45,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:46,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:46,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:46,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:46,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 21:34:46,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 21:34:46,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:46,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:46,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:46,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:46,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:34:46,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:34:46,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:47,666 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:34:47,686 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:34:47,767 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.890 +2025-10-01 21:34:47,768 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:34:47,768 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:34:48,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:48,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:48,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:49,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:34:49,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:34:49,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:50,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:50,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:50,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:50,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 21:34:50,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 21:34:50,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:52,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:52,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:52,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:52,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:34:52,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:34:52,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:52,328 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:34:52,357 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:34:52,441 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.991 +2025-10-01 21:34:52,442 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 21:34:52,442 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 21:34:56,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:56,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:56,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:56,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:34:56,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:34:56,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:56,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:34:56,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:34:56,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:34:56,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:34:56,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:34:56,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:34:56,956 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:34:56,978 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:34:57,064 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.045 +2025-10-01 21:34:57,064 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 21:34:57,064 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 21:35:01,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:01,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:01,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:01,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:35:01,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:35:01,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:02,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:02,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:02,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:02,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:35:02,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:35:02,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:06,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:06,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:06,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:06,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:35:06,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:35:06,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:13,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:13,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:13,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:13,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:35:13,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:35:13,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:16,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:16,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:16,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:16,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:35:16,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:35:16,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:19,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:19,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:19,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:19,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:35:19,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:35:19,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:21,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:21,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:21,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:21,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 21:35:21,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 21:35:21,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:23,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:23,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:23,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:23,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:35:23,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:35:23,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:25,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:25,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:25,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:25,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:35:25,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:35:25,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:26,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:26,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:26,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:26,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:35:26,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:35:26,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:27,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:27,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:27,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:28,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:35:28,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:35:28,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:29,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:29,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:29,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:29,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:35:29,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:35:29,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:30,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:30,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:30,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:30,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:35:30,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:35:30,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:31,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:31,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:31,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:31,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:35:31,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:35:31,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:40,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:40,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:40,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:40,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:35:40,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:35:40,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:47,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:47,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:47,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:47,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:35:47,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:35:47,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:49,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:49,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:49,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:49,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:35:49,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:35:49,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:49,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:49,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:49,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:49,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:35:49,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:35:49,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:53,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:53,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:53,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:53,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:35:53,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:35:53,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:54,503 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:35:54,540 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:35:54,632 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.936 +2025-10-01 21:35:54,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 21:35:54,633 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 21:35:58,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:35:58,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:35:58,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:35:58,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:35:58,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:35:58,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:35:59,046 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:35:59,089 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:35:59,178 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.633 +2025-10-01 21:35:59,178 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 21:35:59,178 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 21:35:59,398 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:35:59,420 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:35:59,495 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.486 +2025-10-01 21:35:59,496 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:35:59,496 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:36:03,433 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:36:03,468 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:36:03,547 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.144 +2025-10-01 21:36:03,547 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:36:03,548 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:36:06,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:06,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:06,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:06,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:36:06,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:36:06,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:12,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:12,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:12,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:12,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:36:12,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:36:12,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:20,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:20,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:20,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:20,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:36:20,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:36:20,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:22,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:22,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:22,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:22,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:36:22,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:36:22,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:24,143 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:36:24,174 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:36:24,254 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.598 +2025-10-01 21:36:24,254 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:36:24,255 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:36:25,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:25,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:25,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:26,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:36:26,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:36:26,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:26,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:26,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:26,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:26,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:36:26,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:36:26,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:37,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:37,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:37,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:37,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:36:37,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:36:37,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:39,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:39,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:39,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:39,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:36:39,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:36:39,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:41,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:41,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:41,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:41,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:36:41,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:36:41,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:45,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:45,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:45,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:45,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:36:45,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:36:45,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:46,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:46,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:47,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:47,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 21:36:47,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 21:36:47,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:48,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:48,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:48,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:48,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:36:48,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:36:48,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:48,563 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:36:48,596 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:36:48,681 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.832 +2025-10-01 21:36:48,681 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 21:36:48,681 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 21:36:49,178 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:36:49,202 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:36:49,275 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.251 +2025-10-01 21:36:49,275 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 21:36:49,275 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 21:36:52,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:52,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:52,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:52,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:36:52,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:36:52,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:53,217 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:36:53,243 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:36:53,322 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.864 +2025-10-01 21:36:53,323 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:36:53,323 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:36:53,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:53,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:53,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:53,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:36:53,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:36:53,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:56,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:56,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:56,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:56,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 21:36:56,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 21:36:56,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:56,588 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:36:56,617 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:36:56,694 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.835 +2025-10-01 21:36:56,694 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:36:56,694 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:36:57,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:57,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:57,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:57,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:36:57,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:36:57,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:58,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:58,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:58,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:36:58,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:36:58,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:36:58,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:36:59,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:36:59,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:36:59,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:00,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 21:37:00,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 21:37:00,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:02,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:02,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:02,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:02,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:37:02,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:37:02,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:02,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:02,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:02,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:03,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:37:03,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:37:03,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:03,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:03,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:03,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:03,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:37:03,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:37:03,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:04,840 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:37:04,876 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:37:04,954 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.130 +2025-10-01 21:37:04,954 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:37:04,955 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:37:05,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:05,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:05,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:05,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 21:37:05,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 21:37:05,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:07,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:07,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:07,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:07,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:37:07,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:37:07,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:08,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:08,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:08,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:08,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:37:08,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:37:08,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:08,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:08,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:08,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:09,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:37:09,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:37:09,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:09,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:09,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:09,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:09,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:37:09,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:37:09,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:09,568 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:37:09,611 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:37:09,691 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.494 +2025-10-01 21:37:09,692 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:37:09,692 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:37:11,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:11,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:11,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:11,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 21:37:11,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 21:37:11,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:12,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:12,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:12,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:12,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:37:12,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:37:12,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:13,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:13,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:13,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:14,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:37:14,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:37:14,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:14,075 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:37:14,103 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:37:14,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.087 +2025-10-01 21:37:14,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:37:14,181 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:37:14,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:14,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:14,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:14,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:37:14,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:37:14,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:15,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:15,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:15,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:16,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:37:16,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:37:16,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:17,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:17,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:17,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:18,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:37:18,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:37:18,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:21,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:21,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:21,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:21,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:37:21,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:37:21,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:22,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:22,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:22,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:22,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:37:22,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:37:22,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:26,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:26,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:26,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:27,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 21:37:27,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 21:37:27,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:27,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:27,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:27,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:27,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:37:27,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:37:27,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:31,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:31,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:31,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:31,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:37:31,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:37:31,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:33,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:33,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:33,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:33,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:37:33,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:37:33,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:34,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:34,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:34,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:35,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 21:37:35,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 21:37:35,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:35,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:35,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:35,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:35,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 21:37:35,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 21:37:35,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:36,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:36,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:36,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:36,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:37:36,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:37:36,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:38,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:38,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:38,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:38,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:37:38,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:37:38,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:39,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:39,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:39,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:39,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:37:39,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:37:39,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:40,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:40,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:40,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:40,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:37:40,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:37:40,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:43,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:43,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:43,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:43,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:37:43,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:37:43,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:48,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:48,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:48,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:48,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:37:48,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:37:48,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:49,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:49,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:49,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:49,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:37:49,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:37:49,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:51,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:51,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:51,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:52,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:37:52,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:37:52,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:54,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:54,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:54,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:54,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:37:54,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:37:54,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:37:55,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:37:55,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:37:55,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:37:56,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 21:37:56,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 21:37:56,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:00,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:00,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:00,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:00,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:38:00,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:38:00,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:00,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:00,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:00,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:00,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:38:00,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:38:00,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:02,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:02,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:03,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:03,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 21:38:03,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 21:38:03,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:05,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:05,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:05,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:06,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:38:06,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:38:06,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:06,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:06,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:06,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:06,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 21:38:06,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 21:38:06,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:09,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:09,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:10,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:10,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:38:10,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:38:10,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:10,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:10,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:10,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:10,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:38:10,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:38:10,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:14,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:14,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:14,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:14,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:38:14,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:38:14,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:15,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:15,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:15,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:15,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:38:15,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:38:15,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:22,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:22,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:22,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:22,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:38:22,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:38:22,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:23,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:23,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:23,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:23,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:38:23,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:38:23,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:25,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:25,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:25,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:25,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:38:25,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:38:25,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:28,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:28,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:28,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:28,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 21:38:28,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 21:38:28,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:29,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:29,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:29,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:29,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:38:29,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:38:29,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:31,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:31,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:31,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:31,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:38:31,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:38:31,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:34,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:34,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:34,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:34,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:38:34,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:38:34,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:37,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:37,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:37,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:37,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:38:37,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:38:37,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:38,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:38,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:38,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:38,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:38:38,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:38:38,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:45,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:45,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:45,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:45,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:38:45,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:38:45,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:46,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:46,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:46,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:46,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:38:46,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:38:46,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:46,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:46,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:46,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:47,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:38:47,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:38:47,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:53,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:53,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:53,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:54,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:38:54,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:38:54,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:54,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:54,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:54,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:54,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:38:54,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:38:54,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:55,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:55,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:55,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:55,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:38:55,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:38:55,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:38:59,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:38:59,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:38:59,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:38:59,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:38:59,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:38:59,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:00,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:00,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:00,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:00,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:39:00,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:39:00,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:02,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:02,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:02,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:02,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:39:02,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:39:02,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:03,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:03,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:03,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:03,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:39:03,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:39:03,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:04,421 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:39:04,444 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:39:04,523 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=14.104 +2025-10-01 21:39:04,523 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:39:04,523 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:39:06,015 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:39:06,039 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:39:06,114 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.707 +2025-10-01 21:39:06,114 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:39:06,114 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:39:08,269 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:39:08,299 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(828, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:39:08,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.664 +2025-10-01 21:39:08,379 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:39:08,379 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:39:08,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:08,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:08,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:08,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:39:08,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:39:08,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:09,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:09,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:09,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:09,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:39:09,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:39:09,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:11,762 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:39:11,786 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:39:11,863 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.649 +2025-10-01 21:39:11,864 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:39:11,864 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:39:15,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:15,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:15,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:15,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:39:15,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:39:15,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:17,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:17,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:17,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:17,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:39:17,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:39:17,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:18,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:18,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:18,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:18,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:39:18,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:39:18,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:21,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:21,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:21,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:21,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:39:21,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:39:21,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:22,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:22,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:22,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:22,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:39:22,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:39:22,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:24,781 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:39:24,804 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:39:24,881 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.395 +2025-10-01 21:39:24,881 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:39:24,881 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:39:27,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:27,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:27,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:27,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:39:27,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:39:27,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:28,518 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:39:28,542 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:39:28,617 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.331 +2025-10-01 21:39:28,617 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:39:28,617 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:39:29,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:29,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:29,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:29,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:39:29,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:39:29,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:31,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:31,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:31,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:31,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:39:31,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:39:31,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:32,638 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:39:32,662 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:39:32,736 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.275 +2025-10-01 21:39:32,737 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:39:32,737 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:39:35,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:35,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:35,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:35,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:39:35,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:39:35,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:39,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:39,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:40,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:40,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:39:40,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:39:40,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:41,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:41,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:41,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:41,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:39:41,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:39:41,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:43,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:43,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:44,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:44,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:39:44,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:39:44,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:44,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:44,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:44,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:44,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:39:44,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:39:44,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:48,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:48,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:48,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:48,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:39:48,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:39:48,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:48,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:48,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:48,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:48,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:39:48,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:39:48,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:50,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:50,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:50,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:50,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:39:50,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:39:50,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:54,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:54,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:54,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:54,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:39:54,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:39:54,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:55,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:55,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:55,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:55,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:39:55,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:39:55,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:57,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:57,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:57,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:58,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:39:58,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:39:58,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:39:59,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:39:59,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:39:59,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:39:59,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:39:59,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:39:59,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:04,095 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:40:04,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:40:04,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:40:04,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 21:40:04,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 21:40:04,374 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:40:04,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:04,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:04,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:04,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:40:04,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:40:04,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:07,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:07,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:07,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:07,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:40:07,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:40:07,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:08,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:08,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:08,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:08,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 21:40:08,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 21:40:08,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:11,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:11,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:11,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:11,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:40:11,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:40:11,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:13,350 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:40:13,375 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:40:13,450 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.392 +2025-10-01 21:40:13,451 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:40:13,451 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:40:13,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:13,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:13,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:13,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:40:13,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:40:13,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:15,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:15,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:15,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:16,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:40:16,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:40:16,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:18,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:18,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:18,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:19,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:40:19,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:40:19,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:19,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:19,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:20,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:20,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:40:20,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:40:20,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:21,313 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:40:21,348 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:40:21,435 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.603 +2025-10-01 21:40:21,435 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 21:40:21,435 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 21:40:22,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:22,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:22,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:22,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:40:22,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:40:22,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:23,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:23,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:23,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:23,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 21:40:23,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 21:40:23,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:25,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:25,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:25,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:25,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:40:25,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:40:25,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:27,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:27,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:27,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:28,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:40:28,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:40:28,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:28,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:28,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:28,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:28,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:40:28,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:40:28,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:29,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:29,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:29,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:29,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:40:29,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:40:29,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:32,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:32,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:32,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:32,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:40:32,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:40:32,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:33,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:33,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:33,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:33,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:40:33,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:40:33,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:34,747 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:40:34,775 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:40:34,854 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.026 +2025-10-01 21:40:34,854 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:40:34,854 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:40:38,113 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:40:38,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:40:38,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:40:38,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 21:40:38,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 21:40:38,394 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:40:38,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:38,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:38,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:38,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:40:38,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:40:38,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:39,483 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:40:39,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:40:39,596 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.465 +2025-10-01 21:40:39,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 21:40:39,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 21:40:42,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:42,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:42,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:43,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:40:43,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:40:43,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:43,564 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:40:43,599 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:40:43,691 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.354 +2025-10-01 21:40:43,691 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 21:40:43,691 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 21:40:44,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:44,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:44,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:44,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:40:44,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:40:44,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:48,789 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:40:48,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:40:48,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.304 +2025-10-01 21:40:48,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:40:48,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:40:49,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:49,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:49,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:49,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:40:49,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:40:49,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:50,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:50,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:50,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:50,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:40:50,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:40:50,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:52,614 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:40:52,644 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:40:52,721 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.584 +2025-10-01 21:40:52,721 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:40:52,721 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:40:55,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:55,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:55,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:55,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:40:55,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:40:55,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:40:55,990 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:40:56,016 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:40:56,090 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.701 +2025-10-01 21:40:56,091 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:40:56,091 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:40:58,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:40:58,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:40:58,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:40:58,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:40:58,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:40:58,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:01,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:01,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:01,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:01,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:41:01,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:41:01,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:05,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:05,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:05,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:05,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:41:05,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:41:05,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:08,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:08,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:08,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:08,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:41:08,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:41:08,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:09,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:09,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:09,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:09,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:41:09,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:41:09,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:13,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:13,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:13,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:13,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:41:13,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:41:13,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:15,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:15,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:15,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:15,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 21:41:15,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 21:41:15,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:18,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:18,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:18,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:19,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:41:19,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:41:19,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:19,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:19,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:19,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:19,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:41:19,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:41:19,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:22,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:22,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:22,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:22,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:41:22,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:41:22,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:25,929 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:41:25,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:41:25,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:41:26,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 21:41:26,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 21:41:26,218 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:41:29,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:29,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:29,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:29,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:41:29,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:41:29,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:30,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:30,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:30,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:30,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:41:30,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:41:30,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:33,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:33,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:33,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:33,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:41:33,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:41:33,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:36,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:36,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:36,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:36,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:41:36,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:41:36,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:40,158 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:41:40,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:41:40,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:41:40,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 21:41:40,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 21:41:40,459 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:41:47,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:47,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:47,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:47,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 21:41:47,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 21:41:47,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:47,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:47,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:47,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:47,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:41:47,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:41:47,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:48,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:48,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:48,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:48,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:41:48,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:41:48,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:41:56,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:41:56,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:41:56,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:41:56,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:41:56,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:41:56,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:00,407 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:42:00,428 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:42:00,509 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.385 +2025-10-01 21:42:00,509 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:42:00,509 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:42:02,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:02,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:02,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:02,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:42:02,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:42:02,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:04,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:04,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:04,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:05,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:42:05,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:42:05,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:14,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:14,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:14,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:14,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:42:14,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:42:14,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:17,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:17,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:17,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:18,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 21:42:18,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 21:42:18,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:22,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:22,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:22,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:22,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:42:22,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:42:22,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:23,745 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:42:23,767 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(742, 742, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:42:23,838 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.741 +2025-10-01 21:42:23,838 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 21:42:23,838 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 21:42:26,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:26,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:26,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:26,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:42:26,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:42:26,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:27,390 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:42:27,416 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(761, 761, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:42:27,494 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.381 +2025-10-01 21:42:27,494 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:42:27,494 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:42:29,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:29,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:29,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:29,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 21:42:29,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 21:42:29,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:30,767 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:42:30,793 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(748, 748, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:42:30,867 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.554 +2025-10-01 21:42:30,867 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:42:30,867 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 21:42:31,635 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:42:31,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:42:31,736 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.991 +2025-10-01 21:42:31,736 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:42:31,736 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:42:33,872 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:42:33,897 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:42:33,971 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.262 +2025-10-01 21:42:33,972 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:42:33,972 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:42:35,436 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:42:35,462 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:42:35,540 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.933 +2025-10-01 21:42:35,541 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:42:35,541 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:42:35,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:35,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:35,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:35,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:42:35,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:42:35,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:36,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:36,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:36,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:36,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:42:36,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:42:36,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:36,620 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:42:36,637 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:42:36,704 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.052 +2025-10-01 21:42:36,704 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 21:42:36,704 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s +2025-10-01 21:42:37,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:37,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:37,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:37,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 21:42:37,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 21:42:37,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:38,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:38,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:38,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:38,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:42:38,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:42:38,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:39,298 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:42:39,318 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:42:39,393 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.347 +2025-10-01 21:42:39,394 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:42:39,394 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:42:41,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:41,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:41,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:41,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:42:41,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:42:41,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:41,738 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:42:41,749 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:42:41,814 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.393 +2025-10-01 21:42:41,814 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.064s +2025-10-01 21:42:41,814 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.065s +2025-10-01 21:42:41,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:41,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:41,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:42,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:42:42,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:42:42,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:44,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:44,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:44,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:44,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:42:44,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:42:44,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:45,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:45,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:45,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:46,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:42:46,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:42:46,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:46,103 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:42:46,113 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:42:46,177 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.838 +2025-10-01 21:42:46,177 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.063s +2025-10-01 21:42:46,178 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.064s +2025-10-01 21:42:46,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:46,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:46,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:46,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:42:46,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:42:46,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:50,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:50,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:50,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:50,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:42:50,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:42:50,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:51,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:51,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:51,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:51,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 21:42:51,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 21:42:51,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:53,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:53,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:53,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:53,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:42:53,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:42:53,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:54,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:54,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:54,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:54,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:42:54,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:42:54,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:56,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:56,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:56,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:56,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:42:56,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:42:56,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:57,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:57,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:57,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:58,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:42:58,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:42:58,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:42:59,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:42:59,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:42:59,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:42:59,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:42:59,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:42:59,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:03,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:03,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:03,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:03,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:43:03,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:43:03,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:04,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:04,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:04,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:04,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 21:43:04,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 21:43:04,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:04,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:04,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:04,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:04,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:43:04,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:43:04,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:10,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:10,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:10,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:10,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:43:10,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:43:10,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:10,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:10,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:10,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:10,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:43:10,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:43:10,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:13,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:13,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:13,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:13,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:43:13,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:43:13,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:16,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:16,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:16,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:16,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:43:16,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:43:16,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:19,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:19,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:19,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:19,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:43:19,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:43:19,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:21,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:21,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:21,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:21,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 21:43:21,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 21:43:21,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:22,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:22,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:22,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:22,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:43:22,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:43:22,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:23,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:23,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:23,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:23,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:43:23,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:43:23,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:28,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:28,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:28,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:29,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:43:29,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:43:29,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:29,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:29,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:29,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:29,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:43:29,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:43:29,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:31,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:31,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:31,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:31,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:43:31,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:43:31,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:36,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:36,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:36,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:36,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:43:36,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:43:36,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:36,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:36,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:36,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:36,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:43:36,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:43:36,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:41,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:41,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:41,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:41,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:43:41,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:43:41,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:41,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:41,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:41,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:41,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:43:41,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:43:41,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:42,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:42,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:42,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:42,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:43:42,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:43:42,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:47,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:47,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:47,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:47,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:43:47,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:43:47,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:50,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:50,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:50,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:50,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:43:50,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:43:50,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:52,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:52,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:52,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:52,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:43:52,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:43:52,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:52,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:52,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:52,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:53,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:43:53,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:43:53,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:56,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:56,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:56,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:56,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:43:56,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:43:56,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:58,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:58,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:58,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:58,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:43:58,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:43:58,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:43:59,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:43:59,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:43:59,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:43:59,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:43:59,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:43:59,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:01,195 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:44:01,219 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:44:01,305 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.435 +2025-10-01 21:44:01,305 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 21:44:01,305 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 21:44:04,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:04,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:04,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:04,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 21:44:04,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 21:44:04,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:04,953 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:44:04,978 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:44:05,060 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.467 +2025-10-01 21:44:05,061 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:44:05,061 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:44:06,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:06,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:06,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:06,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:44:06,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:44:06,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:09,573 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:44:09,599 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:44:09,692 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.023 +2025-10-01 21:44:09,692 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 21:44:09,692 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 21:44:11,704 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:44:11,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:44:11,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:44:12,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 21:44:12,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 21:44:12,005 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:44:13,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:13,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:13,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:14,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:44:14,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:44:14,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:16,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:16,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:16,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:16,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:44:16,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:44:16,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:18,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:18,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:18,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:19,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:44:19,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:44:19,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:20,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:20,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:20,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:20,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:44:20,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:44:20,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:20,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:20,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:20,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:21,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:44:21,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:44:21,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:25,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:25,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:25,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:25,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:44:25,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:44:25,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:25,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:25,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:25,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:25,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:44:25,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:44:25,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:29,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:29,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:29,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:29,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:44:29,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:44:29,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:30,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:30,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:31,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:31,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:44:31,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:44:31,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:31,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:31,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:31,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:31,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:44:31,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:44:31,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:38,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:38,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:38,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:39,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:44:39,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:44:39,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:41,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:41,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:41,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:41,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:44:41,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:44:41,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:43,404 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:44:43,429 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:44:43,511 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.551 +2025-10-01 21:44:43,511 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:44:43,511 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:44:44,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:44,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:44,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:45,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:44:45,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:44:45,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:50,990 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:44:51,021 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:44:51,099 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.211 +2025-10-01 21:44:51,099 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:44:51,099 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:44:51,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:51,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:51,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:51,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:44:51,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:44:51,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:51,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:51,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:51,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:51,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:44:51,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:44:51,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:53,099 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:44:53,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:44:53,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:44:53,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 21:44:53,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-01 21:44:53,382 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:44:55,036 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:44:55,068 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:44:55,150 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.503 +2025-10-01 21:44:55,151 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:44:55,151 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:44:58,111 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:44:58,141 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:44:58,219 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.491 +2025-10-01 21:44:58,219 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:44:58,220 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:44:58,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:58,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:58,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:58,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:44:58,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:44:58,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:44:59,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:44:59,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:44:59,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:44:59,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:44:59,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:44:59,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:00,075 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:45:00,099 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:45:00,169 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.666 +2025-10-01 21:45:00,169 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 21:45:00,169 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 21:45:00,598 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:45:00,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:45:00,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:45:00,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 21:45:00,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 21:45:00,880 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:45:04,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:04,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:04,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:04,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:45:04,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:45:04,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:10,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:10,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:10,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:10,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:45:10,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:45:10,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:13,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:13,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:13,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:14,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 21:45:14,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 21:45:14,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:14,449 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:45:14,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:45:14,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:45:14,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 21:45:14,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 21:45:14,728 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:45:15,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:15,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:15,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:15,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:45:15,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:45:15,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:21,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:21,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:21,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:21,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:45:21,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:45:21,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:21,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:21,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:22,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:22,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:45:22,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:45:22,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:27,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:27,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:27,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:28,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:45:28,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:45:28,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:28,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:28,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:28,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:28,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:45:28,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:45:28,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:29,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:29,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:29,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:29,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:45:29,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:45:29,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:39,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:39,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:39,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:40,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 21:45:40,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 21:45:40,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:40,444 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:45:40,478 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:45:40,553 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.325 +2025-10-01 21:45:40,554 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:45:40,554 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:45:43,543 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:45:43,567 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:45:43,646 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.616 +2025-10-01 21:45:43,646 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:45:43,646 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:45:44,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:44,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:44,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:44,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:45:44,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:45:44,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:46,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:46,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:46,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:47,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:45:47,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:45:47,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:47,272 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:45:47,292 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:45:47,367 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.785 +2025-10-01 21:45:47,367 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:45:47,367 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:45:48,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:48,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:48,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:48,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:45:48,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:45:48,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:48,489 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:45:48,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:45:48,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:45:48,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 21:45:48,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 21:45:48,781 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:45:50,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:50,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:50,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:50,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:45:50,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:45:50,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:50,650 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:45:50,677 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:45:50,753 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=196.910 +2025-10-01 21:45:50,753 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:45:50,753 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:45:52,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:52,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:52,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:52,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:45:52,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:45:52,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:54,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:54,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:54,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:54,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:45:54,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:45:54,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:57,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:57,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:57,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:57,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:45:57,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:45:57,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:58,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:58,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:58,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:58,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:45:58,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:45:58,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:58,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:58,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:58,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:58,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:45:58,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:45:58,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:45:59,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:45:59,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:45:59,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:45:59,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:45:59,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:45:59,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:03,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:03,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:03,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:03,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:46:03,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:46:03,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:03,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:03,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:03,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:03,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 21:46:03,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 21:46:03,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:06,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:06,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:06,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:06,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:46:06,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:46:06,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:06,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:06,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:06,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:06,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:46:06,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:46:06,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:13,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:13,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:13,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:13,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:46:13,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:46:13,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:13,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:13,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:14,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:14,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:46:14,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:46:14,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:16,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:16,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:16,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:17,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:46:17,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:46:17,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:21,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:21,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:21,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:21,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:46:21,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:46:21,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:25,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:25,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:25,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:25,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:46:25,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:46:25,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:26,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:26,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:26,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:26,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:46:26,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:46:26,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:32,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:32,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:32,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:32,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:46:32,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:46:32,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:33,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:33,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:33,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:33,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:46:33,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:46:33,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:36,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:36,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:36,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:36,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:46:36,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:46:36,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:37,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:37,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:37,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:37,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:46:37,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:46:37,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:40,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:40,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:40,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:40,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:46:40,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:46:40,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:43,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:43,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:43,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:43,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:46:43,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:46:43,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:49,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:49,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:49,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:49,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:46:49,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:46:49,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:50,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:50,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:50,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:50,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:46:50,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:46:50,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:57,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:57,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:57,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:57,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:46:57,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:46:57,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:46:58,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:46:58,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:46:58,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:46:59,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:46:59,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:46:59,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:03,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:03,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:03,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:03,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:47:03,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:47:03,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:05,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:05,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:05,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:05,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:47:05,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:47:05,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:07,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:07,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:07,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:08,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:47:08,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:47:08,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:08,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:08,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:08,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:08,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:47:08,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:47:08,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:11,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:11,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:11,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:12,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 21:47:12,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 21:47:12,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:12,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:12,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:12,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:12,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:47:12,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:47:12,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:13,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:13,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:13,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:13,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:47:13,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:47:13,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:16,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:16,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:16,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:16,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:47:16,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:47:16,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:19,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:19,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:19,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:19,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:47:19,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:47:19,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:21,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:21,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:21,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:21,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:47:21,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:47:21,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:24,081 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:47:24,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:47:24,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:47:24,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 21:47:24,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 21:47:24,373 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:47:24,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:24,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:24,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:24,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:47:24,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:47:24,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:28,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:28,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:28,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:29,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:47:29,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:47:29,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:29,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:29,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:29,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:29,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:47:29,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:47:29,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:31,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:31,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:31,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:31,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:47:31,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:47:31,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:32,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:32,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:32,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:32,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:47:32,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:47:32,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:35,171 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:47:35,197 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:47:35,287 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=8.634 +2025-10-01 21:47:35,287 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 21:47:35,287 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 21:47:35,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:35,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:35,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:35,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:47:35,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:47:35,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:37,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:37,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:37,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:37,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:47:37,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:47:37,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:37,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:37,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:37,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:37,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:47:37,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:47:37,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:37,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:37,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:37,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:38,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:47:38,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:47:38,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:38,575 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:47:38,599 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:47:38,687 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.834 +2025-10-01 21:47:38,687 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 21:47:38,687 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 21:47:41,964 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:47:41,978 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:47:42,056 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.600 +2025-10-01 21:47:42,056 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:47:42,056 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:47:42,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:42,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:42,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:42,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:47:42,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:47:42,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:44,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:44,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:44,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:44,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:47:44,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:47:44,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:45,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:45,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:45,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:45,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:47:45,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:47:45,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:51,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:51,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:51,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:51,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:47:51,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:47:51,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:53,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:53,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:53,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:53,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:47:53,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:47:53,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:47:56,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:47:56,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:47:56,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:47:56,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:47:56,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:47:56,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:00,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:00,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:00,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:00,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:48:00,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:48:00,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:00,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:00,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:00,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:00,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:48:00,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:48:00,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:06,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:06,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:06,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:06,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:48:06,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:48:06,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:08,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:08,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:08,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:08,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:48:08,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:48:08,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:10,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:10,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:10,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:11,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:48:11,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:48:11,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:11,306 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:48:11,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:48:11,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:48:11,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-01 21:48:11,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-01 21:48:11,615 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:48:14,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:14,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:14,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:14,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:48:14,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:48:14,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:17,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:17,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:17,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:17,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:48:17,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:48:17,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:20,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:20,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:20,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:20,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 21:48:20,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 21:48:20,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:22,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:22,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:22,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:22,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:48:22,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:48:22,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:22,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:22,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:22,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:23,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:48:23,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:48:23,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:26,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:26,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:26,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:26,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:48:26,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:48:26,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:29,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:29,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:29,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:29,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:48:29,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:48:29,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:31,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:31,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:31,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:31,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 21:48:31,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 21:48:31,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:37,480 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:48:37,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:48:37,590 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.645 +2025-10-01 21:48:37,590 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:48:37,590 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 21:48:38,011 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:48:38,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:48:38,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:48:38,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 21:48:38,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 21:48:38,302 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:48:39,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:39,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:39,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:39,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:48:39,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:48:39,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:42,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:42,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:42,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:42,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:48:42,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:48:42,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:44,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:44,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:44,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:44,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:48:44,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:48:44,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:45,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:45,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:45,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:46,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 21:48:46,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 21:48:46,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:46,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:46,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:46,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:46,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:48:46,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:48:46,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:47,262 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:48:47,302 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:48:47,385 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.632 +2025-10-01 21:48:47,386 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 21:48:47,386 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 21:48:47,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:47,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:47,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:48,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:48:48,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:48:48,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:49,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:49,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:49,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:49,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:48:49,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:48:49,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:50,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:50,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:50,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:51,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 21:48:51,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 21:48:51,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:51,365 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:48:51,393 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:48:51,468 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.952 +2025-10-01 21:48:51,468 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:48:51,468 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:48:52,878 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:48:52,897 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:48:52,974 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.013 +2025-10-01 21:48:52,974 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:48:52,974 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:48:53,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:53,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:53,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:53,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:48:53,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:48:53,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:54,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:54,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:54,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:55,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:48:55,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:48:55,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:55,076 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:48:55,098 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:48:55,174 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.138 +2025-10-01 21:48:55,174 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:48:55,174 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:48:56,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:56,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:56,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:56,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:48:56,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:48:56,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:56,770 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:48:56,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:48:56,871 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.750 +2025-10-01 21:48:56,871 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:48:56,872 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:48:57,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:57,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:57,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:58,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:48:58,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:48:58,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:48:59,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:48:59,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:48:59,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:48:59,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:48:59,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:48:59,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:00,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:00,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:00,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:00,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:49:00,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:49:00,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:00,405 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:49:00,418 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(720, 680, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:49:00,485 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.817 +2025-10-01 21:49:00,485 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s +2025-10-01 21:49:00,485 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s +2025-10-01 21:49:04,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:04,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:04,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:05,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:49:05,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:49:05,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:05,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:05,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:05,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:05,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:49:05,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:49:05,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:06,393 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:49:06,417 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(720, 720, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:49:06,499 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.529 +2025-10-01 21:49:06,499 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:49:06,499 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:49:07,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:07,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:07,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:07,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:49:07,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:49:07,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:09,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:09,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:09,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:09,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:49:09,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:49:09,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:14,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:14,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:14,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:14,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:49:14,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:49:14,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:15,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:15,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:15,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:16,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-01 21:49:16,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-01 21:49:16,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:21,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:21,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:21,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:21,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 21:49:21,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 21:49:21,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:22,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:22,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:22,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:22,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:49:22,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:49:22,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:32,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:32,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:32,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:32,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:49:32,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:49:32,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:37,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:37,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:37,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:38,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:49:38,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:49:38,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:40,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:40,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:40,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:40,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:49:40,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:49:40,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:40,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:40,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:40,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:40,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 21:49:40,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 21:49:40,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:43,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:43,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:43,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:43,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:49:43,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:49:43,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:45,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:45,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:45,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:45,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:49:45,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:49:45,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:47,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:47,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:48,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:48,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:49:48,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:49:48,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:48,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:48,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:48,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:48,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:49:48,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:49:48,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:50,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:50,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:50,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:50,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:49:50,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:49:50,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:50,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:50,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:50,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:50,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:49:50,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:49:50,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:53,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:53,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:53,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:53,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:49:53,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:49:53,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:55,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:55,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:55,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:55,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:49:55,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:49:55,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:56,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:56,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:56,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:57,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:49:57,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:49:57,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:58,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:58,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:58,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:59,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:49:59,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:49:59,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:49:59,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:49:59,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:49:59,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:49:59,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:49:59,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:49:59,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:00,997 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:50:01,016 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:50:01,089 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=156.906 +2025-10-01 21:50:01,090 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:50:01,090 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 21:50:04,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:04,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:04,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:04,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:50:04,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:50:04,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:04,916 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:50:04,931 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 954, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:50:05,008 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.556 +2025-10-01 21:50:05,009 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:50:05,009 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:50:05,152 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:50:05,183 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:50:05,262 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.047 +2025-10-01 21:50:05,262 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:50:05,262 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:50:05,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:05,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:05,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:05,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 21:50:05,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 21:50:05,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:05,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:05,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:05,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:06,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 21:50:06,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 21:50:06,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:07,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:07,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:07,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:07,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:50:07,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:50:07,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:08,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:08,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:08,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:08,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:50:08,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:50:08,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:08,511 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:50:08,538 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:50:08,615 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.585 +2025-10-01 21:50:08,616 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:50:08,616 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:50:08,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:50:08,713 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:50:08,781 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.478 +2025-10-01 21:50:08,781 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 21:50:08,781 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 21:50:10,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:10,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:10,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:10,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 21:50:10,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 21:50:10,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:11,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:11,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:11,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:11,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:50:11,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:50:11,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:12,232 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:50:12,251 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(701, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:50:12,326 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.822 +2025-10-01 21:50:12,326 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:50:12,326 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:50:13,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:13,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:13,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:13,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:50:13,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:50:13,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:13,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:13,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:13,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:13,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:50:13,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:50:13,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:15,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:15,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:15,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:16,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 21:50:16,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 21:50:16,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:16,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:16,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:16,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:16,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:50:16,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:50:16,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:17,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:17,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:17,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:17,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:50:17,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:50:17,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:19,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:19,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:19,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:19,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:50:19,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:50:19,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:23,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:23,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:23,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:23,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:50:23,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:50:23,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:23,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:23,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:23,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:23,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:50:23,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:50:23,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:23,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:23,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:23,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:24,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:50:24,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:50:24,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:25,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:25,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:25,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:25,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:50:25,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:50:25,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:26,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:26,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:26,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:27,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:50:27,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:50:27,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:32,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:32,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:32,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:32,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:50:32,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:50:32,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:37,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:37,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:37,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:38,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:50:38,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:50:38,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:41,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:41,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:41,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:41,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:50:41,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:50:41,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:48,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:48,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:49,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:49,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:50:49,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:50:49,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:51,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:50:51,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:50:51,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:50:51,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:50:51,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:50:51,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:50:57,135 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:50:57,173 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:50:57,257 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.796 +2025-10-01 21:50:57,257 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 21:50:57,257 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 21:50:58,895 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:50:58,933 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:50:59,015 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.878 +2025-10-01 21:50:59,015 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:50:59,015 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:51:00,901 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:51:00,931 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:51:01,012 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.096 +2025-10-01 21:51:01,012 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:51:01,012 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 21:51:01,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:01,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:01,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:01,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:51:01,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:51:01,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:03,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:03,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:03,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:03,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:51:03,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:51:03,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:06,525 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:51:06,549 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:51:06,628 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.120 +2025-10-01 21:51:06,628 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:51:06,628 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:51:07,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:07,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:07,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:07,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:51:07,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:51:07,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:08,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:08,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:08,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:08,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 21:51:08,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 21:51:08,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:10,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:10,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:10,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:10,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:51:10,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:51:10,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:10,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:10,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:10,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:11,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:51:11,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:51:11,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:15,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:15,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:15,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:15,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:51:15,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:51:15,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:17,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:17,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:17,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:17,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:51:17,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:51:17,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:20,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:20,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:20,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:20,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:51:20,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:51:20,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:20,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:20,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:20,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:20,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:51:20,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:51:20,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:25,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:25,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:25,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:25,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:51:25,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:51:25,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:28,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:28,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:28,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:28,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:51:28,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:51:28,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:28,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:28,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:28,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:28,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:51:28,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:51:28,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:30,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:30,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:30,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:30,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:51:30,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:51:30,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:31,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:31,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:31,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:31,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:51:31,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:51:31,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:32,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:32,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:32,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:32,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:51:32,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:51:32,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:33,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:33,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:33,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:33,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:51:33,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:51:33,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:33,679 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:51:33,704 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:51:33,787 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.720 +2025-10-01 21:51:33,788 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 21:51:33,788 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 21:51:34,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:34,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:34,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:34,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:51:34,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:51:34,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:37,125 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:51:37,149 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:51:37,229 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.434 +2025-10-01 21:51:37,229 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:51:37,230 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:51:37,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:37,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:37,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:37,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:51:37,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:51:37,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:38,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:38,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:38,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:38,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:51:38,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:51:38,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:38,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:38,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:38,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:39,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:51:39,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:51:39,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:39,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:39,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:39,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:39,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:51:39,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:51:39,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:40,608 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:51:40,648 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:51:40,727 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.158 +2025-10-01 21:51:40,727 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:51:40,727 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:51:42,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:42,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:42,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:42,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:51:42,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:51:42,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:42,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:42,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:42,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:42,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:51:42,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:51:42,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:43,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:43,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:43,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:43,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:51:43,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:51:43,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:43,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:43,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:43,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:43,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 21:51:43,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 21:51:43,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:46,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:46,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:46,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:46,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:51:46,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:51:46,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:46,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:46,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:46,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:46,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.207s +2025-10-01 21:51:46,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.207s (avg: 0.207s/image) +2025-10-01 21:51:46,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:47,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:47,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:47,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:47,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 21:51:47,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 21:51:47,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:47,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:47,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:47,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:47,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:51:47,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:51:47,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:51,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:51,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:51,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:51,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:51:51,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:51:51,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:51,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:51,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:51,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:51,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:51:51,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:51:51,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:52,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:52,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:52,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:52,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:51:52,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:51:52,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:53,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:53,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:53,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:53,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:51:53,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:51:53,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:55,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:55,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:55,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:55,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:51:55,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:51:55,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:56,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:56,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:56,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:56,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:51:56,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:51:56,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:51:58,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:51:58,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:51:58,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:51:58,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:51:58,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:51:58,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:00,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:00,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:00,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:00,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:52:00,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:52:00,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:00,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:00,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:00,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:00,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:52:00,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:52:00,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:00,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:00,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:00,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:00,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 21:52:00,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 21:52:00,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:01,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:01,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:01,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:01,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:52:01,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:52:01,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:03,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:03,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:03,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:03,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:52:03,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:52:03,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:05,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:05,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:05,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:05,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:52:05,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:52:05,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:05,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:05,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:05,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:06,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:52:06,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:52:06,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:07,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:07,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:07,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:07,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:52:07,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:52:07,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:08,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:08,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:08,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:08,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:52:08,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:52:08,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:08,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:08,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:08,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:09,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:52:09,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:52:09,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:10,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:10,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:10,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:10,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:52:10,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:52:10,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:11,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:11,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:11,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:11,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 21:52:11,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 21:52:11,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:13,291 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:52:13,313 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 716, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:52:13,389 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.973 +2025-10-01 21:52:13,389 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:52:13,390 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:52:13,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:13,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:13,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:13,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:52:13,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:52:13,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:14,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:14,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:14,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:14,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:52:14,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:52:14,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:15,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:15,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:15,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:15,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:52:15,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:52:15,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:16,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:16,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:17,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:17,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:52:17,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:52:17,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:17,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:17,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:17,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:17,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:52:17,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:52:17,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:19,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:19,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:19,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:19,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:52:19,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:52:19,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:19,555 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:52:19,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:52:19,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:52:19,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 21:52:19,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 21:52:19,856 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:52:20,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:20,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:20,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:20,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 21:52:20,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 21:52:20,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:23,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:23,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:23,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:23,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:52:23,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:52:23,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:23,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:23,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:23,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:24,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:52:24,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:52:24,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:26,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:26,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:27,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:27,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:52:27,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:52:27,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:27,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:27,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:27,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:27,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:52:27,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:52:27,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:27,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:27,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:27,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:28,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:52:28,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:52:28,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:30,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:30,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:30,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:30,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:52:30,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:52:30,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:32,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:32,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:32,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:32,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:52:32,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:52:32,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:33,218 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:52:33,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:52:33,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:52:33,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 21:52:33,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 21:52:33,502 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:52:39,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:39,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:39,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:39,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:52:39,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:52:39,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:42,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:42,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:42,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:43,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:52:43,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:52:43,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:43,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:43,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:43,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:43,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:52:43,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:52:43,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:48,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:48,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:48,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:48,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:52:48,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:52:48,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:48,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:48,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:48,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:48,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:52:48,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:52:48,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:52,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:52,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:52,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:53,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:52:53,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:52:53,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:52:59,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:52:59,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:52:59,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:52:59,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:52:59,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:52:59,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:05,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:05,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:05,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:05,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:53:05,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:53:05,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:06,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:06,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:06,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:06,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:53:06,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:53:06,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:08,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:08,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:08,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:08,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:53:08,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:53:08,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:10,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:10,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:10,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:11,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:53:11,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:53:11,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:13,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:13,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:13,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:13,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:53:13,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:53:13,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:14,341 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:53:14,377 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:53:14,466 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.367 +2025-10-01 21:53:14,466 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 21:53:14,466 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 21:53:18,492 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:53:18,528 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:53:18,612 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.357 +2025-10-01 21:53:18,612 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 21:53:18,613 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 21:53:18,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:18,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:18,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:19,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:53:19,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:53:19,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:21,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:21,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:21,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:21,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:53:21,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:53:21,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:22,575 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:53:22,605 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:53:22,687 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.726 +2025-10-01 21:53:22,687 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:53:22,687 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:53:23,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:23,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:23,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:23,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:53:23,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:53:23,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:27,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:27,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:27,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:27,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 21:53:27,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 21:53:27,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:29,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:29,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:29,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:29,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:53:29,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:53:29,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:29,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:29,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:29,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:30,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:53:30,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:53:30,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:32,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:32,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:32,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:32,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:53:32,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:53:32,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:34,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:34,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:34,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:35,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:53:35,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:53:35,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:35,349 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:53:35,376 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:53:35,458 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.607 +2025-10-01 21:53:35,458 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:53:35,458 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 21:53:37,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:37,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:37,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:37,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:53:37,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:53:37,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:38,936 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:53:38,977 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:53:39,058 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.277 +2025-10-01 21:53:39,059 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:53:39,059 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:53:42,590 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:53:42,622 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:53:42,701 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.275 +2025-10-01 21:53:42,701 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:53:42,701 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:53:43,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:43,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:43,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:43,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:53:43,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:53:43,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:47,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:47,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:47,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:47,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:53:47,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:53:47,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:49,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:49,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:49,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:49,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:53:49,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:53:49,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:52,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:53:52,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:53:52,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:53:53,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:53:53,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:53:53,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:53:53,346 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:53:53,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:53:53,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:53:53,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 21:53:53,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 21:53:53,652 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:54:00,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:00,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:00,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:00,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:54:00,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:54:00,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:00,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:00,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:01,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:01,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:54:01,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:54:01,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:01,542 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:54:01,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:54:01,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:54:01,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 21:54:01,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-01 21:54:01,844 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:54:08,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:08,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:08,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:08,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:54:08,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:54:08,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:08,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:08,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:08,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:08,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:54:08,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:54:08,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:14,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:14,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:14,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:14,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:54:14,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:54:14,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:14,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:14,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:14,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:14,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:54:14,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:54:14,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:15,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:15,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:15,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:15,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:54:15,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:54:15,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:15,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:15,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:15,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:15,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:54:15,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:54:15,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:17,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:17,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:18,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:18,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:54:18,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:54:18,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:18,282 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:54:18,301 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:54:18,376 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=12.194 +2025-10-01 21:54:18,376 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:54:18,377 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:54:20,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:20,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:20,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:20,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:54:20,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:54:20,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:21,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:21,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:21,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:21,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 21:54:21,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 21:54:21,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:21,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:54:22,001 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:54:22,078 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.493 +2025-10-01 21:54:22,078 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:54:22,078 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:54:22,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:22,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:22,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:22,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:54:22,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:54:22,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:22,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:22,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:22,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:22,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:54:22,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:54:22,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:24,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:24,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:24,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:24,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:54:24,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:54:24,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:25,510 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:54:25,534 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:54:25,610 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.439 +2025-10-01 21:54:25,611 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:54:25,611 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:54:27,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:27,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:27,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:27,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:54:27,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:54:27,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:27,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:27,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:27,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:27,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:54:27,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:54:27,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:28,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:28,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:28,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:28,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 21:54:28,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 21:54:28,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:33,251 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:54:33,282 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:54:33,362 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=170.659 +2025-10-01 21:54:33,362 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:54:33,362 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:54:35,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:35,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:36,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:36,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:54:36,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:54:36,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:39,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:39,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:39,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:39,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 21:54:39,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 21:54:39,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:42,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:42,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:42,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:42,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:54:42,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:54:42,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:45,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:45,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:45,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:45,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:54:45,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:54:45,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:48,462 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:54:48,495 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(990, 990, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:54:48,583 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.089 +2025-10-01 21:54:48,583 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 21:54:48,583 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 21:54:51,238 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:54:51,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:54:51,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:54:51,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 21:54:51,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-01 21:54:51,522 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:54:55,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:55,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:56,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:56,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 21:54:56,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 21:54:56,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:54:56,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:54:56,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:54:56,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:54:56,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:54:56,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:54:56,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:02,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:02,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:02,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:02,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:55:02,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:55:02,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:05,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:05,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:05,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:05,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:55:05,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:55:05,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:06,232 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:55:06,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:55:06,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:55:06,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 21:55:06,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 21:55:06,501 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:55:12,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:12,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:12,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:12,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:55:12,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:55:12,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:18,288 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:55:18,316 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:55:18,395 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.096 +2025-10-01 21:55:18,395 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 21:55:18,395 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:55:18,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:18,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:18,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:18,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:55:18,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:55:18,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:20,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:20,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:20,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:20,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 21:55:20,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 21:55:20,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:23,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:23,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:23,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:24,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:55:24,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:55:24,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:25,091 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:55:25,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:55:25,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:55:25,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 21:55:25,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 21:55:25,361 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:55:28,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:28,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:28,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:29,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:55:29,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:55:29,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:29,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:29,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:29,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:29,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:55:29,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:55:29,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:30,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:30,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:30,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:31,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:55:31,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:55:31,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:34,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:34,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:34,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:34,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:55:34,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:55:34,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:35,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:35,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:35,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:35,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:55:35,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:55:35,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:37,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:37,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:37,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:37,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:55:37,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:55:37,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:40,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:40,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:40,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:40,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:55:40,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:55:40,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:44,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:44,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:44,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:44,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:55:44,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:55:44,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:45,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:45,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:45,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:46,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:55:46,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:55:46,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:46,582 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:55:46,609 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:55:46,696 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.765 +2025-10-01 21:55:46,696 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 21:55:46,697 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 21:55:51,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:51,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:51,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:52,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:55:52,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:55:52,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:55:54,212 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:55:54,246 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:55:54,333 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.191 +2025-10-01 21:55:54,333 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 21:55:54,333 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 21:55:57,667 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:55:57,701 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:55:57,777 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.190 +2025-10-01 21:55:57,777 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:55:57,777 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:55:58,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:55:58,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:55:58,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:55:58,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:55:58,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:55:58,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:02,009 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:56:02,052 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:56:02,129 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=207.753 +2025-10-01 21:56:02,129 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:56:02,130 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:56:03,863 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:56:03,899 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:56:03,974 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.495 +2025-10-01 21:56:03,975 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 21:56:03,975 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:56:05,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:05,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:05,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:05,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:56:05,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:56:05,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:05,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:05,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:05,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:05,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:56:05,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:56:05,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:07,849 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:56:07,876 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 603, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:56:07,947 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.198 +2025-10-01 21:56:07,947 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 21:56:07,948 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 21:56:11,739 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:56:11,762 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:56:11,836 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.441 +2025-10-01 21:56:11,836 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 21:56:11,836 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 21:56:17,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:17,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:17,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:17,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:56:17,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:56:17,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:18,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:18,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:18,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:18,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:56:18,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:56:18,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:20,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:20,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:20,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:20,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:56:20,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:56:20,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:20,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:20,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:20,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:20,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:56:20,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:56:20,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:22,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:22,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:22,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:22,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 21:56:22,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 21:56:22,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:25,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:25,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:25,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:26,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:56:26,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:56:26,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:27,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:27,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:27,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:27,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 21:56:27,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 21:56:27,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:28,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:28,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:28,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:28,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:56:28,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:56:28,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:30,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:30,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:30,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:30,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:56:30,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:56:30,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:34,555 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:56:34,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:56:34,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:56:34,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 21:56:34,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 21:56:34,823 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:56:35,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:35,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:35,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:35,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:56:35,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:56:35,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:38,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:38,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:38,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:38,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 21:56:38,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 21:56:38,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:38,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:38,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:38,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:39,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:56:39,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:56:39,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:40,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:40,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:40,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:40,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 21:56:40,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 21:56:40,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:41,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:41,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:41,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:41,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:56:41,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:56:41,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:45,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:45,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:45,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:45,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:56:45,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:56:45,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:46,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:46,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:46,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:46,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:56:46,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:56:46,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:47,702 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:56:47,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:56:47,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:56:47,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 21:56:47,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 21:56:47,985 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:56:48,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:48,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:48,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:48,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:56:48,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:56:48,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:51,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:51,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:51,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:51,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:56:51,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:56:51,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:52,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:52,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:52,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:52,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:56:52,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:56:52,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:53,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:53,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:53,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:54,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:56:54,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:56:54,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:54,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:54,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:54,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:54,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:56:54,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:56:54,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:56,318 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:56:56,337 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:56:56,414 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.736 +2025-10-01 21:56:56,415 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 21:56:56,415 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 21:56:58,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:58,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:58,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:58,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:56:58,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:56:58,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:56:59,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:56:59,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:56:59,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:56:59,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:56:59,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:56:59,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:00,528 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:57:00,555 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:57:00,641 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.431 +2025-10-01 21:57:00,641 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 21:57:00,641 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 21:57:02,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:02,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:02,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:02,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:57:02,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:57:02,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:03,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:03,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:03,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:03,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 21:57:03,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 21:57:03,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:04,467 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:57:04,501 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:57:04,588 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.454 +2025-10-01 21:57:04,588 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 21:57:04,589 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 21:57:04,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:04,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:04,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:04,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 21:57:04,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 21:57:04,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:06,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:06,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:06,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:06,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:57:06,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:57:06,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:08,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:08,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:08,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:08,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 21:57:08,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 21:57:08,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:11,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:11,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:11,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:11,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:57:11,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:57:11,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:16,345 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:57:16,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:57:16,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:57:16,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-01 21:57:16,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-01 21:57:16,615 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:57:16,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:16,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:16,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:16,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 21:57:16,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 21:57:16,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:20,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:20,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:20,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:21,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:57:21,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:57:21,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:22,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:22,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:22,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:22,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:57:22,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:57:22,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:22,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:22,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:22,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:22,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:57:22,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:57:22,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:25,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:25,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:25,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:25,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:57:25,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:57:25,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:25,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:25,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:25,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:26,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 21:57:26,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 21:57:26,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:26,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:26,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:26,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:26,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 21:57:26,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 21:57:26,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:29,858 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 21:57:29,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 21:57:29,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 21:57:30,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 21:57:30,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 21:57:30,151 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 21:57:30,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:30,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:30,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:30,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 21:57:30,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 21:57:30,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:34,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:34,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:34,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:34,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:57:34,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:57:34,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:34,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:34,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:34,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:34,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:57:35,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:57:35,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:35,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:35,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:35,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:36,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 21:57:36,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 21:57:36,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:37,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:37,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:37,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:38,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:57:38,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:57:38,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:38,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:38,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:38,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:38,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:57:38,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:57:38,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:39,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:39,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:39,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:39,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 21:57:39,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 21:57:39,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:39,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:39,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:39,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:39,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 21:57:39,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 21:57:39,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:43,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:43,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:43,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:44,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:57:44,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:57:44,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:44,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:44,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:44,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:44,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:57:44,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:57:44,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:45,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:45,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:45,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:45,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 21:57:45,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 21:57:45,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:45,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:45,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:45,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:45,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 21:57:45,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 21:57:45,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:49,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:49,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:49,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:49,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:57:49,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:57:49,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:50,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:50,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:50,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:50,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 21:57:50,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 21:57:50,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:51,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:51,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:51,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:51,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:57:51,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:57:51,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:55,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:55,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:55,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:55,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:57:55,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:57:55,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:57,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:57,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:57,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:57,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:57:57,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:57:57,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:57:58,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:57:58,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:57:58,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:57:58,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:57:58,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:57:58,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:02,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:02,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:02,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:02,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 21:58:02,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 21:58:02,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:03,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:03,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:03,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:03,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:58:03,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:58:03,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:06,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:06,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:06,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:06,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 21:58:06,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 21:58:06,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:07,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:07,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:07,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:07,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:58:07,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:58:07,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:13,438 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:58:13,462 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:58:13,542 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.439 +2025-10-01 21:58:13,542 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 21:58:13,542 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 21:58:13,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:13,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:13,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:14,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 21:58:14,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 21:58:14,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:24,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:24,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:24,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:24,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:58:24,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:58:24,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:25,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:25,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:25,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:25,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:58:25,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:58:25,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:31,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:31,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:31,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:31,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 21:58:31,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 21:58:31,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:33,366 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:58:33,404 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:58:33,479 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.464 +2025-10-01 21:58:33,479 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 21:58:33,479 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 21:58:36,990 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:58:37,016 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:58:37,098 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.612 +2025-10-01 21:58:37,098 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:58:37,099 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:58:37,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:37,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:37,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:37,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 21:58:37,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 21:58:37,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:38,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:38,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:38,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:38,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:58:38,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:58:38,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:40,666 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:58:40,691 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:58:40,772 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.251 +2025-10-01 21:58:40,773 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 21:58:40,773 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:58:44,186 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:58:44,214 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:58:44,295 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.145 +2025-10-01 21:58:44,296 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 21:58:44,296 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 21:58:44,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:44,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:44,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:44,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 21:58:44,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 21:58:44,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:47,822 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:58:47,847 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:58:47,926 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.548 +2025-10-01 21:58:47,926 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:58:47,926 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 21:58:51,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:51,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:51,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:51,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:58:51,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:58:51,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:51,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:58:51,808 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:58:51,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.796 +2025-10-01 21:58:51,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 21:58:51,887 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 21:58:52,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:52,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:52,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:52,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:58:52,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:58:52,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:53,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:53,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:53,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:54,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 21:58:54,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 21:58:54,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:54,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:54,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:54,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:55,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 21:58:55,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 21:58:55,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:58,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:58,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:58,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:58,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 21:58:58,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 21:58:58,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:58:59,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:58:59,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:58:59,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:58:59,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 21:58:59,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 21:58:59,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:01,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:01,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:01,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:01,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:59:01,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:59:01,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:05,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:05,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:05,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:05,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:59:05,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:59:05,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:08,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:08,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:08,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:09,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 21:59:09,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 21:59:09,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:11,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:11,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:11,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:11,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:59:11,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:59:11,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:11,865 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 21:59:11,901 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 21:59:11,986 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.943 +2025-10-01 21:59:11,987 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 21:59:11,987 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 21:59:14,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:14,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:14,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:14,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 21:59:14,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 21:59:14,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:19,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:19,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:19,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:19,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 21:59:19,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 21:59:19,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:19,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:19,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:19,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:19,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 21:59:19,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 21:59:19,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:20,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:20,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:20,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:20,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:59:20,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:59:20,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:21,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:21,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:21,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:21,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:59:21,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:59:21,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:26,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:26,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:26,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:26,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:59:26,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:59:26,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:26,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:26,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:27,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:27,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 21:59:27,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 21:59:27,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:27,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:27,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:27,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:27,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:59:27,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:59:27,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:29,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:29,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:29,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:29,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:59:29,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:59:29,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:33,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:33,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:33,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:33,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:59:33,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:59:33,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:37,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:37,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:37,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:37,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 21:59:37,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 21:59:37,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:38,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:38,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:38,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:38,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 21:59:38,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 21:59:38,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:38,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:38,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:38,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:38,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:59:38,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:59:38,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:39,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:39,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:39,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:39,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 21:59:39,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 21:59:39,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:41,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:41,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:42,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:42,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 21:59:42,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 21:59:42,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:43,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:43,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:43,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:43,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 21:59:43,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 21:59:43,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:46,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:46,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:46,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:46,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:59:46,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:59:46,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:46,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:46,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:46,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:47,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 21:59:47,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 21:59:47,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:48,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:48,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:48,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:48,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 21:59:48,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 21:59:48,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:49,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:49,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:49,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:49,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 21:59:49,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 21:59:49,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:49,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:49,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:49,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:49,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 21:59:49,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 21:59:49,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:50,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:50,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:50,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:50,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 21:59:50,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 21:59:50,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:52,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:52,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:52,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:52,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 21:59:52,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 21:59:52,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:53,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:53,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:53,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:53,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 21:59:53,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 21:59:53,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:54,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:54,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:55,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:55,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 21:59:55,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 21:59:55,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:56,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:56,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:56,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:56,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 21:59:56,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 21:59:56,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 21:59:59,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 21:59:59,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 21:59:59,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 21:59:59,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 21:59:59,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 21:59:59,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:00,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:00,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:00,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:00,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:00:00,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:00:00,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:00,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:00,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:00,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:00,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:00:00,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:00:00,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:01,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:01,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:01,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:01,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:00:01,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:00:01,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:02,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:02,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:02,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:02,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:00:02,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:00:02,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:04,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:04,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:04,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:04,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:00:04,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:00:04,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:06,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:06,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:06,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:06,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:00:06,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:00:06,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:08,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:08,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:08,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:08,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:00:08,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:00:08,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:09,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:09,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:09,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:09,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:00:09,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:00:09,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:10,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:10,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:10,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:10,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:00:10,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:00:10,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:12,952 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:00:12,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:00:13,057 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.838 +2025-10-01 22:00:13,058 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:00:13,058 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 22:00:15,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:15,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:15,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:15,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:00:15,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:00:15,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:19,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:19,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:19,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:19,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:00:19,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:00:19,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:21,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:21,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:21,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:21,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:00:21,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:00:21,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:25,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:25,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:25,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:25,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:00:25,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:00:25,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:26,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:26,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:26,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:26,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:00:26,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:00:26,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:28,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:28,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:28,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:28,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:00:28,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:00:28,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:29,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:29,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:29,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:29,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:00:29,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:00:29,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:29,813 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:00:29,844 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:00:29,919 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.434 +2025-10-01 22:00:29,919 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:00:29,919 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 22:00:31,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:31,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:31,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:31,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:00:31,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:00:31,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:33,222 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:00:33,241 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:00:33,320 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.881 +2025-10-01 22:00:33,320 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:00:33,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:00:36,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:36,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:36,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:36,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:00:36,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:00:36,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:37,414 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:00:37,439 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:00:37,516 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.931 +2025-10-01 22:00:37,516 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:00:37,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:00:38,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:38,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:38,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:38,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:00:38,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:00:38,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:42,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:42,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:42,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:43,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:00:43,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:00:43,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:43,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:43,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:43,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:43,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:00:43,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:00:43,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:48,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:48,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:48,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:48,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 22:00:48,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 22:00:48,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:50,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:50,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:50,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:50,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:00:50,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:00:50,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:00:53,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:00:53,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:00:53,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:00:53,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:00:53,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:00:53,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:01,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:01,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:01,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:01,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:01:01,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:01:01,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:03,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:03,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:04,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:04,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:01:04,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:01:04,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:06,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:06,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:06,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:06,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:01:06,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:01:06,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:09,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:09,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:09,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:10,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:01:10,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:01:10,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:10,939 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:01:10,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:01:11,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:01:11,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.316s +2025-10-01 22:01:11,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.316s (avg: 0.158s/image) +2025-10-01 22:01:11,256 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:01:14,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:14,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:14,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:15,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:01:15,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:01:15,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:15,261 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:01:15,303 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 748, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:01:15,382 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.536 +2025-10-01 22:01:15,382 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:01:15,383 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:01:18,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:18,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:18,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:18,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 22:01:18,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 22:01:18,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:19,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:19,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:19,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:19,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:01:19,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:01:19,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:20,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:20,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:20,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:20,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:01:20,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:01:20,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:20,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:20,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:20,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:20,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:01:20,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:01:20,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:26,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:26,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:26,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:26,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:01:26,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:01:26,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:28,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:28,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:28,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:28,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:01:28,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:01:28,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:30,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:30,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:30,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:30,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:01:30,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:01:30,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:31,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:31,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:31,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:31,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:01:31,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:01:31,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:34,318 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:01:34,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:01:34,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:01:34,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-01 22:01:34,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-01 22:01:34,610 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:01:36,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:36,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:36,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:36,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:01:36,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:01:36,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:41,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:41,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:41,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:41,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:01:41,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:01:41,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:46,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:46,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:46,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:46,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 22:01:46,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 22:01:46,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:46,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:46,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:47,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:47,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:01:47,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:01:47,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:48,455 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:01:48,480 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:01:48,562 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.875 +2025-10-01 22:01:48,562 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:01:48,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:01:51,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:51,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:51,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:51,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 22:01:51,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 22:01:51,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:51,981 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:01:52,008 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:01:52,087 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=191.577 +2025-10-01 22:01:52,087 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:01:52,087 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:01:53,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:53,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:53,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:53,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:01:53,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:01:53,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:01:55,446 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:01:55,481 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:01:55,560 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.570 +2025-10-01 22:01:55,561 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:01:55,561 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:01:56,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:01:56,102 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:01:56,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.890 +2025-10-01 22:01:56,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:01:56,180 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:01:59,152 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:01:59,175 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:01:59,254 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.924 +2025-10-01 22:01:59,255 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:01:59,255 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:01:59,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:01:59,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:01:59,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:01:59,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:01:59,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:01:59,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:03,050 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:02:03,077 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:02:03,156 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.701 +2025-10-01 22:02:03,157 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:02:03,157 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:02:04,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:04,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:04,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:05,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:02:05,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:02:05,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:05,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:05,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:05,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:05,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 22:02:05,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 22:02:05,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:05,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:05,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:05,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:06,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:02:06,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:02:06,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:10,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:10,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:10,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:10,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:02:10,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:02:10,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:11,528 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:02:11,551 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:02:11,626 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.922 +2025-10-01 22:02:11,626 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:02:11,626 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 22:02:11,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:11,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:11,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:11,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:02:11,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:02:11,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:13,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:13,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:13,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:13,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:02:13,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:02:13,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:13,953 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:02:13,989 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:02:14,068 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.513 +2025-10-01 22:02:14,068 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:02:14,068 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:02:16,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:16,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:16,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:16,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:02:16,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:02:16,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:16,951 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:02:16,969 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:02:17,043 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=193.406 +2025-10-01 22:02:17,043 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:02:17,043 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:02:17,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:17,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:18,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:18,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:02:18,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:02:18,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:18,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:18,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:18,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:19,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:02:19,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:02:19,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:19,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:19,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:19,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:19,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:02:19,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:02:19,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:20,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:20,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:20,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:20,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:02:20,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:02:20,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:21,067 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:02:21,094 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:02:21,168 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.464 +2025-10-01 22:02:21,168 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:02:21,168 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:02:21,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:21,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:21,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:21,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 22:02:21,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 22:02:21,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:22,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:22,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:22,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:23,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:02:23,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:02:23,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:25,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:25,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:25,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:25,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:02:25,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:02:25,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:25,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:25,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:25,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:26,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:02:26,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:02:26,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:27,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:27,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:27,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:27,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:02:27,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:02:27,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:31,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:31,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:31,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:31,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:02:31,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:02:31,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:34,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:34,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:34,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:34,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:02:34,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:02:34,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:35,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:35,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:35,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:35,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:02:35,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:02:35,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:35,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:35,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:35,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:35,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:02:35,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:02:35,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:36,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:36,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:37,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:37,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:02:37,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:02:37,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:39,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:39,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:39,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:39,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:02:39,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:02:39,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:40,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:40,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:40,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:40,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:02:40,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:02:40,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:41,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:41,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:41,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:41,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 22:02:41,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 22:02:41,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:43,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:43,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:43,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:43,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:02:43,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:02:43,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:46,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:46,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:46,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:46,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:02:46,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:02:46,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:48,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:48,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:48,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:48,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:02:48,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:02:48,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:49,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:49,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:49,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:49,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:02:49,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:02:49,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:51,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:51,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:51,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:51,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:02:51,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:02:51,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:02:56,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:02:56,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:02:56,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:02:56,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:02:56,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:02:56,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:01,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:01,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:01,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:01,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:03:01,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:03:01,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:08,001 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:03:08,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:03:08,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:03:08,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 22:03:08,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 22:03:08,300 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:03:12,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:12,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:12,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:12,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:03:12,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:03:12,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:13,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:13,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:13,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:13,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:03:13,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:03:13,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:15,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:15,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:15,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:15,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:03:15,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:03:15,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:17,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:17,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:17,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:17,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 22:03:17,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 22:03:17,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:18,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:18,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:18,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:18,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:03:18,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:03:18,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:20,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:20,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:20,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:20,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:03:20,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:03:20,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:21,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:21,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:21,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:21,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:03:21,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:03:21,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:23,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:23,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:23,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:23,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:03:23,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:03:23,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:25,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:25,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:25,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:25,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:03:25,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:03:25,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:27,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:27,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:27,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:27,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:03:27,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:03:27,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:28,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:28,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:28,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:28,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:03:28,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:03:28,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:29,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:29,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:29,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:29,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:03:29,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:03:29,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:32,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:32,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:33,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:33,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:03:33,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:03:33,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:33,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:33,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:33,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:33,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:03:33,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:03:33,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:35,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:35,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:35,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:35,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:03:35,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:03:35,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:37,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:37,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:37,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:38,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:03:38,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:03:38,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:42,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:42,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:42,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:42,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:03:42,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:03:42,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:45,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:45,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:45,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:45,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:03:45,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:03:45,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:46,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:46,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:46,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:46,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:03:46,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:03:46,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:47,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:47,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:47,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:47,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:03:47,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:03:47,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:48,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:48,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:48,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:48,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:03:48,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:03:48,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:51,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:51,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:51,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:52,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:03:52,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:03:52,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:54,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:54,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:54,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:54,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:03:54,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:03:54,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:56,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:56,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:56,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:56,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:03:56,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:03:56,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:56,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:56,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:56,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:56,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:03:56,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:03:56,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:58,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:58,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:03:58,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:03:58,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:03:58,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:03:58,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:03:59,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:03:59,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:00,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:00,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:04:00,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:04:00,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:01,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:01,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:01,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:01,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:04:01,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:04:01,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:05,280 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:04:05,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:04:05,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:04:05,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 22:04:05,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-01 22:04:05,572 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:04:08,056 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:04:08,090 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:04:08,171 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.031 +2025-10-01 22:04:08,171 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:04:08,172 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:04:10,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:10,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:10,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:10,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:04:10,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:04:10,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:15,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:15,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:15,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:15,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:04:15,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:04:15,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:19,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:19,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:19,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:19,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:04:19,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:04:19,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:19,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:19,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:19,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:19,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:04:19,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:04:19,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:22,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:22,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:22,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:22,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:04:22,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:04:22,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:23,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:23,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:23,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:23,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:04:23,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:04:23,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:28,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:28,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:28,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:28,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:04:28,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:04:28,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:29,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:29,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:29,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:30,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:04:30,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:04:30,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:30,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:30,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:30,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:30,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 22:04:30,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 22:04:30,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:33,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:33,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:33,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:33,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:04:33,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:04:33,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:35,907 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:04:35,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:04:35,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:04:36,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 22:04:36,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 22:04:36,206 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:04:37,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:37,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:37,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:37,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 22:04:37,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 22:04:37,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:38,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:38,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:38,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:38,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:04:38,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:04:38,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:41,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:41,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:41,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:41,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:04:41,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:04:41,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:42,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:42,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:42,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:42,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:04:42,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:04:42,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:42,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:42,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:42,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:43,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:04:43,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:04:43,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:45,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:45,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:45,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:45,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 22:04:45,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 22:04:45,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:46,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:46,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:46,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:47,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:04:47,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:04:47,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:49,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:49,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:49,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:49,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 22:04:49,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 22:04:49,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:50,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:50,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:50,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:50,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:04:50,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:04:50,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:51,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:51,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:51,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:51,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:04:51,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:04:51,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:51,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:51,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:51,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:51,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:04:51,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:04:51,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:55,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:55,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:55,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:55,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:04:55,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:04:55,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:57,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:57,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:57,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:57,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:04:57,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:04:57,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:58,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:58,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:58,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:04:58,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:04:58,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:04:58,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:04:59,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:04:59,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:04:59,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:00,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:05:00,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:05:00,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:02,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:02,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:02,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:02,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:05:02,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:05:02,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:03,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:03,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:03,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:03,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:05:03,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:05:03,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:07,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:07,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:07,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:07,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:05:07,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:05:07,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:09,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:09,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:09,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:09,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:05:09,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:05:09,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:20,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:20,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:20,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:21,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:05:21,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:05:21,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:22,753 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:05:22,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:05:22,868 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.978 +2025-10-01 22:05:22,868 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:05:22,868 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:05:25,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:25,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:25,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:25,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:05:25,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:05:25,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:26,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:26,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:26,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:26,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:05:26,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:05:26,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:26,817 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:05:26,839 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:05:26,918 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.874 +2025-10-01 22:05:26,918 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:05:26,918 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:05:30,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:30,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:30,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:31,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:05:31,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:05:31,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:31,322 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:05:31,346 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:05:31,423 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.049 +2025-10-01 22:05:31,424 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:05:31,424 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:05:35,083 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:05:35,102 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:05:35,178 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.562 +2025-10-01 22:05:35,179 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:05:35,179 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:05:35,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:35,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:35,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:35,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:05:35,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:05:35,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:36,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:36,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:36,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:36,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:05:36,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:05:36,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:36,928 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:05:36,946 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:05:37,024 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.330 +2025-10-01 22:05:37,025 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:05:37,025 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:05:38,741 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:05:38,778 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:05:38,860 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.702 +2025-10-01 22:05:38,861 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:05:38,861 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 22:05:40,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:40,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:40,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:40,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:05:40,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:05:40,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:42,071 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:05:42,093 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:05:42,171 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.715 +2025-10-01 22:05:42,171 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:05:42,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:05:46,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:46,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:46,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:46,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:05:46,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:05:46,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:49,946 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:05:49,968 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:05:50,047 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.992 +2025-10-01 22:05:50,047 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:05:50,047 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:05:50,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:50,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:50,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:50,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:05:50,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:05:50,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:54,286 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:05:54,315 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:05:54,392 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.423 +2025-10-01 22:05:54,392 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:05:54,393 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:05:58,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:58,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:58,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:58,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:05:58,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:05:58,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:05:59,060 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:05:59,093 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:05:59,170 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=168.923 +2025-10-01 22:05:59,170 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:05:59,170 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:05:59,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:05:59,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:05:59,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:05:59,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:05:59,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:05:59,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:03,783 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:06:03,822 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:06:03,900 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=212.188 +2025-10-01 22:06:03,900 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:06:03,901 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:06:03,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:03,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:03,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:04,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 22:06:04,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 22:06:04,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:04,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:04,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:04,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:04,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:06:04,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:06:04,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:08,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:08,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:08,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:08,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:06:08,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:06:08,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:13,008 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:06:13,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:06:13,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:06:13,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 22:06:13,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 22:06:13,311 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:06:18,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:18,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:18,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:18,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:06:18,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:06:18,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:19,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:19,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:19,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:19,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:06:19,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:06:19,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:21,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:21,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:21,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:21,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:06:21,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:06:21,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:23,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:23,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:23,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:23,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:06:23,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:06:23,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:26,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:26,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:26,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:26,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 22:06:26,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 22:06:26,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:29,967 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:06:29,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:06:30,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:06:30,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 22:06:30,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 22:06:30,265 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:06:30,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:30,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:30,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:30,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:06:30,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:06:30,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:32,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:32,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:32,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:33,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:06:33,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:06:33,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:34,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:34,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:34,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:34,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:06:34,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:06:34,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:35,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:35,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:35,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:35,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:06:35,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:06:35,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:37,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:37,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:37,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:37,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:06:37,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:06:37,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:38,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:38,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:38,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:39,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:06:39,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:06:39,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:40,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:40,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:40,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:41,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:06:41,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:06:41,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:42,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:42,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:42,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:42,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:06:42,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:06:42,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:47,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:47,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:47,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:47,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:06:47,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:06:47,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:48,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:48,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:48,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:48,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:06:48,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:06:48,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:49,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:49,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:49,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:50,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:06:50,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:06:50,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:50,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:50,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:50,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:50,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:06:50,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:06:50,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:52,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:52,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:52,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:52,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:06:52,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:06:52,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:52,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:52,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:52,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:52,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:06:52,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:06:52,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:56,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:56,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:56,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:56,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 22:06:56,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 22:06:56,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:58,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:58,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:58,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:59,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:06:59,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:06:59,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:06:59,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:06:59,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:06:59,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:06:59,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:06:59,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:06:59,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:02,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:02,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:02,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:02,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.209s +2025-10-01 22:07:02,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.209s (avg: 0.209s/image) +2025-10-01 22:07:02,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:03,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:03,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:03,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:03,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:07:03,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:07:03,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:03,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:03,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:03,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:03,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:07:03,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:07:03,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:04,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:04,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:04,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:04,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:07:04,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:07:04,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:06,049 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:07:06,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:07:06,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:07:06,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 22:07:06,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-01 22:07:06,335 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:07:07,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:07,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:07,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:07,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:07:07,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:07:07,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:09,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:09,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:09,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:10,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:07:10,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:07:10,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:10,711 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:07:10,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:07:10,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:07:11,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 22:07:11,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 22:07:11,004 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:07:13,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:13,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:13,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:13,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:07:13,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:07:13,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:17,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:17,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:17,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:17,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:07:17,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:07:17,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:19,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:19,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:19,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:19,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:07:19,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:07:19,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:21,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:21,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:21,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:21,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:07:21,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:07:21,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:22,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:22,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:22,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:22,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:07:22,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:07:22,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:24,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:24,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:25,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:25,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:07:25,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:07:25,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:25,318 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:07:25,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:07:25,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:07:25,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-01 22:07:25,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-01 22:07:25,582 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:07:29,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:29,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:29,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:29,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:07:29,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:07:29,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:30,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:30,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:30,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:30,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:07:30,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:07:30,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:31,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:31,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:31,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:31,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:07:31,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:07:31,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:31,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:31,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:31,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:31,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:07:31,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:07:31,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:32,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:32,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:32,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:32,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 22:07:32,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 22:07:32,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:34,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:34,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:34,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:34,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:07:34,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:07:34,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:37,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:37,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:37,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:37,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:07:37,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:07:37,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:38,236 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:07:38,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:07:38,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:07:38,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 22:07:38,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 22:07:38,516 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:07:39,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:39,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:39,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:40,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:07:40,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:07:40,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:41,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:41,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:41,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:42,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:07:42,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:07:42,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:42,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:42,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:42,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:42,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:07:42,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:07:42,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:44,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:44,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:44,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:44,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:07:44,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:07:44,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:45,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:45,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:45,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:45,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:07:45,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:07:45,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:45,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:45,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:45,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:45,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:07:45,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:07:45,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:47,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:47,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:47,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:47,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:07:47,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:07:47,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:48,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:48,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:48,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:48,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:07:48,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:07:48,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:52,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:52,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:52,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:52,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:07:52,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:07:52,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:52,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:52,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:52,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:52,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:07:52,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:07:52,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:53,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:53,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:53,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:53,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:07:53,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:07:53,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:54,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:54,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:54,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:54,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:07:54,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:07:54,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:55,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:55,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:55,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:55,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:07:55,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:07:55,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:57,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:57,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:57,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:57,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:07:57,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:07:57,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:07:59,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:07:59,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:07:59,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:07:59,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:07:59,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:07:59,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:08:00,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:08:00,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:08:00,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:08:00,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:08:00,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:08:00,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:08:14,716 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:08:14,760 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:08:14,846 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.203 +2025-10-01 22:08:14,847 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 22:08:14,847 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 22:08:17,601 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:08:17,640 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:08:17,729 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.976 +2025-10-01 22:08:17,729 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 22:08:17,730 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 22:08:19,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:08:19,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:08:19,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:08:19,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:08:19,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:08:19,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:08:20,311 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:08:20,334 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:08:20,416 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.619 +2025-10-01 22:08:20,416 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:08:20,416 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:08:23,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:08:23,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:08:23,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:08:23,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:08:23,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:08:23,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:08:24,329 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:08:24,360 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:08:24,436 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=179.249 +2025-10-01 22:08:24,436 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:08:24,436 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:08:25,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:08:25,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:08:25,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:08:25,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:08:25,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:08:25,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:08:26,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:08:26,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:08:26,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:08:26,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:08:26,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:08:26,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:08:30,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:08:30,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:08:30,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:08:30,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:08:30,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:08:30,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:08:32,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:08:32,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:08:32,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:08:32,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:08:32,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:08:32,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:08:38,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:08:38,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:08:38,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:08:38,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:08:38,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:08:38,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:08:49,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:08:49,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:08:49,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:08:49,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:08:49,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:08:49,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:08:50,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:08:50,919 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:08:51,007 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.334 +2025-10-01 22:08:51,007 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 22:08:51,007 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 22:08:55,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:08:55,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:08:55,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:08:55,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:08:55,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:08:55,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:08:58,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:08:58,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:08:58,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:08:58,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:08:58,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:08:58,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:08:58,980 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:08:59,020 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:08:59,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.368 +2025-10-01 22:08:59,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 22:08:59,109 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 22:09:03,390 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:09:03,433 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:09:03,538 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.648 +2025-10-01 22:09:03,538 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-01 22:09:03,538 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-01 22:09:07,569 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:09:07,598 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:09:07,689 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.445 +2025-10-01 22:09:07,689 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 22:09:07,689 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 22:09:26,379 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:09:26,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:09:26,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:09:26,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.327s +2025-10-01 22:09:26,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.327s (avg: 0.163s/image) +2025-10-01 22:09:26,707 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:09:31,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:09:31,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:09:31,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:09:32,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:09:32,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:09:32,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:09:39,163 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:09:39,184 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(774, 774, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:09:39,261 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.246 +2025-10-01 22:09:39,261 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:09:39,261 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:09:40,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:09:40,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:09:40,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:09:40,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:09:40,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:09:40,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:09:42,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:09:42,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:09:42,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:09:42,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:09:42,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:09:42,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:09:42,915 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:09:42,933 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(766, 766, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:09:43,004 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.622 +2025-10-01 22:09:43,005 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 22:09:43,005 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 22:09:47,010 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:09:47,031 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(769, 769, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:09:47,106 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.790 +2025-10-01 22:09:47,106 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:09:47,106 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 22:09:48,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:09:48,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:09:48,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:09:48,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:09:48,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:09:48,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:09:53,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:09:53,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:09:53,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:09:53,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:09:53,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:09:53,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:09:58,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:09:58,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:09:58,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:09:58,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 22:09:58,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 22:09:58,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:03,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:03,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:03,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:04,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 22:10:04,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 22:10:04,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:04,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:04,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:04,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:04,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:10:04,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:10:04,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:08,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:08,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:08,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:09,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:10:09,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:10:09,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:09,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:09,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:09,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:10,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:10:10,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:10:10,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:11,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:11,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:11,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:11,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:10:11,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:10:11,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:19,459 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:10:19,478 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:10:19,547 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.969 +2025-10-01 22:10:19,548 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 22:10:19,548 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 22:10:21,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:21,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:21,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:21,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:10:21,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:10:21,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:23,002 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:10:23,028 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(646, 646, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:10:23,102 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=237.304 +2025-10-01 22:10:23,102 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:10:23,102 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:10:24,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:24,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:24,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:24,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:10:24,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:10:24,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:27,309 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:10:27,324 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:10:27,389 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.428 +2025-10-01 22:10:27,390 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.065s +2025-10-01 22:10:27,390 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.066s +2025-10-01 22:10:27,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:27,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:27,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:27,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:10:27,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:10:27,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:29,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:29,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:29,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:30,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 22:10:30,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 22:10:30,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:30,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:30,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:30,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:30,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:10:30,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:10:30,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:32,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:32,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:32,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:32,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:10:32,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:10:32,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:33,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:33,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:33,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:33,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:10:33,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:10:33,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:36,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:36,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:36,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:36,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:10:36,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:10:36,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:36,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:36,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:36,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:36,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:10:36,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:10:36,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:39,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:39,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:39,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:39,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:10:39,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:10:39,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:40,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:40,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:40,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:40,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:10:40,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:10:40,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:42,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:42,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:42,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:42,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:10:42,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:10:42,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:43,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:43,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:43,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:44,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:10:44,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:10:44,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:47,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:47,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:47,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:47,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:10:47,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:10:47,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:49,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:49,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:49,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:49,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:10:49,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:10:49,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:50,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:50,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:50,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:50,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:10:50,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:10:50,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:51,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:51,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:51,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:51,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:10:51,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:10:51,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:53,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:53,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:53,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:53,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:10:53,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:10:53,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:54,688 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:10:54,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:10:54,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:10:54,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 22:10:54,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 22:10:54,970 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:10:55,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:55,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:55,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:55,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:10:55,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:10:55,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:58,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:58,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:58,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:10:59,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:10:59,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:10:59,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:10:59,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:10:59,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:10:59,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:00,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:11:00,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:11:00,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:03,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:03,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:03,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:03,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 22:11:03,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 22:11:03,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:04,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:04,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:04,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:04,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:11:04,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:11:04,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:09,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:09,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:09,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:09,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:11:09,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:11:09,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:09,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:09,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:09,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:09,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:11:09,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:11:09,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:14,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:14,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:14,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:14,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:11:14,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:11:14,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:16,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:16,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:16,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:16,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:11:16,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:11:16,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:16,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:16,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:16,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:16,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:11:16,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:11:16,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:18,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:18,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:18,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:18,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:11:18,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:11:18,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:18,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:18,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:19,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:19,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:11:19,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:11:19,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:20,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:20,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:20,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:20,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:11:20,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:11:20,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:22,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:22,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:22,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:22,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:11:22,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:11:22,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:23,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:23,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:23,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:23,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:11:23,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:11:23,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:24,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:24,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:24,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:24,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:11:24,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:11:24,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:27,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:27,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:27,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:27,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:11:27,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:11:27,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:28,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:28,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:28,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:28,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:11:28,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:11:28,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:31,080 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:11:31,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:11:31,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:11:31,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 22:11:31,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 22:11:31,373 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:11:32,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:32,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:32,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:33,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:11:33,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:11:33,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:33,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:33,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:33,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:33,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:11:33,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:11:33,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:37,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:37,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:37,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:37,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:11:37,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:11:37,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:39,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:39,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:39,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:39,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:11:39,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:11:39,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:40,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:40,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:40,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:40,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:11:40,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:11:40,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:41,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:41,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:41,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:41,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:11:41,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:11:41,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:43,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:43,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:43,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:43,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:11:43,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:11:43,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:45,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:45,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:45,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:45,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:11:45,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:11:45,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:46,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:46,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:46,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:46,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:11:46,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:11:46,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:49,223 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:11:49,251 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:11:49,337 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.734 +2025-10-01 22:11:49,338 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 22:11:49,338 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 22:11:49,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:49,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:49,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:50,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:11:50,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:11:50,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:50,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:50,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:50,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:50,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:11:50,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:11:50,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:51,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:51,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:51,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:51,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:11:51,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:11:51,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:54,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:54,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:54,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:54,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:11:54,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:11:54,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:55,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:55,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:55,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:55,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:11:55,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:11:55,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:57,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:57,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:57,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:57,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:11:57,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:11:57,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:57,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:11:57,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:11:57,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:11:57,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:11:57,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:11:57,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:11:58,981 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:11:59,000 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:11:59,068 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.320 +2025-10-01 22:11:59,069 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 22:11:59,069 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 22:12:03,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:03,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:03,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:04,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:12:04,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:12:04,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:04,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:04,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:04,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:04,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:12:04,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:12:04,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:05,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:05,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:05,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:05,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:12:05,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:12:05,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:08,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:08,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:08,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:08,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:12:08,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:12:08,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:10,289 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:12:10,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:12:10,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:12:10,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 22:12:10,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 22:12:10,576 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:12:15,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:15,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:15,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:15,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:12:15,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:12:15,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:17,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:17,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:17,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:17,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:12:17,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:12:17,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:22,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:22,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:22,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:22,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:12:22,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:12:22,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:24,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:24,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:24,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:24,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:12:24,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:12:24,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:24,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:24,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:24,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:24,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-01 22:12:24,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-01 22:12:24,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:25,139 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:12:25,160 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:12:25,231 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.190 +2025-10-01 22:12:25,231 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 22:12:25,231 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 22:12:28,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:28,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:28,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:28,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:12:28,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:12:28,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:28,998 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:12:29,016 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:12:29,093 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.772 +2025-10-01 22:12:29,094 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:12:29,094 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:12:29,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:29,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:29,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:29,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 22:12:29,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 22:12:29,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:30,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:30,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:30,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:30,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:12:30,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:12:30,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:32,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:32,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:32,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:32,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:12:32,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:12:32,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:32,780 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:12:32,801 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:12:32,877 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.756 +2025-10-01 22:12:32,878 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:12:32,878 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:12:33,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:33,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:33,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:33,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:12:33,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:12:33,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:34,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:34,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:34,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:34,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:12:34,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:12:34,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:35,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:35,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:35,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:35,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:12:35,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:12:35,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:37,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:37,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:37,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:37,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:12:37,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:12:37,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:37,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:37,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:37,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:37,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:12:37,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:12:37,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:38,519 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:12:38,554 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:12:38,636 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.722 +2025-10-01 22:12:38,636 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:12:38,636 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 22:12:39,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:39,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:39,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:39,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:12:39,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:12:39,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:42,129 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:12:42,150 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1066, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:12:42,228 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.797 +2025-10-01 22:12:42,228 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:12:42,228 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:12:43,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:43,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:44,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:44,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 22:12:44,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 22:12:44,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:44,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:44,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:44,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:44,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:12:44,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:12:44,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:44,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:44,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:44,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:45,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:12:45,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:12:45,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:48,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:48,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:48,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:48,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:12:48,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:12:48,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:49,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:49,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:50,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:50,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:12:50,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:12:50,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:50,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:50,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:50,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:50,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:12:50,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:12:50,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:50,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:50,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:50,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:51,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:12:51,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:12:51,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:54,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:54,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:54,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:54,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:12:54,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:12:54,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:55,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:55,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:55,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:55,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:12:55,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:12:55,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:56,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:56,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:56,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:56,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:12:56,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:12:56,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:12:57,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:12:57,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:12:57,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:12:57,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:12:57,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:12:57,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:00,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:00,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:00,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:01,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:13:01,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:13:01,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:03,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:03,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:03,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:03,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:13:03,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:13:03,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:03,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:03,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:03,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:03,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:13:03,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:13:03,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:07,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:07,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:07,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:08,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:13:08,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:13:08,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:08,180 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:13:08,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:13:08,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:13:08,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 22:13:08,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-01 22:13:08,468 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:13:09,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:09,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:09,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:10,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:13:10,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:13:10,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:11,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:11,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:11,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:11,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:13:11,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:13:11,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:16,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:16,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:16,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:16,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:13:16,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:13:16,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:17,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:17,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:17,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:17,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:13:17,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:13:17,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:19,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:19,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:19,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:19,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:13:19,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:13:19,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:19,609 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:13:19,630 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:13:19,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.381 +2025-10-01 22:13:19,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:13:19,708 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:13:20,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:20,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:20,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:20,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:13:20,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:13:20,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:24,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:24,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:24,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:24,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:13:24,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:13:24,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:24,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:24,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:24,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:25,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:13:25,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:13:25,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:28,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:28,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:28,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:28,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:13:28,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:13:28,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:31,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:31,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:31,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:31,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:13:31,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:13:31,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:32,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:32,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:32,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:33,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:13:33,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:13:33,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:34,073 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:13:34,101 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:13:34,184 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.921 +2025-10-01 22:13:34,185 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 22:13:34,185 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 22:13:36,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:36,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:36,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:36,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:13:36,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:13:36,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:37,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:37,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:37,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:37,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:13:37,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:13:37,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:37,795 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:13:37,818 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:13:37,893 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.165 +2025-10-01 22:13:37,893 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:13:37,894 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 22:13:38,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:38,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:38,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:38,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:13:38,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:13:38,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:41,004 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:13:41,028 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:13:41,104 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.503 +2025-10-01 22:13:41,104 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:13:41,105 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:13:43,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:43,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:43,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:43,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:13:43,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:13:43,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:52,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:52,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:52,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:52,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:13:52,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:13:52,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:59,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:59,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:59,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:59,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:13:59,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:13:59,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:13:59,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:13:59,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:13:59,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:13:59,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:13:59,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:13:59,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:02,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:02,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:02,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:02,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:14:02,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:14:02,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:05,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:05,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:05,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:05,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:14:05,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:14:05,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:08,128 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:14:08,152 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:14:08,232 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.256 +2025-10-01 22:14:08,232 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:14:08,232 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:14:08,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:08,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:08,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:08,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:14:08,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:14:08,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:09,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:09,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:09,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:09,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:14:09,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:14:09,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:12,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:12,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:12,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:12,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:14:12,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:14:12,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:13,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:13,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:13,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:13,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:14:13,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:14:13,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:14,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:14,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:14,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:14,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:14:14,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:14:14,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:15,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:15,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:15,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:15,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:14:15,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:14:15,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:17,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:17,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:17,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:17,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:14:17,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:14:17,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:18,389 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:14:18,434 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 801, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:14:18,517 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.611 +2025-10-01 22:14:18,518 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 22:14:18,518 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 22:14:21,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:21,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:21,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:21,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:14:21,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:14:21,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:22,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:22,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:22,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:22,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:14:22,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:14:22,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:22,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:14:22,810 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:14:22,884 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.494 +2025-10-01 22:14:22,885 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:14:22,885 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 22:14:26,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:26,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:26,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:26,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:14:26,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:14:26,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:27,796 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:14:27,812 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:14:27,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.536 +2025-10-01 22:14:27,885 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 22:14:27,885 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 22:14:27,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:27,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:27,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:28,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 22:14:28,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 22:14:28,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:28,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:28,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:28,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:28,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:14:28,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:14:28,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:29,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:29,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:29,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:30,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:14:30,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:14:30,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:31,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:31,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:31,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:31,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:14:31,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:14:31,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:35,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:35,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:35,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:35,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:14:35,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:14:35,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:36,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:36,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:36,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:36,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 22:14:36,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 22:14:36,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:38,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:38,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:38,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:38,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:14:38,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:14:38,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:46,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:46,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:46,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:46,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:14:46,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:14:46,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:47,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:47,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:47,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:47,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 22:14:47,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 22:14:47,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:48,152 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:14:48,183 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:14:48,265 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.195 +2025-10-01 22:14:48,265 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:14:48,265 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:14:49,087 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:14:49,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:14:49,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:14:49,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 22:14:49,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 22:14:49,374 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:14:51,685 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:14:51,709 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:14:51,794 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.452 +2025-10-01 22:14:51,794 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 22:14:51,794 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 22:14:54,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:54,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:54,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:55,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:14:55,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:14:55,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:55,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:55,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:55,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:55,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:14:55,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:14:55,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:55,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:55,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:55,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:55,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:14:55,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:14:55,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:14:58,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:14:58,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:14:58,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:14:58,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:14:58,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:14:58,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:00,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:00,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:00,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:01,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:15:01,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:15:01,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:01,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:01,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:01,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:01,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:15:01,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:15:01,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:01,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:01,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:01,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:01,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:15:01,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:15:01,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:02,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:02,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:02,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:02,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:15:02,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:15:02,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:03,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:03,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:03,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:03,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:15:03,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:15:03,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:04,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:04,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:04,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:04,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:15:04,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:15:04,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:06,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:06,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:06,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:06,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:15:06,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:15:06,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:07,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:07,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:07,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:07,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:15:07,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:15:07,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:07,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:07,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:07,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:07,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-01 22:15:07,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-01 22:15:07,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:08,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:08,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:08,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:08,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:15:08,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:15:08,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:08,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:08,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:08,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:08,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:15:08,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:15:08,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:09,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:09,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:09,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:09,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:15:09,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:15:09,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:10,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:10,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:10,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:10,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:15:10,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:15:10,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:10,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:10,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:10,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:11,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:15:11,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:15:11,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:13,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:13,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:13,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:13,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 22:15:13,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 22:15:13,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:13,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:13,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:13,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:14,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:15:14,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:15:14,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:14,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:14,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:14,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:14,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:15:14,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:15:14,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:15,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:15,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:15,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:15,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:15:15,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:15:15,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:15,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:15,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:15,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:15,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:15:15,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:15:15,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:17,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:17,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:17,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:17,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:15:17,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:15:17,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:18,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:18,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:18,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:18,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:15:18,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:15:18,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:20,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:20,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:21,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:21,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 22:15:21,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 22:15:21,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:21,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:21,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:21,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:21,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:15:21,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:15:21,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:21,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:21,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:22,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:22,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:15:22,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:15:22,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:22,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:22,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:22,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:22,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:15:22,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:15:22,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:22,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:22,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:22,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:23,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:15:23,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:15:23,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:27,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:27,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:27,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:27,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:15:27,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:15:27,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:27,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:27,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:27,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:27,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:15:27,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:15:27,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:29,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:29,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:29,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:29,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:15:29,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:15:29,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:29,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:29,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:29,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:29,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:15:29,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:15:29,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:30,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:30,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:30,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:30,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:15:30,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:15:30,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:31,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:31,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:31,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:31,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:15:31,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:15:31,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:33,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:33,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:33,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:33,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:15:33,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:15:33,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:34,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:34,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:34,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:34,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:15:34,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:15:34,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:35,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:35,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:35,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:36,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:15:36,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:15:36,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:40,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:40,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:41,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:41,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:15:41,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:15:41,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:43,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:43,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:43,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:43,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:15:43,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:15:43,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:44,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:44,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:44,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:44,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:15:44,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:15:44,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:48,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:48,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:48,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:48,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:15:48,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:15:48,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:49,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:49,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:49,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:49,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:15:49,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:15:49,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:52,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:52,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:52,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:52,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:15:52,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:15:52,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:55,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:55,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:55,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:56,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.209s +2025-10-01 22:15:56,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.209s (avg: 0.209s/image) +2025-10-01 22:15:56,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:56,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:56,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:56,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:56,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:15:56,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:15:56,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:57,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:57,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:57,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:57,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:15:57,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:15:57,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:15:57,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:15:57,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:15:57,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:15:57,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:15:57,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:15:57,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:00,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:00,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:00,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:00,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:16:00,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:16:00,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:02,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:02,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:02,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:02,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:16:02,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:16:02,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:02,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:02,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:02,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:02,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:16:02,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:16:02,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:02,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:02,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:02,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:02,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 22:16:02,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 22:16:02,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:03,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:03,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:03,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:03,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:16:03,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:16:03,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:07,567 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:16:07,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:16:07,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:16:07,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 22:16:07,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 22:16:07,849 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:16:08,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:08,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:08,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:08,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:16:08,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:16:08,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:08,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:08,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:08,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:08,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:16:08,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:16:08,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:08,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:08,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:08,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:08,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:16:08,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:16:08,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:09,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:09,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:09,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:09,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:16:09,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:16:09,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:11,935 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:16:11,966 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:16:12,048 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.977 +2025-10-01 22:16:12,048 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:16:12,049 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:16:12,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:12,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:12,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:13,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:16:13,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:16:13,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:13,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:13,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:13,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:13,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:16:13,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:16:13,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:13,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:13,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:13,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:13,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:16:13,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:16:13,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:15,378 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:16:15,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:16:15,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:16:15,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 22:16:15,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-01 22:16:15,684 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:16:16,471 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:16:16,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:16:16,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:16:16,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-01 22:16:16,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-01 22:16:16,747 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:16:17,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:17,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:17,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:17,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:16:17,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:16:17,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:22,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:22,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:22,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:22,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:16:22,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:16:22,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:22,686 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:16:22,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:16:22,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:16:22,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 22:16:22,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 22:16:22,967 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:16:24,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:24,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:25,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:25,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:16:25,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:16:25,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:27,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:27,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:27,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:27,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:16:27,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:16:27,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:28,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:28,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:28,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:28,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:16:28,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:16:28,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:31,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:31,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:31,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:31,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:16:31,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:16:31,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:34,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:34,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:34,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:34,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 22:16:34,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 22:16:34,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:35,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:35,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:35,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:35,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:16:35,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:16:35,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:42,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:42,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:42,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:42,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:16:42,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:16:42,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:46,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:46,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:46,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:46,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:16:46,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:16:46,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:46,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:46,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:46,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:46,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:16:46,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:16:46,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:47,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:47,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:47,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:47,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:16:47,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:16:47,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:49,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:49,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:50,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:50,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:16:50,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:16:50,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:50,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:50,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:50,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:50,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:16:50,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:16:50,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:55,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:55,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:55,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:55,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 22:16:55,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 22:16:55,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:55,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:55,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:55,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:55,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 22:16:55,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 22:16:55,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:56,017 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:16:56,033 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:16:56,111 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.559 +2025-10-01 22:16:56,111 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:16:56,111 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:16:56,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:56,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:56,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:56,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:16:56,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:16:56,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:59,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:16:59,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:16:59,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:16:59,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:16:59,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:16:59,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:16:59,679 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:16:59,705 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:16:59,786 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.348 +2025-10-01 22:16:59,786 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:16:59,786 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 22:17:00,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:00,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:00,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:00,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:17:00,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:17:00,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:01,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:01,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:01,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:01,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:17:01,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:17:01,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:04,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:04,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:04,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:04,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:17:04,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:17:04,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:04,798 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:17:04,826 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:17:04,905 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.056 +2025-10-01 22:17:04,906 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:17:04,906 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:17:06,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:06,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:06,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:06,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:17:06,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:17:06,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:10,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:10,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:10,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:10,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:17:10,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:17:10,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:12,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:12,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:12,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:12,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:17:12,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:17:12,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:14,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:14,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:14,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:14,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:17:14,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:17:14,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:15,021 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:17:15,045 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:17:15,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.841 +2025-10-01 22:17:15,123 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:17:15,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:17:15,680 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:17:15,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:17:15,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:17:15,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 22:17:15,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 22:17:15,969 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:17:18,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:18,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:18,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:18,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:17:18,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:17:18,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:19,499 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:17:19,523 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:17:19,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.923 +2025-10-01 22:17:19,603 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:17:19,603 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:17:20,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:20,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:20,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:20,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:17:20,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:17:20,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:21,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:21,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:21,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:21,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:17:21,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:17:21,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:23,258 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:17:23,287 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:17:23,367 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.175 +2025-10-01 22:17:23,367 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:17:23,367 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:17:25,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:25,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:25,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:25,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:17:25,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:17:25,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:26,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:26,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:26,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:26,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:17:26,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:17:26,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:28,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:28,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:28,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:28,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:17:28,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:17:28,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:30,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:30,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:30,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:30,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:17:30,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:17:30,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:33,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:33,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:33,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:33,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:17:33,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:17:33,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:34,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:34,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:34,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:34,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:17:34,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:17:34,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:36,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:36,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:36,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:36,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:17:36,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:17:36,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:40,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:40,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:40,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:40,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:17:40,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:17:40,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:41,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:41,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:41,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:41,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:17:41,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:17:41,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:42,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:42,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:42,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:42,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:17:42,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:17:42,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:47,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:47,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:47,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:47,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:17:47,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:17:47,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:50,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:50,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:50,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:50,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:17:50,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:17:50,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:50,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:50,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:50,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:51,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:17:51,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:17:51,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:54,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:17:54,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:17:54,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:17:54,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:17:54,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:17:54,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:17:58,221 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:17:58,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:17:58,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:17:58,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-01 22:17:58,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-01 22:17:58,509 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:18:00,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:00,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:00,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:00,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:18:00,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:18:00,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:03,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:03,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:03,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:03,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:18:03,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:18:03,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:06,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:06,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:06,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:06,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:18:06,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:18:06,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:09,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:09,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:09,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:09,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:18:09,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:18:09,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:11,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:11,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:11,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:11,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:18:11,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:18:11,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:13,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:13,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:14,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:14,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:18:14,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:18:14,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:14,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:14,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:14,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:14,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:18:14,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:18:14,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:20,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:20,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:20,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:20,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:18:20,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:18:20,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:20,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:20,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:20,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:21,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:18:21,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:18:21,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:21,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:21,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:21,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:22,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:18:22,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:18:22,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:25,252 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:18:25,288 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:18:25,365 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.536 +2025-10-01 22:18:25,366 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:18:25,366 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:18:27,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:27,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:27,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:28,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:18:28,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:18:28,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:30,021 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:18:30,048 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:18:30,129 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.835 +2025-10-01 22:18:30,129 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:18:30,129 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:18:30,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:30,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:30,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:30,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:18:30,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:18:30,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:33,575 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:18:33,603 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:18:33,682 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.727 +2025-10-01 22:18:33,682 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:18:33,682 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:18:33,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:33,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:33,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:34,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:18:34,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:18:34,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:35,227 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:18:35,253 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:18:35,337 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.106 +2025-10-01 22:18:35,338 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 22:18:35,338 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 22:18:37,548 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:18:37,573 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:18:37,653 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.845 +2025-10-01 22:18:37,653 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:18:37,653 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:18:38,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:38,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:38,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:39,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:18:39,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:18:39,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:39,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:39,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:39,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:39,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:18:39,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:18:39,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:41,278 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:18:41,307 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:18:41,388 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.035 +2025-10-01 22:18:41,388 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:18:41,388 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 22:18:42,844 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:18:42,872 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:18:42,952 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.005 +2025-10-01 22:18:42,953 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:18:42,953 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 22:18:44,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:44,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:44,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:44,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:18:44,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:18:44,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:45,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:45,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:45,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:45,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:18:45,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:18:45,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:49,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:49,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:49,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:49,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:18:49,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:18:49,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:51,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:51,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:51,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:51,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:18:51,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:18:51,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:53,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:53,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:53,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:53,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:18:53,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:18:53,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:57,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:57,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:57,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:57,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:18:57,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:18:57,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:18:59,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:18:59,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:18:59,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:18:59,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:18:59,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:18:59,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:00,096 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:19:00,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:19:00,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:19:00,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-01 22:19:00,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-01 22:19:00,368 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:19:05,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:05,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:05,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:06,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:19:06,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:19:06,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:06,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:06,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:06,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:06,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:19:06,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:19:06,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:10,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:10,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:10,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:10,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 22:19:10,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 22:19:10,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:11,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:11,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:11,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:11,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:19:11,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:19:11,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:12,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:12,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:12,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:13,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:19:13,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:19:13,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:13,550 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:19:13,579 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:19:13,664 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.382 +2025-10-01 22:19:13,664 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 22:19:13,665 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 22:19:15,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:15,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:15,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:15,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:19:15,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:19:15,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:17,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:17,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:17,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:17,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:19:17,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:19:17,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:18,930 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:19:18,951 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:19:19,032 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.529 +2025-10-01 22:19:19,032 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:19:19,032 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 22:19:20,109 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 22:19:20,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 22:19:20,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 22:19:20,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.433s +2025-10-01 22:19:20,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.433s (avg: 0.144s/image) +2025-10-01 22:19:20,543 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 22:19:21,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:21,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:21,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:21,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:19:21,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:19:21,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:23,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:23,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:23,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:23,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:19:23,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:19:23,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:24,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:24,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:24,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:24,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:19:24,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:19:24,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:25,424 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:19:25,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:19:25,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:19:25,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +2025-10-01 22:19:25,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +2025-10-01 22:19:25,689 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:19:25,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:25,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:25,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:26,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:19:26,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:19:26,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:28,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:28,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:28,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:28,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:19:28,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:19:28,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:28,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:28,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:28,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:28,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:19:28,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:19:28,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:29,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:29,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:29,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:29,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:19:29,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:19:29,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:31,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:31,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:31,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:31,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:19:31,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:19:31,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:31,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:31,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:31,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:31,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:19:31,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:19:31,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:33,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:33,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:33,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:33,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:19:33,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:19:33,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:34,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:34,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:34,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:35,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:19:35,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:19:35,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:35,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:35,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:35,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:35,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:19:35,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:19:35,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:37,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:37,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:37,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:37,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:19:37,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:19:37,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:37,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:37,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:37,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:37,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:19:37,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:19:37,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:37,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:37,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:37,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:38,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:19:38,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:19:38,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:39,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:39,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:39,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:40,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:19:40,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:19:40,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:41,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:41,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:41,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:41,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:19:41,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:19:41,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:42,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:42,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:42,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:42,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:19:42,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:19:42,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:46,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:46,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:46,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:46,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:19:46,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:19:46,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:46,584 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:19:46,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:19:46,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:19:46,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 22:19:46,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 22:19:46,864 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:19:49,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:49,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:49,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:49,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:19:49,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:19:49,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:50,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:50,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:50,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:51,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:19:51,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:19:51,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:52,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:52,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:52,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:53,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:19:53,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:19:53,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:54,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:54,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:54,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:54,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:19:54,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:19:54,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:55,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:55,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:55,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:55,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:19:55,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:19:55,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:56,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:56,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:56,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:56,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:19:56,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:19:56,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:58,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:58,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:58,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:58,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:19:58,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:19:58,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:19:58,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:19:58,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:19:58,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:19:58,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:19:58,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:19:58,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:01,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:01,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:01,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:01,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:20:01,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:20:01,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:03,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:03,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:03,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:03,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:20:03,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:20:03,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:04,254 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:20:04,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:20:04,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:20:04,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 22:20:04,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 22:20:04,534 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:20:06,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:06,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:06,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:06,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:20:06,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:20:06,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:07,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:07,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:07,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:07,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:20:07,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:20:07,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:09,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:09,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:09,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:09,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:20:09,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:20:09,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:09,985 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:20:09,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:20:10,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:20:10,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 22:20:10,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 22:20:10,268 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:20:11,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:11,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:11,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:11,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:20:11,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:20:11,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:12,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:12,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:12,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:12,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:20:12,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:20:12,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:14,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:14,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:14,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:14,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:20:14,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:20:14,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:14,909 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:20:14,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:20:14,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:20:15,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 22:20:15,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 22:20:15,193 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:20:15,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:15,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:15,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:15,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:20:15,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:20:15,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:16,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:16,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:16,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:16,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:20:16,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:20:16,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:18,384 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:20:18,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:20:18,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:20:18,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-01 22:20:18,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-01 22:20:18,659 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:20:19,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:19,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:19,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:19,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:20:19,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:20:19,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:20,009 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:20:20,032 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:20:20,118 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.426 +2025-10-01 22:20:20,118 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 22:20:20,119 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 22:20:21,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:21,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:21,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:21,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:20:21,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:20:21,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:22,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:22,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:22,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:22,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:20:22,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:20:22,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:23,169 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:20:23,192 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:20:23,272 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.660 +2025-10-01 22:20:23,273 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:20:23,273 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:20:24,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:24,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:24,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:24,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:20:24,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:20:24,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:24,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:24,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:25,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:25,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:20:25,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:20:25,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:26,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:26,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:26,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:26,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:20:26,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:20:26,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:26,610 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:20:26,630 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:20:26,709 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.517 +2025-10-01 22:20:26,709 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:20:26,709 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:20:27,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:27,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:27,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:27,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:20:27,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:20:27,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:28,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:28,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:29,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:29,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:20:29,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:20:29,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:30,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:30,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:30,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:30,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:20:30,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:20:30,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:30,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:30,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:30,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:30,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 22:20:30,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 22:20:30,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:30,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:30,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:30,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:31,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:20:31,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:20:31,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:32,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:32,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:32,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:32,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:20:32,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:20:32,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:33,382 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:20:33,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:20:33,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:20:33,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 22:20:33,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 22:20:33,661 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:20:35,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:35,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:35,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:36,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:20:36,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:20:36,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:36,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:36,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:36,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:36,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:20:36,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:20:36,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:36,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:36,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:36,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:36,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:20:36,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:20:36,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:41,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:41,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:41,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:41,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:20:41,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:20:41,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:44,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:44,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:44,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:44,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:20:44,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:20:44,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:48,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:48,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:48,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:48,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:20:48,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:20:48,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:48,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:48,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:48,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:48,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:20:48,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:20:48,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:53,425 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:20:53,447 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:20:53,527 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.469 +2025-10-01 22:20:53,527 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:20:53,527 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:20:53,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:53,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:53,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:53,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-01 22:20:53,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-01 22:20:53,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:56,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:56,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:56,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:56,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:20:56,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:20:56,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:20:56,952 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:20:56,977 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:20:57,055 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.225 +2025-10-01 22:20:57,055 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:20:57,056 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:20:57,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:20:57,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:20:57,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:20:57,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:20:57,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:20:57,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:00,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:00,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:00,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:00,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:21:00,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:21:00,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:00,398 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:21:00,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:21:00,494 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.696 +2025-10-01 22:21:00,494 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:21:00,495 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:21:00,689 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:21:00,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:21:00,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:21:00,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-01 22:21:00,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-01 22:21:00,959 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:21:04,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:04,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:04,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:04,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:21:04,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:21:04,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:04,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:04,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:04,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:04,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:21:04,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:21:04,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:06,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:06,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:06,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:06,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:21:06,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:21:06,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:06,881 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:21:06,900 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:21:06,978 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.343 +2025-10-01 22:21:06,979 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:21:06,979 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:21:10,800 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:21:10,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:21:10,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:21:11,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 22:21:11,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 22:21:11,086 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:21:11,129 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:21:11,147 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:21:11,224 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.574 +2025-10-01 22:21:11,224 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:21:11,224 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:21:14,769 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:21:14,800 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:21:14,884 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.194 +2025-10-01 22:21:14,885 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 22:21:14,885 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 22:21:15,206 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:21:15,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:21:15,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:21:15,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 22:21:15,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 22:21:15,487 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:21:17,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:17,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:17,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:17,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:21:17,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:21:17,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:18,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:18,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:18,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:18,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:21:18,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:21:18,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:20,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:20,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:20,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:20,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 22:21:20,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 22:21:20,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:20,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:20,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:20,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:20,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:21:20,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:21:20,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:24,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:24,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:24,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:24,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 22:21:24,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 22:21:24,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:25,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:25,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:25,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:25,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:21:25,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:21:25,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:27,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:27,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:27,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:27,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:21:27,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:21:27,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:30,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:30,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:30,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:30,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:21:30,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:21:30,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:31,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:31,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:31,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:31,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:21:31,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:21:31,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:31,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:31,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:31,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:31,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 22:21:31,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 22:21:31,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:33,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:33,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:33,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:33,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 22:21:33,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 22:21:33,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:34,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:34,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:34,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:34,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:21:34,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:21:34,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:35,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:35,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:35,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:35,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:21:35,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:21:35,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:36,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:36,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:36,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:36,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:21:36,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:21:36,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:38,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:38,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:38,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:38,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:21:38,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:21:38,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:39,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:39,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:39,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:39,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:21:39,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:21:39,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:40,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:40,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:40,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:41,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:21:41,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:21:41,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:41,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:41,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:41,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:41,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:21:41,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:21:41,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:41,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:41,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:41,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:41,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:21:41,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:21:41,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:42,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:42,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:42,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:42,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 22:21:42,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 22:21:42,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:42,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:42,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:43,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:43,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:21:43,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:21:43,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:46,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:46,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:46,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:46,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:21:46,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:21:46,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:47,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:47,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:47,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:48,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:21:48,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:21:48,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:48,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:48,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:48,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:49,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:21:49,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:21:49,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:50,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:50,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:50,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:51,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:21:51,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:21:51,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:51,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:51,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:51,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:51,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:21:51,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:21:51,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:53,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:53,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:53,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:53,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:21:53,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:21:53,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:58,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:58,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:58,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:58,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:21:58,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:21:58,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:21:59,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:21:59,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:21:59,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:21:59,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:21:59,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:21:59,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:00,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:00,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:00,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:00,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:22:00,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:22:00,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:03,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:03,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:03,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:03,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 22:22:03,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 22:22:03,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:04,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:04,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:04,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:04,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:22:04,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:22:04,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:06,136 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:22:06,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:22:06,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:22:06,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 22:22:06,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 22:22:06,432 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:22:08,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:08,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:08,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:08,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 22:22:08,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 22:22:08,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:09,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:09,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:09,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:09,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:22:09,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:22:09,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:14,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:14,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:14,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:14,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 22:22:14,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 22:22:14,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:15,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:15,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:15,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:15,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:22:15,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:22:15,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:15,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:15,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:15,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:15,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:22:15,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:22:15,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:17,756 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:22:17,780 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:22:17,858 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.917 +2025-10-01 22:22:17,859 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:22:17,859 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:22:23,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:23,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:23,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:24,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:22:24,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:22:24,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:24,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:24,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:24,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:24,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 22:22:24,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 22:22:24,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:26,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:26,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:26,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:26,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:22:26,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:22:26,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:28,914 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:22:28,932 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:22:29,013 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.764 +2025-10-01 22:22:29,014 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:22:29,014 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:22:29,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:29,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:29,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:29,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:22:29,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:22:29,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:30,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:30,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:30,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:30,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:22:30,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:22:30,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:31,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:31,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:31,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:31,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:22:31,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:22:31,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:32,832 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:22:32,855 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:22:32,936 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.025 +2025-10-01 22:22:32,937 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:22:32,937 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:22:34,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:34,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:35,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:35,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:22:35,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:22:35,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:37,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:37,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:37,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:37,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:22:37,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:22:37,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:38,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:38,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:38,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:38,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:22:38,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:22:38,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:40,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:40,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:41,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:41,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:22:41,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:22:41,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:43,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:43,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:43,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:43,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:22:43,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:22:43,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:44,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:44,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:44,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:44,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:22:44,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:22:44,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:47,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:47,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:47,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:47,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:22:47,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:22:47,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:48,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:48,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:48,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:48,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:22:48,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:22:48,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:49,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:49,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:49,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:49,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:22:49,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:22:49,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:50,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:50,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:50,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:50,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:22:50,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:22:50,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:53,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:53,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:53,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:53,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:22:53,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:22:53,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:53,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:53,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:53,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:53,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:22:53,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:22:53,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:22:57,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:22:57,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:22:57,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:22:57,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:22:57,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:22:57,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:17,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:17,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:17,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:17,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 22:23:17,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 22:23:17,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:18,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:18,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:18,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:18,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:23:18,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:23:18,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:19,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:19,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:19,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:19,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:23:19,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:23:19,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:19,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:19,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:19,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:19,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 22:23:19,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 22:23:19,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:21,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:21,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:21,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:21,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:23:21,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:23:21,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:24,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:24,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:24,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:24,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:23:24,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:23:24,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:27,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:27,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:27,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:27,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:23:27,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:23:27,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:28,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:28,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:29,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:29,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:23:29,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:23:29,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:32,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:32,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:32,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:32,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 22:23:32,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 22:23:32,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:33,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:33,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:33,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:33,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:23:33,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:23:33,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:35,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:35,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:35,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:35,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:23:35,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:23:35,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:37,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:37,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:37,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:37,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:23:37,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:23:37,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:43,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:43,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:43,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:43,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:23:43,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:23:43,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:45,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:45,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:45,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:45,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:23:45,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:23:45,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:49,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:49,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:49,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:50,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:23:50,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:23:50,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:50,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:50,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:50,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:50,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:23:50,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:23:50,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:54,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:54,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:54,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:55,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:23:55,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:23:55,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:59,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:23:59,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:23:59,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:23:59,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:23:59,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:23:59,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:23:59,892 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:23:59,918 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(777, 777, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:23:59,996 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.329 +2025-10-01 22:23:59,996 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:23:59,997 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:24:02,417 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:24:02,448 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:24:02,529 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.460 +2025-10-01 22:24:02,530 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:24:02,530 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:24:03,178 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:24:03,207 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(803, 803, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:24:03,287 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.435 +2025-10-01 22:24:03,288 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:24:03,288 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 22:24:05,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:05,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:05,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:05,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:24:05,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:24:05,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:06,578 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:24:06,597 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:24:06,664 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.678 +2025-10-01 22:24:06,665 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-01 22:24:06,665 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-01 22:24:10,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:10,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:10,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:10,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:24:10,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:24:10,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:11,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:11,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:11,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:11,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:24:11,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:24:11,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:18,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:18,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:18,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:19,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:24:19,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:24:19,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:20,067 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:24:20,091 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:24:20,170 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.570 +2025-10-01 22:24:20,171 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:24:20,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:24:21,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:21,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:21,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:21,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:24:21,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:24:21,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:23,753 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:24:23,772 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:24:23,849 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.926 +2025-10-01 22:24:23,849 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:24:23,849 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:24:23,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:23,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:24,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:24,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:24:24,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:24:24,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:27,242 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:24:27,266 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:24:27,347 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.959 +2025-10-01 22:24:27,347 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:24:27,347 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 22:24:31,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:31,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:31,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:31,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:24:31,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:24:31,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:32,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:32,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:32,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:32,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:24:32,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:24:32,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:38,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:38,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:38,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:38,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:24:38,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:24:38,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:39,228 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:24:39,252 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:24:39,331 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.743 +2025-10-01 22:24:39,332 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:24:39,332 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:24:41,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:41,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:41,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:41,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:24:41,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:24:41,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:44,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:44,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:44,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:44,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:24:44,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:24:44,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:44,815 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:24:44,856 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:24:44,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.970 +2025-10-01 22:24:44,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 22:24:44,946 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 22:24:46,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:46,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:46,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:46,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:24:46,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:24:46,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:48,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:48,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:48,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:49,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:24:49,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:24:49,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:24:49,319 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:24:49,353 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:24:49,439 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.564 +2025-10-01 22:24:49,439 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 22:24:49,439 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 22:24:55,082 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:24:55,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:24:55,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:24:55,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 22:24:55,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-01 22:24:55,372 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:24:59,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:24:59,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:24:59,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:24:59,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:24:59,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:24:59,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:04,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:04,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:04,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:04,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:25:04,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:25:04,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:07,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:07,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:07,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:08,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:25:08,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:25:08,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:12,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:12,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:12,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:12,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:25:12,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:25:12,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:13,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:13,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:13,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:14,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 22:25:14,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 22:25:14,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:15,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:15,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:15,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:15,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:25:15,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:25:15,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:17,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:17,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:17,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:18,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:25:18,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:25:18,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:18,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:18,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:18,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:18,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 22:25:18,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 22:25:18,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:21,081 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:25:21,107 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:25:21,191 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.449 +2025-10-01 22:25:21,191 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 22:25:21,191 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 22:25:22,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:22,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:22,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:22,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:25:22,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:25:22,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:24,302 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:25:24,331 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:25:24,412 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.568 +2025-10-01 22:25:24,412 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:25:24,412 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 22:25:27,511 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:25:27,538 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 666, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:25:27,617 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.434 +2025-10-01 22:25:27,617 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:25:27,617 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:25:28,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:28,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:28,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:28,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:25:28,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:25:28,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:31,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:31,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:31,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:32,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:25:32,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:25:32,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:32,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:32,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:32,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:32,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:25:32,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:25:32,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:35,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:35,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:35,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:35,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:25:35,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:25:35,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:36,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:36,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:36,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:37,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:25:37,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:25:37,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:37,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:37,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:37,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:37,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:25:37,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:25:37,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:41,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:41,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:41,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:42,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 22:25:42,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 22:25:42,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:45,652 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:25:45,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:25:45,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:25:45,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-01 22:25:45,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-01 22:25:45,958 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:25:51,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:51,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:51,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:51,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:25:51,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:25:51,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:25:54,373 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:25:54,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:25:54,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:25:54,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 22:25:54,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-01 22:25:54,676 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:25:58,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:25:58,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:25:58,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:25:58,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:25:58,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:25:58,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:00,101 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:26:00,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:26:00,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:26:00,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 22:26:00,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 22:26:00,400 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:26:06,340 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:26:06,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:26:06,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:26:06,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 22:26:06,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 22:26:06,625 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:26:06,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:06,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:06,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:07,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 22:26:07,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 22:26:07,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:07,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:07,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:07,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:07,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:26:07,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:26:07,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:11,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:11,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:11,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:11,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:26:11,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:26:11,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:12,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:12,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:12,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:12,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 22:26:12,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 22:26:12,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:14,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:14,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:14,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:14,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:26:14,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:26:14,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:16,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:16,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:16,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:16,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:26:16,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:26:16,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:17,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:17,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:17,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:17,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:26:17,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:26:17,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:18,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:18,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:18,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:18,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 22:26:18,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 22:26:18,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:19,082 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:26:19,110 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:26:19,185 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.646 +2025-10-01 22:26:19,186 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:26:19,186 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:26:20,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:20,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:20,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:20,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:26:20,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:26:20,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:20,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:20,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:20,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:20,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:26:20,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:26:20,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:21,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:21,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:21,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:21,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:26:21,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:26:21,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:23,649 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:26:23,670 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:26:23,741 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.546 +2025-10-01 22:26:23,741 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 22:26:23,741 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 22:26:24,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:24,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:24,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:24,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 22:26:24,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 22:26:24,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:26,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:26,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:26,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:26,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:26:26,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:26:26,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:26,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:26,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:26,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:26,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:26:26,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:26:26,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:27,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:27,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:27,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:27,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:26:27,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:26:27,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:30,502 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:26:30,538 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 899, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:26:30,611 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.384 +2025-10-01 22:26:30,611 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:26:30,611 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:26:31,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:31,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:31,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:31,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 22:26:31,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 22:26:31,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:35,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:35,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:35,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:35,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:26:35,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:26:35,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:38,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:38,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:38,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:38,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:26:38,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:26:38,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:39,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:39,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:39,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:39,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 22:26:39,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 22:26:39,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:43,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:43,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:43,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:43,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:26:43,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:26:43,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:47,050 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:26:47,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:26:47,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:26:47,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-01 22:26:47,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-01 22:26:47,339 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:26:50,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:50,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:50,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:50,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:26:50,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:26:50,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:51,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:51,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:51,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:51,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:26:51,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:26:51,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:53,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:53,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:53,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:53,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:26:53,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:26:53,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:53,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:53,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:53,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:53,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:26:53,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:26:53,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:26:55,525 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:26:55,549 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:26:55,626 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.330 +2025-10-01 22:26:55,627 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:26:55,627 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:26:56,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:26:56,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:26:56,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:26:56,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 22:26:56,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 22:26:56,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:27:01,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:27:01,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:27:01,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:27:01,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:27:01,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:27:01,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:27:03,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:27:03,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:27:03,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:27:03,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:27:03,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:27:03,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:27:04,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:27:04,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:27:05,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:27:05,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 22:27:05,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 22:27:05,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:27:13,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:27:13,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:27:13,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:27:13,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:27:13,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:27:13,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:27:15,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:27:15,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:27:15,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:27:15,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:27:15,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:27:15,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:27:17,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:27:17,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:27:17,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:27:17,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:27:17,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:27:17,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:27:20,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:27:20,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:27:20,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:27:20,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:27:20,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:27:20,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:27:25,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:27:25,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:27:25,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:27:25,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:27:25,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:27:25,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:27:33,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:27:33,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:27:33,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:27:33,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:27:33,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:27:33,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:27:36,082 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:27:36,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:27:36,192 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.950 +2025-10-01 22:27:36,193 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:27:36,193 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:27:39,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:27:39,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:27:39,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:27:39,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:27:39,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:27:39,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:27:39,795 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:27:39,821 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:27:39,903 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.779 +2025-10-01 22:27:39,903 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:27:39,903 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:27:43,091 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:27:43,110 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:27:43,187 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.390 +2025-10-01 22:27:43,187 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:27:43,187 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:27:48,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:27:48,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:27:48,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:27:48,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:27:48,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:27:48,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:27:53,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:27:53,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:27:53,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:27:53,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:27:53,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:27:53,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:00,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:00,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:00,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:00,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:28:00,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:28:00,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:00,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:00,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:00,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:00,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:28:00,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:28:00,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:08,057 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:28:08,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:28:08,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:28:08,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 22:28:08,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 22:28:08,358 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:28:08,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:08,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:08,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:09,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:28:09,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:28:09,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:12,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:12,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:12,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:12,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:28:12,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:28:12,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:15,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:15,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:15,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:15,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:28:15,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:28:15,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:19,475 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:28:19,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:28:19,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:28:19,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 22:28:19,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-01 22:28:19,773 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:28:22,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:22,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:22,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:22,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:28:22,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:28:22,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:22,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:22,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:23,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:23,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:28:23,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:28:23,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:26,422 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:28:26,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:28:26,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:28:26,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 22:28:26,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +2025-10-01 22:28:26,727 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:28:28,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:28,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:28,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:29,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:28:29,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:28:29,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:32,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:32,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:32,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:32,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:28:32,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:28:32,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:32,600 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:28:32,626 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:28:32,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.719 +2025-10-01 22:28:32,708 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:28:32,708 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:28:34,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:34,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:34,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:34,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:28:34,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:28:34,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:37,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:37,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:37,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:37,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:28:37,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:28:37,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:38,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:38,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:38,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:39,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 22:28:39,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 22:28:39,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:39,158 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:28:39,186 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:28:39,272 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.313 +2025-10-01 22:28:39,272 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 22:28:39,272 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 22:28:39,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:39,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:39,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:39,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:28:39,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:28:39,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:42,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:42,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:42,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:42,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:28:42,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:28:42,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:44,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:44,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:44,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:44,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:28:44,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:28:44,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:44,980 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:28:45,009 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:28:45,091 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=12.652 +2025-10-01 22:28:45,091 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:28:45,092 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 22:28:47,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:47,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:47,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:47,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:28:47,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:28:47,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:47,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:47,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:47,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:47,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:28:47,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:28:47,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:49,174 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:28:49,210 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:28:49,288 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.819 +2025-10-01 22:28:49,289 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:28:49,289 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:28:52,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:52,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:52,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:52,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:28:52,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:28:52,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:54,468 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:28:54,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:28:54,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:28:54,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.316s +2025-10-01 22:28:54,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.316s (avg: 0.158s/image) +2025-10-01 22:28:54,785 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:28:57,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:57,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:57,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:57,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:28:57,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:28:57,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:58,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:58,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:58,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:58,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 22:28:58,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 22:28:58,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:28:59,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:28:59,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:28:59,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:28:59,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:28:59,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:28:59,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:00,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:00,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:00,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:00,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 22:29:00,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 22:29:00,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:04,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:04,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:04,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:05,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:29:05,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:29:05,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:05,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:05,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:05,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:05,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:29:05,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:29:05,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:06,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:06,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:06,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:06,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:29:06,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:29:06,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:10,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:10,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:10,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:10,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:29:10,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:29:10,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:11,295 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:29:11,319 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:29:11,394 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.960 +2025-10-01 22:29:11,394 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:29:11,394 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 22:29:11,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:11,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:11,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:12,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 22:29:12,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 22:29:12,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:12,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:12,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:12,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:12,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:29:12,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:29:12,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:17,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:17,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:17,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:17,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:29:17,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:29:17,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:18,428 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:29:18,460 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:29:18,535 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.917 +2025-10-01 22:29:18,535 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:29:18,536 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:29:18,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:18,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:19,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:19,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:29:19,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:29:19,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:19,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:19,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:19,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:19,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:29:19,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:29:19,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:21,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:21,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:21,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:21,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 22:29:21,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 22:29:21,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:22,042 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:29:22,064 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:29:22,143 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.303 +2025-10-01 22:29:22,143 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:29:22,144 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:29:23,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:23,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:23,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:23,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:29:23,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:29:23,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:24,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:24,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:24,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:24,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:29:24,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:29:24,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:24,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:24,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:24,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:25,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:29:25,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:29:25,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:26,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:26,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:26,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:27,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:29:27,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:29:27,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:28,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:28,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:28,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:28,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:29:28,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:29:28,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:29,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:29,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:29,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:29,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:29:29,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:29:29,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:31,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:31,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:31,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:31,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:29:31,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:29:31,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:32,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:32,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:32,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:32,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:29:32,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:29:32,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:32,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:32,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:32,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:33,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:29:33,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:29:33,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:35,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:35,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:35,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:35,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:29:35,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:29:35,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:35,353 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:29:35,381 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:29:35,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.114 +2025-10-01 22:29:35,471 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 22:29:35,471 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 22:29:37,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:37,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:37,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:37,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:29:37,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:29:37,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:39,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:39,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:39,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:40,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 22:29:40,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 22:29:40,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:41,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:41,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:41,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:41,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:29:41,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:29:41,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:41,748 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:29:41,772 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:29:41,848 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.518 +2025-10-01 22:29:41,849 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:29:41,849 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:29:45,174 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:29:45,196 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:29:45,273 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.502 +2025-10-01 22:29:45,274 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:29:45,274 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:29:47,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:47,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:47,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:47,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:29:47,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:29:47,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:48,728 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:29:48,758 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:29:48,842 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.930 +2025-10-01 22:29:48,842 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 22:29:48,842 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 22:29:52,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:52,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:52,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:52,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:29:52,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:29:52,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:53,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:53,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:53,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:54,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:29:54,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:29:54,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:58,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:58,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:58,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:58,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:29:58,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:29:58,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:29:59,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:29:59,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:29:59,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:29:59,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:29:59,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:29:59,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:05,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:05,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:05,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:05,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:30:05,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:30:05,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:06,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:06,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:06,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:06,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:30:06,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:30:06,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:08,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:08,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:08,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:08,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:30:08,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:30:08,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:10,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:10,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:10,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:10,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:30:10,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:30:10,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:15,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:15,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:15,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:15,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:30:15,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:30:15,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:16,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:16,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:16,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:16,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:30:16,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:30:16,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:16,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:16,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:16,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:16,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:30:16,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:30:16,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:19,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:19,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:19,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:19,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:30:19,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:30:19,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:20,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:20,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:20,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:20,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:30:20,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:30:20,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:22,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:22,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:22,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:22,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 22:30:22,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 22:30:22,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:24,815 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:30:24,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:30:24,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:30:25,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-01 22:30:25,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-01 22:30:25,111 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:30:25,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:25,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:25,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:25,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:30:25,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:30:25,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:26,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:26,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:26,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:26,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:30:26,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:30:26,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:28,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:28,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:28,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:28,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.216s +2025-10-01 22:30:28,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.216s (avg: 0.216s/image) +2025-10-01 22:30:28,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:29,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:29,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:29,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:29,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:30:29,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:30:29,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:34,074 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:30:34,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:30:34,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:30:34,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 22:30:34,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 22:30:34,355 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:30:37,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:37,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:37,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:37,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:30:37,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:30:37,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:38,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:38,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:38,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:38,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:30:38,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:30:38,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:39,898 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:30:39,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:30:39,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:30:40,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.326s +2025-10-01 22:30:40,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.326s (avg: 0.163s/image) +2025-10-01 22:30:40,226 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:30:41,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:41,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:41,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:41,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:30:41,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:30:41,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:41,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:41,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:41,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:41,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:30:41,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:30:41,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:42,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:42,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:42,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:42,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:30:42,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:30:42,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:43,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:43,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:43,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:43,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:30:43,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:30:43,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:46,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:46,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:46,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:46,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:30:46,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:30:46,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:47,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:47,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:47,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:47,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:30:47,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:30:47,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:47,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:47,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:47,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:48,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:30:48,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:30:48,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:49,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:49,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:49,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:50,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:30:50,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:30:50,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:50,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:50,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:50,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:50,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:30:50,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:30:50,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:51,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:51,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:51,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:51,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:30:51,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:30:51,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:52,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:52,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:52,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:52,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:30:52,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:30:52,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:54,041 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:30:54,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:30:54,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:30:54,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 22:30:54,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 22:30:54,340 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:30:56,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:56,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:56,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:57,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:30:57,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:30:57,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:58,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:58,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:58,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:59,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:30:59,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:30:59,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:30:59,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:30:59,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:30:59,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:30:59,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:30:59,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:30:59,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:00,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:00,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:00,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:00,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:31:00,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:31:00,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:00,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:00,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:00,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:00,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 22:31:00,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 22:31:00,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:01,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:01,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:01,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:01,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:31:01,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:31:01,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:03,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:03,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:03,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:03,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:31:03,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:31:03,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:04,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:04,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:04,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:04,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:31:04,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:31:04,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:05,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:05,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:05,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:05,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:31:05,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:31:05,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:07,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:07,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:07,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:07,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 22:31:07,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 22:31:07,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:08,100 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:31:08,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:31:08,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:31:08,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 22:31:08,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 22:31:08,378 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:31:12,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:12,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:12,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:12,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:31:12,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:31:12,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:12,957 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:31:12,981 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:31:13,059 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.582 +2025-10-01 22:31:13,059 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:31:13,059 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:31:14,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:14,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:14,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:14,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:31:14,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:31:14,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:14,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:14,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:14,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:15,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:31:15,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:31:15,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:15,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:15,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:15,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:15,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:31:15,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:31:15,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:19,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:19,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:19,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:19,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:31:19,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:31:19,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:20,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:20,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:20,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:20,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:31:20,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:31:20,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:21,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:21,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:21,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:21,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:31:21,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:31:21,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:22,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:22,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:22,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:22,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:31:22,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:31:22,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:26,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:26,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:26,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:26,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:31:26,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:31:26,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:27,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:27,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:27,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:28,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:31:28,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:31:28,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:29,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:29,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:29,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:29,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:31:29,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:31:29,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:32,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:32,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:32,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:32,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:31:32,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:31:32,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:32,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:32,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:32,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:32,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 22:31:32,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 22:31:32,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:35,632 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:31:35,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:31:35,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:31:35,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 22:31:35,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 22:31:35,925 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:31:42,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:42,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:42,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:42,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:31:42,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:31:42,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:48,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:48,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:48,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:48,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:31:48,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:31:48,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:50,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:50,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:50,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:50,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:31:50,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:31:50,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:31:50,439 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:31:50,458 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(802, 802, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:31:50,537 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.937 +2025-10-01 22:31:50,537 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:31:50,537 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:31:54,111 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:31:54,135 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(802, 802, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:31:54,211 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.520 +2025-10-01 22:31:54,212 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:31:54,212 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:31:57,347 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:31:57,381 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(803, 803, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:31:57,460 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.206 +2025-10-01 22:31:57,461 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:31:57,461 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:31:57,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:31:57,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:31:57,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:31:58,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:31:58,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:31:58,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:01,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:01,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:02,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:02,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:32:02,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:32:02,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:02,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:02,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:02,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:02,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 22:32:02,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 22:32:02,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:04,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:04,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:04,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:04,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:32:04,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:32:04,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:07,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:07,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:07,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:07,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 22:32:07,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 22:32:07,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:08,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:08,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:08,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:08,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:32:08,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:32:08,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:12,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:12,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:12,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:12,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:32:12,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:32:12,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:12,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:12,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:12,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:13,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 22:32:13,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 22:32:13,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:14,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:14,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:14,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:14,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:32:14,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:32:14,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:16,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:16,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:16,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:16,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 22:32:16,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 22:32:16,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:17,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:17,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:17,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:18,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 22:32:18,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 22:32:18,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:19,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:19,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:19,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:19,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 22:32:19,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 22:32:19,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:20,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:20,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:20,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:20,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:32:20,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:32:20,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:21,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:21,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:21,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:22,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:32:22,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:32:22,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:23,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:23,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:23,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:23,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 22:32:23,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 22:32:23,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:24,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:24,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:24,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:24,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:32:24,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:32:24,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:26,936 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:32:26,963 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(670, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:32:27,040 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.949 +2025-10-01 22:32:27,040 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:32:27,040 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:32:27,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:27,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:27,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:27,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 22:32:27,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 22:32:27,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:29,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:29,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:29,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:29,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:32:29,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:32:29,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:29,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:29,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:29,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:29,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:32:29,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:32:29,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:30,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:30,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:30,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:30,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 22:32:30,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 22:32:30,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:31,057 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:32:31,081 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(749, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:32:31,154 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.982 +2025-10-01 22:32:31,154 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 22:32:31,154 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 22:32:31,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:31,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:31,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:32,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:32:32,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:32:32,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:32,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:32,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:32,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:32,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 22:32:32,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 22:32:32,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:34,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:34,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:34,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:34,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:32:34,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:32:34,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:34,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:34,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:34,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:35,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:32:35,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:32:35,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:35,374 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:32:35,398 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(738, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:32:35,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.384 +2025-10-01 22:32:35,470 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 22:32:35,470 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 22:32:38,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:38,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:38,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:38,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:32:38,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:32:38,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:38,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:38,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:38,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:38,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:32:38,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:32:38,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:40,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:40,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:40,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:40,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:32:40,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:32:40,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:43,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:43,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:43,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:43,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 22:32:43,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 22:32:43,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:44,714 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:32:44,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:32:44,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:32:45,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-01 22:32:45,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-01 22:32:45,023 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:32:51,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:51,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:51,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:51,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:32:51,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:32:51,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:52,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:52,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:52,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:52,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:32:52,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:32:52,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:53,637 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:32:53,665 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:32:53,746 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.974 +2025-10-01 22:32:53,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:32:53,747 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:32:54,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:54,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:54,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:54,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:32:54,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:32:54,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:55,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:55,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:55,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:55,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:32:55,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:32:55,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:32:58,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:32:58,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:32:58,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:32:58,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 22:32:58,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 22:32:58,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:00,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:00,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:00,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:00,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:33:00,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:33:00,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:02,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:02,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:02,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:02,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:33:02,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:33:02,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:03,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:03,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:03,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:03,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 22:33:03,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 22:33:03,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:04,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:04,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:04,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:04,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:33:04,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:33:04,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:06,069 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:33:06,090 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(810, 810, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:33:06,170 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.181 +2025-10-01 22:33:06,170 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:33:06,170 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:33:10,008 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:33:10,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:33:10,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:33:10,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-01 22:33:10,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-01 22:33:10,323 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:33:10,716 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:33:10,741 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(810, 810, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:33:10,823 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.965 +2025-10-01 22:33:10,824 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:33:10,824 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:33:11,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:11,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:11,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:11,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:33:11,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:33:11,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:12,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:12,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:13,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:13,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:33:13,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:33:13,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:13,907 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:33:13,932 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(810, 810, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:33:14,008 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.881 +2025-10-01 22:33:14,008 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:33:14,009 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:33:14,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:14,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:14,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:15,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:33:15,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:33:15,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:16,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:16,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:16,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:16,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:33:16,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:33:16,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:17,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:17,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:17,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:17,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:33:17,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:33:17,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:19,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:19,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:19,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:19,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:33:19,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:33:19,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:20,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:20,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:20,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:20,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:33:20,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:33:20,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:22,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:22,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:22,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:22,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:33:22,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:33:22,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:23,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:23,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:23,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:23,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:33:23,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:33:23,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:27,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:27,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:27,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:27,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:33:27,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:33:27,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:27,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:27,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:27,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:27,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:33:27,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:33:27,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:28,300 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:33:28,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:33:28,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:33:28,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 22:33:28,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +2025-10-01 22:33:28,605 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:33:29,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:29,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:29,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:29,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:33:29,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:33:29,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:32,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:32,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:32,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:32,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:33:32,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:33:32,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:33,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:33,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:33,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:34,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 22:33:34,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 22:33:34,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:35,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:35,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:35,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:35,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:33:35,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:33:35,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:35,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:35,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:35,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:35,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:33:35,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:33:35,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:35,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:35,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:35,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:35,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:33:35,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:33:35,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:40,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:40,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:40,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:40,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:33:40,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:33:40,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:41,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:41,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:41,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:41,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:33:41,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:33:41,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:42,220 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:33:42,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:33:42,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:33:42,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 22:33:42,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 22:33:42,521 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:33:44,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:44,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:44,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:44,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:33:44,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:33:44,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:47,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:47,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:47,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:47,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:33:47,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:33:47,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:47,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:47,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:47,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:47,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:33:47,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:33:47,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:49,562 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:33:49,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:33:49,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:33:49,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 22:33:49,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 22:33:49,862 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:33:50,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:50,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:50,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:50,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:33:50,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:33:50,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:52,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:52,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:52,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:52,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:33:52,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:33:52,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:55,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:55,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:55,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:55,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 22:33:55,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 22:33:55,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:55,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:55,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:55,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:56,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:33:56,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:33:56,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:56,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:56,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:56,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:56,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:33:56,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:33:56,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:57,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:57,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:57,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:57,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:33:57,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:33:57,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:33:58,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:33:58,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:33:58,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:33:58,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:33:58,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:33:58,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:02,419 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:34:02,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:34:02,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:34:02,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 22:34:02,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-01 22:34:02,720 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:34:04,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:04,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:04,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:04,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:34:04,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:34:04,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:07,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:07,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:07,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:07,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:34:07,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:34:07,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:09,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:09,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:10,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:10,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:34:10,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:34:10,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:11,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:11,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:11,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:11,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:34:11,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:34:11,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:18,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:18,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:18,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:18,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:34:18,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:34:18,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:23,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:23,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:23,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:23,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:34:23,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:34:23,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:26,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:34:26,619 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:34:26,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.253 +2025-10-01 22:34:26,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 22:34:26,708 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 22:34:30,129 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:34:30,162 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:34:30,242 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.074 +2025-10-01 22:34:30,242 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:34:30,242 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:34:31,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:31,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:31,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:31,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:34:31,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:34:31,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:33,705 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:34:33,727 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:34:33,802 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.768 +2025-10-01 22:34:33,802 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:34:33,802 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:34:35,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:35,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:35,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:35,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:34:35,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:34:35,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:38,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:38,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:38,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:38,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:34:38,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:34:38,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:41,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:41,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:41,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:41,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:34:41,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:34:41,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:43,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:43,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:43,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:43,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:34:43,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:34:43,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:45,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:45,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:45,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:45,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:34:45,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:34:45,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:49,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:49,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:49,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:49,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:34:49,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:34:49,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:50,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:50,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:50,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:51,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:34:51,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:34:51,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:52,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:52,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:52,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:53,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:34:53,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:34:53,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:55,198 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:34:55,219 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:34:55,299 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.164 +2025-10-01 22:34:55,299 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:34:55,299 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:34:55,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:55,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:55,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:55,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:34:55,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:34:55,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:34:58,343 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:34:58,366 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:34:58,444 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.305 +2025-10-01 22:34:58,445 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:34:58,445 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:34:59,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:34:59,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:34:59,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:34:59,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:34:59,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:34:59,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:00,836 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:35:00,880 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:35:00,967 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.965 +2025-10-01 22:35:00,967 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 22:35:00,967 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 22:35:01,346 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:35:01,368 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:35:01,444 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.205 +2025-10-01 22:35:01,444 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:35:01,444 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:35:02,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:02,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:02,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:02,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:35:02,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:35:02,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:04,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:04,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:04,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:04,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:35:04,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:35:04,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:05,459 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:35:05,515 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:35:05,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.415 +2025-10-01 22:35:05,604 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 22:35:05,604 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 22:35:06,464 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:35:06,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:35:06,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:35:06,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 22:35:06,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 22:35:06,758 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:35:07,678 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:35:07,712 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:35:07,794 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.762 +2025-10-01 22:35:07,794 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:35:07,794 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:35:09,245 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:35:09,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:35:09,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:35:09,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 22:35:09,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 22:35:09,535 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:35:09,991 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:35:10,033 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:35:10,121 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.578 +2025-10-01 22:35:10,121 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 22:35:10,121 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 22:35:11,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:11,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:11,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:11,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:35:11,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:35:11,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:14,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:14,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:14,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:14,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:35:14,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:35:14,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:14,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:14,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:14,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:14,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:35:14,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:35:14,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:15,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:15,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:15,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:15,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 22:35:15,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 22:35:15,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:16,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:16,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:16,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:16,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:35:16,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:35:16,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:17,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:17,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:17,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:17,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:35:17,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:35:17,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:18,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:18,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:18,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:18,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:35:18,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:35:18,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:19,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:19,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:19,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:19,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:35:19,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:35:19,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:20,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:20,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:20,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:20,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:35:20,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:35:20,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:23,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:23,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:23,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:23,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:35:23,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:35:23,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:23,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:23,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:23,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:24,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:35:24,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:35:24,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:24,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:24,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:24,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:24,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:35:24,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:35:24,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:24,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:24,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:24,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:25,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:35:25,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:35:25,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:25,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:25,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:26,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:26,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:35:26,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:35:26,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:26,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:26,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:26,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:26,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:35:26,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:35:26,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:26,891 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:35:26,920 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:35:27,012 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.839 +2025-10-01 22:35:27,012 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 22:35:27,012 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 22:35:28,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:28,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:28,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:29,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:35:29,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:35:29,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:30,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:30,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:30,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:30,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:35:30,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:35:30,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:30,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:30,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:30,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:30,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 22:35:30,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 22:35:30,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:34,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:34,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:34,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:35,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:35:35,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:35:35,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:36,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:36,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:36,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:36,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:35:36,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:35:36,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:37,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:37,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:37,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:37,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 22:35:37,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 22:35:37,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:37,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:37,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:37,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:37,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:35:37,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:35:37,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:38,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:38,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:38,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:38,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:35:38,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:35:38,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:41,529 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:35:41,568 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:35:41,648 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.161 +2025-10-01 22:35:41,648 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:35:41,648 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:35:42,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:42,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:42,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:42,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:35:42,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:35:42,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:48,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:48,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:48,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:48,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:35:48,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:35:48,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:50,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:50,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:50,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:50,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:35:50,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:35:50,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:52,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:52,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:52,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:52,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:35:52,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:35:52,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:56,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:56,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:56,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:56,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:35:56,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:35:56,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:35:56,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:35:56,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:35:56,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:35:56,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:35:56,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:35:56,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:03,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:03,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:03,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:03,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:36:03,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:36:03,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:05,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:05,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:05,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:05,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:36:05,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:36:05,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:09,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:09,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:09,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:10,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:36:10,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:36:10,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:10,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:10,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:10,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:10,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:36:10,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:36:10,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:11,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:11,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:11,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:11,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:36:11,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:36:11,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:16,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:16,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:16,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:17,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:36:17,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:36:17,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:19,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:19,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:19,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:19,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:36:19,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:36:19,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:24,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:24,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:24,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:24,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:36:24,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:36:24,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:25,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:25,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:25,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:25,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:36:25,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:36:25,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:34,591 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:36:34,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:36:34,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:36:34,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 22:36:34,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-01 22:36:34,871 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:36:37,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:37,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:37,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:37,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:36:37,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:36:37,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:39,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:39,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:39,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:39,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:36:39,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:36:39,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:42,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:42,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:42,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:42,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:36:42,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:36:42,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:43,249 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:36:43,276 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:36:43,356 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.407 +2025-10-01 22:36:43,357 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:36:43,357 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 22:36:45,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:45,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:45,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:45,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:36:45,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:36:45,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:47,011 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:36:47,036 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:36:47,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.300 +2025-10-01 22:36:47,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 22:36:47,109 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:36:47,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:47,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:47,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:47,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:36:47,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:36:47,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:51,035 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:36:51,068 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:36:51,148 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.540 +2025-10-01 22:36:51,148 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 22:36:51,148 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:36:55,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:55,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:55,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:55,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:36:55,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:36:55,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:56,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:56,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:57,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:57,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:36:57,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:36:57,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:58,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:58,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:58,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:58,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:36:58,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:36:58,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:59,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:59,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:59,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:36:59,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:36:59,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:36:59,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:36:59,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:36:59,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:36:59,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:00,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 22:37:00,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 22:37:00,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:01,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:01,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:01,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:02,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:37:02,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:37:02,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:04,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:04,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:04,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:04,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:37:04,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:37:04,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:06,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:06,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:06,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:06,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:37:06,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:37:06,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:08,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:08,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:08,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:08,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 22:37:08,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 22:37:08,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:12,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:12,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:12,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:12,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:37:12,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:37:12,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:12,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:12,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:12,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:13,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:37:13,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:37:13,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:13,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:13,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:13,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:13,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:37:13,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:37:13,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:13,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:13,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:13,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:14,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:37:14,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:37:14,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:16,618 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:37:16,651 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:37:16,729 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.342 +2025-10-01 22:37:16,729 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:37:16,729 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:37:17,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:17,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:17,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:17,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:37:17,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:37:17,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:20,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:20,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:20,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:20,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:37:20,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:37:20,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:21,620 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:37:21,653 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:37:21,729 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.210 +2025-10-01 22:37:21,729 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:37:21,729 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:37:21,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:21,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:21,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:21,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:37:21,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:37:21,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:24,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:24,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:24,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:24,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:37:24,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:37:24,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:25,880 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:37:25,905 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:37:25,981 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.245 +2025-10-01 22:37:25,981 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:37:25,981 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:37:27,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:27,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:27,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:27,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:37:27,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:37:27,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:29,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:29,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:29,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:29,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:37:29,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:37:29,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:30,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:30,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:30,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:30,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:37:30,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:37:30,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:31,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:31,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:31,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:31,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:37:31,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:37:31,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:34,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:34,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:34,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:34,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:37:34,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:37:34,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:35,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:35,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:35,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:35,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:37:35,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:37:35,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:35,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:35,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:35,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:36,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:37:36,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:37:36,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:38,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:38,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:38,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:38,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:37:38,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:37:38,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:40,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:40,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:40,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:40,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:37:40,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:37:40,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:41,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:41,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:41,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:41,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:37:41,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:37:41,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:45,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:45,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:45,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:45,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:37:45,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:37:45,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:45,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:45,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:45,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:46,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:37:46,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:37:46,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:46,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:46,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:46,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:46,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:37:46,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:37:46,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:47,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:47,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:47,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:48,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:37:48,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:37:48,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:48,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:48,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:48,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:49,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:37:49,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:37:49,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:49,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:49,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:49,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:49,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:37:49,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:37:49,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:53,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:53,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:53,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:53,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:37:53,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:37:53,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:54,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:54,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:54,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:54,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:37:54,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:37:54,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:37:56,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:37:56,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:37:56,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:37:56,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:37:56,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:37:56,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:00,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:00,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:00,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:00,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:38:00,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:38:00,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:02,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:02,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:02,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:02,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:38:02,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:38:02,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:04,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:04,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:04,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:04,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:38:04,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:38:04,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:07,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:07,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:07,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:07,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:38:07,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:38:07,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:10,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:10,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:10,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:10,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:38:10,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:38:10,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:12,303 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:38:12,338 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:38:12,425 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=19.032 +2025-10-01 22:38:12,425 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 22:38:12,426 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 22:38:16,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:16,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:16,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:16,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:38:16,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:38:16,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:19,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:19,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:19,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:20,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:38:20,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:38:20,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:21,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:21,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:21,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:21,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:38:21,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:38:21,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:24,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:24,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:24,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:24,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:38:24,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:38:24,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:28,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:28,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:29,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:29,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:38:29,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:38:29,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:29,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:29,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:29,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:29,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:38:29,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:38:29,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:30,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:30,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:30,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:30,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:38:30,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:38:30,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:30,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:30,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:30,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:30,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:38:30,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:38:30,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:33,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:33,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:33,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:33,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:38:33,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:38:33,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:35,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:35,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:35,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:35,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:38:35,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:38:35,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:36,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:36,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:36,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:36,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:38:36,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:38:36,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:37,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:37,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:37,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:37,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:38:37,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:38:37,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:38,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:38,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:38,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:38,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:38:38,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:38:38,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:41,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:41,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:41,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:41,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:38:41,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:38:41,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:42,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:42,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:43,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:43,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:38:43,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:38:43,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:43,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:43,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:43,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:43,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:38:43,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:38:43,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:45,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:45,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:45,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:45,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:38:45,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:38:45,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:47,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:47,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:47,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:47,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:38:47,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:38:47,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:48,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:48,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:48,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:49,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:38:49,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:38:49,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:50,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:50,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:50,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:50,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:38:50,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:38:50,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:38:53,472 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:38:53,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:38:53,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:38:53,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-01 22:38:53,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-01 22:38:53,765 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:38:57,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:38:57,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:38:57,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:38:57,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:38:57,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:38:57,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:00,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:00,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:00,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:00,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:39:00,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:39:00,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:01,924 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:39:01,945 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:39:02,026 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.524 +2025-10-01 22:39:02,027 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:39:02,027 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:39:05,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:05,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:05,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:05,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:39:05,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:39:05,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:05,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:05,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:05,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:05,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:39:05,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:39:05,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:05,755 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:39:05,772 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:39:05,845 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.418 +2025-10-01 22:39:05,846 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:39:05,846 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:39:07,966 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:39:07,987 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:39:08,064 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.784 +2025-10-01 22:39:08,064 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:39:08,065 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:39:09,438 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:39:09,467 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:39:09,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.471 +2025-10-01 22:39:09,550 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 22:39:09,550 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 22:39:10,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:10,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:10,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:10,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:39:10,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:39:10,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:11,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:11,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:11,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:11,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:39:11,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:39:11,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:14,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:14,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:14,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:14,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:39:14,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:39:14,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:15,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:15,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:15,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:15,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:39:15,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:39:15,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:18,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:18,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:18,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:18,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:39:18,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:39:18,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:19,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:19,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:19,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:19,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:39:19,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:39:19,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:20,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:20,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:20,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:20,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:39:20,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:39:20,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:21,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:21,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:21,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:21,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:39:21,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:39:21,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:22,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:22,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:22,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:22,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:39:22,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:39:22,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:25,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:25,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:25,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:25,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:39:25,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:39:25,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:26,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:26,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:26,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:26,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:39:26,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:39:26,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:28,117 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:39:28,144 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:39:28,241 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.787 +2025-10-01 22:39:28,241 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-01 22:39:28,241 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-01 22:39:28,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:28,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:28,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:28,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:39:28,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:39:28,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:30,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:30,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:31,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:31,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 22:39:31,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 22:39:31,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:31,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:31,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:31,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:31,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:39:31,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:39:31,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:32,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:32,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:32,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:32,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:39:32,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:39:32,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:34,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:34,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:34,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:34,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:39:34,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:39:34,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:37,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:37,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:37,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:37,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:39:37,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:39:37,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:40,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:40,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:40,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:40,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:39:40,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:39:40,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:42,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:42,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:42,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:42,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:39:42,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:39:42,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:44,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:44,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:44,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:44,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:39:44,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:39:44,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:48,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:48,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:48,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:48,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:39:48,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:39:48,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:49,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:49,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:49,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:49,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:39:49,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:39:49,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:52,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:52,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:52,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:53,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:39:53,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:39:53,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:56,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:56,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:56,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:57,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:39:57,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:39:57,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:39:57,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:39:57,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:39:57,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:39:57,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:39:57,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:39:57,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:01,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:01,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:01,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:01,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:40:01,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:40:01,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:02,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:02,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:02,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:02,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:40:02,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:40:02,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:06,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:06,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:06,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:06,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:40:06,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:40:06,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:07,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:07,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:07,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:07,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:40:07,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:40:07,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:08,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:08,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:08,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:08,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:40:08,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:40:08,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:10,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:10,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:10,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:10,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:40:10,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:40:10,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:13,085 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:40:13,120 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:40:13,212 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.037 +2025-10-01 22:40:13,213 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 22:40:13,213 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 22:40:13,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:13,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:13,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:13,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:40:13,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:40:13,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:14,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:14,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:14,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:14,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:40:14,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:40:14,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:16,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:16,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:16,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:16,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 22:40:16,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 22:40:16,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:16,782 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:40:16,808 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:40:16,895 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.485 +2025-10-01 22:40:16,896 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 22:40:16,896 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 22:40:19,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:19,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:19,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:19,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 22:40:19,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 22:40:19,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:20,808 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:40:20,842 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:40:20,931 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.277 +2025-10-01 22:40:20,931 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 22:40:20,931 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 22:40:21,245 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:40:21,269 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:40:21,344 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.526 +2025-10-01 22:40:21,344 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:40:21,345 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:40:24,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:24,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:25,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:25,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:40:25,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:40:25,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:27,592 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:40:27,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:40:27,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:40:27,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 22:40:27,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 22:40:27,896 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:40:30,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:30,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:30,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:30,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:40:30,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:40:30,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:33,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:33,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:33,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:33,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:40:33,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:40:33,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:35,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:35,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:35,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:35,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:40:35,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:40:35,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:36,199 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:40:36,225 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 803, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:40:36,298 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=251.770 +2025-10-01 22:40:36,298 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:40:36,299 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:40:37,431 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:40:37,467 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:40:37,553 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.034 +2025-10-01 22:40:37,554 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 22:40:37,554 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 22:40:40,433 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:40:40,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:40:40,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:40:40,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 22:40:40,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 22:40:40,726 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:40:41,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:41,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:41,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:41,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:40:41,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:40:41,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:42,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:42,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:42,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:42,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 22:40:42,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 22:40:42,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:42,663 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:40:42,680 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 967, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:40:42,755 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=178.743 +2025-10-01 22:40:42,755 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:40:42,755 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 22:40:42,782 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:40:42,816 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:40:42,900 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=175.535 +2025-10-01 22:40:42,900 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 22:40:42,901 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 22:40:45,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:45,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:45,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:45,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:40:45,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:40:45,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:46,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:46,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:46,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:46,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:40:46,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:40:46,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:46,649 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:40:46,666 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 915, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:40:46,735 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.150 +2025-10-01 22:40:46,735 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 22:40:46,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 22:40:47,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:47,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:47,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:47,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:40:47,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:40:47,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:47,461 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:40:47,499 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:40:47,584 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.269 +2025-10-01 22:40:47,584 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 22:40:47,584 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 22:40:48,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:48,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:48,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:49,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:40:49,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:40:49,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:52,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:52,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:52,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:52,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:40:52,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:40:52,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:58,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:58,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:58,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:40:58,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:40:58,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:40:58,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:40:59,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:40:59,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:40:59,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:00,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:41:00,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:41:00,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:01,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:01,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:01,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:01,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:41:01,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:41:01,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:04,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:04,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:04,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:04,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:41:04,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:41:04,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:05,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:05,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:05,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:05,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:41:05,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:41:05,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:06,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:06,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:06,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:06,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:41:06,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:41:06,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:10,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:10,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:10,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:10,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:41:10,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:41:10,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:11,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:11,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:11,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:11,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:41:11,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:41:11,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:11,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:11,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:11,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:11,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:41:11,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:41:11,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:16,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:16,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:16,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:16,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 22:41:16,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 22:41:16,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:17,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:17,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:18,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:18,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 22:41:18,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 22:41:18,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:18,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:18,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:18,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:18,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:41:18,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:41:18,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:21,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:21,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:21,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:21,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:41:21,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:41:21,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:23,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:23,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:23,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:23,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:41:23,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:41:23,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:23,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:23,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:24,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:24,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:41:24,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:41:24,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:24,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:24,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:24,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:24,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:41:24,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:41:24,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:26,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:26,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:26,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:26,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:41:26,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:41:26,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:27,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:27,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:27,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:27,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:41:27,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:41:27,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:29,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:29,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:29,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:29,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:41:29,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:41:29,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:31,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:31,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:31,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:31,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:41:31,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:41:31,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:32,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:32,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:32,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:32,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:41:32,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:41:32,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:33,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:33,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:33,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:33,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:41:33,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:41:33,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:33,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:33,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:33,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:33,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 22:41:33,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 22:41:33,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:36,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:36,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:36,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:36,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:41:36,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:41:36,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:36,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:36,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:36,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:36,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:41:36,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:41:36,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:37,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:37,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:37,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:37,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:41:37,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:41:37,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:38,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:38,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:38,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:38,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:41:38,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:41:38,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:38,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:38,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:38,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:39,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:41:39,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:41:39,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:43,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:43,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:43,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:43,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:41:43,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:41:43,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:46,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:46,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:46,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:46,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 22:41:46,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 22:41:46,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:46,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:46,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:46,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:46,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 22:41:46,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 22:41:46,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:51,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:51,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:51,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:51,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 22:41:51,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 22:41:51,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:52,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:52,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:52,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:52,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:41:52,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:41:52,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:41:59,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:41:59,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:41:59,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:41:59,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:41:59,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:41:59,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:00,246 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:42:00,279 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:42:00,364 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.905 +2025-10-01 22:42:00,365 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 22:42:00,365 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 22:42:01,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:01,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:01,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:01,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 22:42:01,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 22:42:01,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:05,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:05,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:05,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:05,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:42:05,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:42:05,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:08,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:08,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:08,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:08,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:42:08,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:42:08,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:08,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:08,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:08,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:08,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:42:08,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:42:08,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:10,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:10,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:10,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:10,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:42:10,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:42:10,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:14,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:14,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:14,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:14,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:42:14,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:42:14,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:16,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:16,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:16,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:16,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:42:16,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:42:16,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:18,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:18,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:18,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:18,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:42:18,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:42:18,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:19,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:19,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:19,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:19,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:42:19,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:42:19,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:22,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:22,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:22,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:22,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:42:22,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:42:22,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:22,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:22,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:22,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:23,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:42:23,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:42:23,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:26,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:26,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:26,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:26,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:42:26,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:42:26,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:26,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:26,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:27,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:27,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 22:42:27,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 22:42:27,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:27,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:27,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:27,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:27,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:42:27,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:42:27,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:28,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:28,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:28,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:28,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:42:28,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:42:28,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:29,766 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:42:29,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:42:29,876 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.917 +2025-10-01 22:42:29,876 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 22:42:29,876 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 22:42:32,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:32,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:32,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:32,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:42:32,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:42:32,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:33,383 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:42:33,405 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:42:33,486 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.583 +2025-10-01 22:42:33,487 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:42:33,487 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:42:36,788 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:42:36,811 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:42:36,890 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.009 +2025-10-01 22:42:36,890 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:42:36,890 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:42:37,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:37,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:37,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:37,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:42:37,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:42:37,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:38,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:38,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:38,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:38,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:42:38,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:42:38,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:40,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:40,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:40,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:40,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:42:40,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:42:40,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:41,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:41,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:41,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:41,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:42:41,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:42:41,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:42,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:42,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:42,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:42,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 22:42:42,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 22:42:42,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:43,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:43,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:43,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:44,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:42:44,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:42:44,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:46,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:46,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:46,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:46,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 22:42:46,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 22:42:46,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:47,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:47,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:47,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:47,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 22:42:47,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 22:42:47,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:47,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:47,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:47,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:47,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:42:47,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:42:47,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:48,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:48,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:48,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:48,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:42:48,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:42:48,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:51,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:51,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:51,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:51,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:42:51,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:42:51,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:52,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:52,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:52,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:52,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:42:52,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:42:52,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:52,840 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:42:52,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:42:52,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:42:53,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 22:42:53,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 22:42:53,134 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:42:57,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:42:57,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:42:57,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:42:57,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:42:57,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:42:57,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:42:58,452 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:42:58,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:42:58,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:42:58,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-01 22:42:58,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-01 22:42:58,731 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:43:06,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:43:06,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:43:06,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:43:06,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:43:06,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:43:06,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:43:12,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:43:12,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:43:12,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:43:12,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:43:12,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:43:12,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:43:16,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:43:16,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:43:16,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:43:16,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:43:16,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:43:16,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:43:24,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:43:24,390 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:43:24,472 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.543 +2025-10-01 22:43:24,472 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:43:24,472 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:43:25,090 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:43:25,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:43:25,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:43:25,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 22:43:25,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 22:43:25,389 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:43:27,821 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:43:27,852 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:43:27,944 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.430 +2025-10-01 22:43:27,945 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-01 22:43:27,945 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-01 22:43:31,307 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:43:31,335 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:43:31,425 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.109 +2025-10-01 22:43:31,425 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 22:43:31,425 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 22:43:31,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:43:31,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:43:31,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:43:32,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 22:43:32,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 22:43:32,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:43:38,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:43:38,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:43:38,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:43:39,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:43:39,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:43:39,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:43:46,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:43:46,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:43:46,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:43:46,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:43:46,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:43:46,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:43:46,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:43:46,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:43:47,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:43:47,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:43:47,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:43:47,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:43:53,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:43:53,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:43:53,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:43:53,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:43:53,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:43:53,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:43:54,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:43:54,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:43:54,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:43:54,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:43:54,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:43:54,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:43:54,666 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:43:54,706 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:43:54,793 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.503 +2025-10-01 22:43:54,794 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 22:43:54,794 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 22:43:55,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:43:55,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:43:55,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:43:55,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:43:55,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:43:55,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:43:59,243 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:43:59,278 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:43:59,364 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.562 +2025-10-01 22:43:59,364 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 22:43:59,364 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 22:44:01,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:01,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:01,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:01,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:44:01,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:44:01,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:02,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:02,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:02,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:02,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:44:02,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:44:02,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:03,672 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:44:03,712 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:44:03,799 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.830 +2025-10-01 22:44:03,800 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 22:44:03,800 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 22:44:08,607 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:44:08,642 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:44:08,730 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.447 +2025-10-01 22:44:08,730 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 22:44:08,730 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 22:44:10,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:10,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:10,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:10,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 22:44:10,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 22:44:10,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:11,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:11,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:11,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:11,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:44:11,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:44:11,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:15,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:15,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:15,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:16,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:44:16,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:44:16,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:17,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:17,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:17,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:18,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:44:18,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:44:18,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:19,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:19,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:19,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:19,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:44:19,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:44:19,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:23,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:23,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:23,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:23,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:44:23,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:44:23,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:24,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:24,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:24,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:25,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:44:25,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:44:25,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:28,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:28,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:28,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:28,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:44:28,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:44:28,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:30,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:30,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:30,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:30,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:44:30,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:44:30,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:32,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:32,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:32,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:32,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:44:32,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:44:32,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:33,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:33,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:33,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:33,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:44:33,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:44:33,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:36,189 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:44:36,213 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:44:36,303 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.533 +2025-10-01 22:44:36,303 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 22:44:36,303 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 22:44:40,946 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:44:40,974 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:44:41,049 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=169.540 +2025-10-01 22:44:41,050 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:44:41,050 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:44:41,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:41,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:41,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:41,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 22:44:41,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 22:44:41,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:42,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:42,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:42,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:42,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:44:42,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:44:42,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:44,955 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:44:44,979 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(799, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:44:45,054 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.264 +2025-10-01 22:44:45,054 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:44:45,054 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 22:44:47,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:47,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:47,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:48,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:44:48,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:44:48,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:54,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:54,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:54,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:54,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:44:54,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:44:54,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:44:55,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:44:55,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:44:55,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:44:55,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:44:55,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:44:55,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:01,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:01,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:01,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:01,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:45:01,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:45:01,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:02,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:02,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:02,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:02,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:45:02,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:45:02,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:06,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:06,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:06,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:06,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:45:06,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:45:06,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:06,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:06,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:06,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:07,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:45:07,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:45:07,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:09,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:45:09,951 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:45:10,039 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.971 +2025-10-01 22:45:10,039 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 22:45:10,039 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 22:45:13,024 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:45:13,059 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:45:13,136 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.817 +2025-10-01 22:45:13,136 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:45:13,137 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:45:13,654 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:45:13,676 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:45:13,750 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.954 +2025-10-01 22:45:13,750 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:45:13,750 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:45:13,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:13,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:13,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:13,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:45:13,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:45:13,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:17,231 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:45:17,260 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:45:17,334 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.464 +2025-10-01 22:45:17,335 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:45:17,335 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 22:45:20,331 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:45:20,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:45:20,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:45:20,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 22:45:20,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 22:45:20,630 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:45:21,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:21,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:21,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:21,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:45:21,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:45:21,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:26,013 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:45:26,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:45:26,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:45:26,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-01 22:45:26,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-01 22:45:26,279 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:45:27,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:27,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:28,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:28,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:45:28,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:45:28,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:32,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:32,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:32,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:32,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:45:32,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:45:32,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:32,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:32,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:32,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:32,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:45:32,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:45:32,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:34,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:34,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:34,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:34,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:45:34,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:45:34,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:34,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:34,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:34,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:34,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:45:34,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:45:34,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:36,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:36,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:36,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:36,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:45:36,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:45:36,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:36,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:36,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:36,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:37,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:45:37,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:45:37,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:38,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:38,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:38,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:38,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:45:38,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:45:38,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:39,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:39,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:39,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:39,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:45:39,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:45:39,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:40,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:40,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:40,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:40,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:45:40,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:45:40,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:43,515 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 22:45:43,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 22:45:43,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 22:45:43,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.409s +2025-10-01 22:45:43,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.409s (avg: 0.136s/image) +2025-10-01 22:45:43,924 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 22:45:44,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:44,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:44,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:44,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:45:44,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:45:44,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:45,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:45,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:45,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:46,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:45:46,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:45:46,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:48,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:48,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:48,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:48,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:45:48,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:45:48,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:50,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:50,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:50,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:50,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:45:50,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:45:50,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:53,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:53,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:53,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:53,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:45:53,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:45:53,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:45:58,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:45:58,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:45:58,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:45:58,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:45:58,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:45:58,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:04,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:04,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:04,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:04,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:46:04,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:46:04,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:09,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:09,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:09,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:09,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:46:09,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:46:09,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:11,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:11,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:11,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:11,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:46:11,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:46:11,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:11,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:11,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:11,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:11,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:46:11,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:46:11,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:14,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:14,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:14,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:14,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:46:14,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:46:14,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:19,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:19,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:19,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:19,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:46:19,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:46:19,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:22,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:22,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:22,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:22,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:46:22,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:46:22,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:23,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:23,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:23,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:23,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:46:23,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:46:23,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:28,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:28,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:28,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:28,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:46:28,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:46:28,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:29,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:29,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:29,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:29,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:46:29,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:46:29,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:30,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:30,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:30,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:30,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:46:30,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:46:30,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:35,390 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:46:35,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:46:35,500 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.397 +2025-10-01 22:46:35,501 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 22:46:35,501 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 22:46:36,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:36,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:36,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:36,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:46:36,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:46:36,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:37,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:37,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:37,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:38,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:46:38,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:46:38,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:41,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:41,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:41,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:41,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:46:41,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:46:41,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:44,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:44,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:44,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:44,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:46:44,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:46:44,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:45,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:45,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:45,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:45,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:46:45,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:46:45,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:46,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:46,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:46,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:47,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:46:47,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:46:47,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:48,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:48,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:48,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:48,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:46:48,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:46:48,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:50,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:50,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:50,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:51,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:46:51,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:46:51,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:52,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:52,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:52,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:52,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 22:46:52,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 22:46:52,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:55,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:55,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:55,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:55,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:46:55,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:46:55,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:56,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:56,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:57,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:57,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:46:57,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:46:57,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:46:57,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:46:57,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:46:57,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:46:57,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:46:57,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:46:57,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:03,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:03,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:03,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:03,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:47:03,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:47:03,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:08,473 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:47:08,504 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:47:08,588 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.222 +2025-10-01 22:47:08,588 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 22:47:08,588 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 22:47:09,094 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:47:09,135 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:47:09,224 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.460 +2025-10-01 22:47:09,225 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 22:47:09,225 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 22:47:09,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:09,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:09,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:09,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:47:09,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:47:09,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:12,056 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:47:12,079 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:47:12,161 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.696 +2025-10-01 22:47:12,161 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:47:12,161 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:47:14,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:14,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:14,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:14,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:47:14,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:47:14,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:14,812 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:47:14,830 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:47:14,905 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.870 +2025-10-01 22:47:14,906 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:47:14,906 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 22:47:14,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:14,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:14,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:15,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:47:15,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:47:15,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:15,820 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:47:15,846 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:47:15,932 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.657 +2025-10-01 22:47:15,932 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 22:47:15,932 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 22:47:18,520 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:47:18,545 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:47:18,621 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.549 +2025-10-01 22:47:18,622 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:47:18,622 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:47:19,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:19,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:19,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:19,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:47:19,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:47:19,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:21,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:21,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:21,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:21,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:47:21,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:47:21,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:21,654 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:47:21,675 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:47:21,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.811 +2025-10-01 22:47:21,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 22:47:21,747 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 22:47:22,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:22,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:22,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:22,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:47:22,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:47:22,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:23,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:23,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:23,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:24,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:47:24,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:47:24,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:25,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:25,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:25,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:25,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:47:25,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:47:25,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:25,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:25,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:25,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:25,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:47:25,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:47:25,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:29,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:29,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:29,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:29,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 22:47:29,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 22:47:29,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:30,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:30,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:30,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:30,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:47:30,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:47:30,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:34,097 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:47:34,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:47:34,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:47:34,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 22:47:34,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 22:47:34,398 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:47:39,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:39,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:39,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:39,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:47:39,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:47:39,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:39,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:39,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:39,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:39,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:47:39,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:47:39,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:41,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:41,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:41,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:41,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:47:41,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:47:41,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:41,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:41,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:41,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:42,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:47:42,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:47:42,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:42,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:42,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:42,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:42,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:47:42,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:47:42,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:42,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:42,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:42,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:43,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:47:43,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:47:43,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:44,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:44,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:44,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:44,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:47:44,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:47:44,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:45,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:45,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:45,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:45,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:47:45,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:47:45,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:47,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:47,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:47,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:47,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:47:47,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:47:47,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:47,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:47,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:47,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:47,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 22:47:47,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 22:47:47,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:48,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:48,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:48,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:49,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:47:49,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:47:49,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:49,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:49,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:49,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:49,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:47:49,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:47:49,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:50,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:50,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:50,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:50,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:47:50,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:47:50,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:51,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:51,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:51,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:51,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:47:51,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:47:51,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:51,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:51,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:51,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:52,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:47:52,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:47:52,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:54,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:54,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:54,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:55,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 22:47:55,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 22:47:55,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:56,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:56,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:56,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:56,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:47:56,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:47:56,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:47:58,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:47:58,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:47:58,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:47:58,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:47:58,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:47:58,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:00,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:00,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:00,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:00,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:48:00,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:48:00,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:00,486 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:48:00,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:48:00,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:48:00,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.256s +2025-10-01 22:48:00,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.256s (avg: 0.128s/image) +2025-10-01 22:48:00,743 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:48:01,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:01,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:01,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:01,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:48:01,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:48:01,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:01,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:01,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:01,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:01,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 22:48:01,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 22:48:01,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:05,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:05,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:05,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:05,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:48:05,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:48:05,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:08,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:08,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:08,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:09,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:48:09,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:48:09,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:09,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:09,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:09,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:10,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:48:10,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:48:10,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:10,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:10,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:10,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:11,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:48:11,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:48:11,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:12,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:12,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:12,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:12,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:48:12,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:48:12,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:12,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:12,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:12,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:12,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 22:48:12,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 22:48:12,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:15,966 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:48:15,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:48:16,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:48:16,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-01 22:48:16,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-01 22:48:16,269 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:48:17,740 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:48:17,769 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:48:17,855 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.816 +2025-10-01 22:48:17,856 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 22:48:17,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 22:48:18,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:18,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:19,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:19,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:48:19,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:48:19,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:22,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:22,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:22,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:22,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 22:48:22,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 22:48:22,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:22,506 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:48:22,546 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:48:22,629 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.846 +2025-10-01 22:48:22,629 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:48:22,629 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 22:48:22,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:22,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:22,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:23,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:48:23,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:48:23,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:27,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:27,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:27,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:27,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 22:48:27,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 22:48:27,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:27,200 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:48:27,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:48:27,300 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.540 +2025-10-01 22:48:27,300 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:48:27,300 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:48:28,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:28,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:28,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:28,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:48:28,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:48:28,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:29,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:29,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:30,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:30,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 22:48:30,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 22:48:30,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:32,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:32,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:32,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:32,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:48:32,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:48:32,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:34,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:34,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:34,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:34,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:48:34,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:48:34,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:38,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:38,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:38,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:38,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:48:38,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:48:38,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:38,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:38,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:38,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:39,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 22:48:39,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 22:48:39,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:47,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:47,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:47,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:47,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 22:48:47,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 22:48:47,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:47,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:47,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:48,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:48,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:48:48,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:48:48,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:51,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:51,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:51,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:51,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:48:51,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:48:51,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:52,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:52,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:52,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:52,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:48:52,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:48:52,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:48:55,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:48:55,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:48:55,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:48:55,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:48:55,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:48:55,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:00,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:00,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:00,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:00,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 22:49:00,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 22:49:00,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:01,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:01,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:01,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:01,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:49:01,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:49:01,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:07,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:07,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:07,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:07,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:49:07,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:49:07,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:13,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:13,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:14,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:14,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:49:14,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:49:14,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:14,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:14,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:14,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:14,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:49:14,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:49:14,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:18,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:18,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:18,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:18,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:49:18,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:49:18,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:19,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:19,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:19,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:19,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:49:19,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:49:19,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:24,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:24,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:24,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:24,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:49:24,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:49:24,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:26,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:26,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:26,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:26,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:49:26,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:49:26,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:29,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:29,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:30,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:30,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:49:30,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:49:30,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:32,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:32,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:32,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:33,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:49:33,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:49:33,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:34,010 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:49:34,031 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:49:34,114 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.910 +2025-10-01 22:49:34,114 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 22:49:34,114 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 22:49:34,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:34,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:34,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:34,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:49:34,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:49:34,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:37,956 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:49:37,982 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:49:38,059 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.728 +2025-10-01 22:49:38,059 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:49:38,059 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:49:39,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:39,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:39,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:39,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:49:39,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:49:39,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:41,346 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:49:41,371 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:49:41,448 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.371 +2025-10-01 22:49:41,448 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:49:41,448 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:49:43,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:43,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:43,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:43,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:49:43,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:49:43,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:43,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:43,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:43,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:43,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:49:43,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:49:43,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:46,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:46,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:46,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:46,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:49:46,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:49:46,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:48,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:48,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:48,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:48,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:49:48,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:49:48,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:49,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:49,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:49,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:49,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:49:49,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:49:49,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:52,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:52,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:52,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:52,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:49:52,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:49:52,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:52,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:52,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:52,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:53,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:49:53,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:49:53,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:56,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:56,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:56,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:56,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:49:56,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:49:56,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:57,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:57,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:57,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:57,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:49:57,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:49:57,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:57,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:57,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:57,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:57,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 22:49:57,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 22:49:57,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:58,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:58,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:58,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:58,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:49:58,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:49:58,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:49:59,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:49:59,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:49:59,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:49:59,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:49:59,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:49:59,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:01,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:01,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:01,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:01,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:50:01,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:50:01,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:01,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:01,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:01,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:02,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:50:02,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:50:02,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:03,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:03,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:03,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:03,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:50:03,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:50:03,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:04,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:04,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:04,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:04,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:50:04,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:50:04,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:06,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:06,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:06,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:06,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:50:06,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:50:06,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:07,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:07,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:07,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:08,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:50:08,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:50:08,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:15,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:15,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:15,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:15,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:50:15,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:50:15,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:18,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:18,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:18,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:18,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:50:18,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:50:18,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:19,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:19,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:19,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:19,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:50:19,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:50:19,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:20,429 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:50:20,454 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:50:20,526 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.996 +2025-10-01 22:50:20,527 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 22:50:20,527 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 22:50:20,720 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:50:20,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:50:20,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:50:21,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 22:50:21,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 22:50:21,001 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:50:22,154 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:50:22,181 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:50:22,255 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.780 +2025-10-01 22:50:22,255 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:50:22,255 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:50:23,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:23,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:23,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:23,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:50:23,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:50:23,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:23,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:23,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:23,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:23,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:50:23,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:50:23,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:24,106 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:50:24,129 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:50:24,204 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.616 +2025-10-01 22:50:24,205 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:50:24,205 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:50:25,963 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:50:25,982 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:50:26,051 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.305 +2025-10-01 22:50:26,051 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-01 22:50:26,051 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-01 22:50:27,002 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:50:27,038 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:50:27,120 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.657 +2025-10-01 22:50:27,121 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:50:27,121 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 22:50:28,132 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:50:28,163 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:50:28,238 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.430 +2025-10-01 22:50:28,239 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:50:28,239 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:50:28,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:28,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:28,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:28,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 22:50:28,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 22:50:28,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:29,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:29,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:29,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:29,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:50:29,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:50:29,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:32,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:32,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:32,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:32,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:50:32,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:50:32,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:33,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:33,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:33,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:33,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:50:33,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:50:33,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:33,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:33,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:33,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:33,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:50:33,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:50:33,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:37,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:37,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:37,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:37,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:50:37,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:50:37,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:39,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:39,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:39,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:39,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:50:39,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:50:39,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:39,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:39,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:39,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:39,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:50:39,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:50:39,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:40,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:40,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:40,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:40,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:50:40,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:50:40,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:41,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:41,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:41,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:41,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:50:41,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:50:41,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:45,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:45,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:45,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:45,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:50:45,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:50:45,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:46,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:46,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:46,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:46,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:50:46,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:50:46,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:46,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:46,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:46,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:47,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:50:47,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:50:47,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:49,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:49,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:49,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:49,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:50:49,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:50:49,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:53,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:53,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:53,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:54,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:50:54,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:50:54,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:59,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:59,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:59,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:50:59,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:50:59,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:50:59,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:50:59,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:50:59,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:50:59,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:00,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:51:00,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:51:00,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:04,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:04,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:04,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:05,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:51:05,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:51:05,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:06,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:06,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:06,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:06,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 22:51:06,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 22:51:06,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:09,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:09,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:09,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:09,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:51:09,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:51:09,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:12,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:12,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:12,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:12,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:51:12,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:51:12,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:15,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:15,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:15,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:15,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:51:15,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:51:15,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:16,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:16,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:16,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:16,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:51:16,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:51:16,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:18,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:18,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:18,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:19,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:51:19,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:51:19,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:19,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:19,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:19,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:19,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:51:19,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:51:19,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:22,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:22,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:22,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:22,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:51:22,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:51:22,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:25,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:25,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:25,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:25,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 22:51:25,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 22:51:25,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:26,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:26,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:26,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:26,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:51:26,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:51:26,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:26,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:26,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:27,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:27,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:51:27,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:51:27,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:27,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:27,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:27,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:27,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:51:27,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:51:27,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:29,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:29,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:29,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:30,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:51:30,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:51:30,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:31,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:31,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:31,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:31,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 22:51:31,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 22:51:31,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:32,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:32,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:32,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:32,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:51:32,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:51:32,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:32,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:32,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:32,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:33,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:51:33,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:51:33,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:34,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:34,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:34,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:34,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:51:34,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:51:34,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:37,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:37,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:37,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:37,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:51:37,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:51:37,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:38,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:38,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:38,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:38,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:51:38,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:51:38,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:40,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:40,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:40,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:40,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:51:40,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:51:40,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:41,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:41,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:41,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:41,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:51:41,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:51:41,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:42,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:42,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:42,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:42,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 22:51:42,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 22:51:42,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:46,982 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:51:46,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:51:47,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:51:47,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.312s +2025-10-01 22:51:47,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.312s (avg: 0.156s/image) +2025-10-01 22:51:47,296 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:51:50,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:50,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:50,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:50,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 22:51:50,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 22:51:50,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:51,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:51,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:51,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:51,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 22:51:51,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 22:51:51,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:55,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:55,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:55,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:56,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:51:56,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:51:56,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:51:56,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:51:56,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:51:56,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:51:56,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:51:56,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:51:56,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:52:02,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:52:02,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:52:03,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:52:03,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:52:03,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:52:03,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:52:03,237 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:52:03,261 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:52:03,338 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.349 +2025-10-01 22:52:03,338 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:52:03,338 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:52:03,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:52:03,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:52:03,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:52:03,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:52:03,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:52:03,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:52:04,948 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:52:04,971 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:52:05,044 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.168 +2025-10-01 22:52:05,044 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 22:52:05,044 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:52:08,805 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:52:08,828 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:52:08,902 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.214 +2025-10-01 22:52:08,902 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:52:08,902 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:52:09,209 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:52:09,230 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:52:09,305 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.135 +2025-10-01 22:52:09,305 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:52:09,305 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 22:52:09,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:52:09,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:52:09,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:52:09,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:52:09,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:52:09,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:52:12,882 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:52:12,901 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:52:12,974 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.966 +2025-10-01 22:52:12,974 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 22:52:12,974 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:52:14,654 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:52:14,693 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:52:14,768 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.014 +2025-10-01 22:52:14,768 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:52:14,768 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:52:19,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:52:19,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:52:19,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:52:19,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:52:19,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:52:19,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:52:26,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:52:26,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:52:26,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:52:26,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:52:26,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:52:26,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:52:32,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:52:32,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:52:32,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:52:32,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:52:32,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:52:32,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:52:39,551 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:52:39,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:52:39,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:52:39,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-01 22:52:39,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-01 22:52:39,849 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:52:43,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:52:43,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:52:43,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:52:43,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:52:43,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:52:43,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:52:46,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:52:46,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:52:46,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:52:46,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:52:46,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:52:46,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:52:50,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:52:50,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:52:50,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:52:50,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:52:50,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:52:50,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:52:51,215 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:52:51,239 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:52:51,317 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.927 +2025-10-01 22:52:51,317 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 22:52:51,317 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:52:53,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:52:53,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:52:53,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:52:53,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:52:53,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:52:53,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:52:55,758 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:52:55,794 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:52:55,869 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.619 +2025-10-01 22:52:55,869 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 22:52:55,869 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 22:52:58,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:52:58,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:52:58,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:52:58,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:52:58,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:52:58,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:00,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:00,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:00,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:00,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 22:53:00,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 22:53:00,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:01,052 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:53:01,078 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:53:01,152 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.793 +2025-10-01 22:53:01,152 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:53:01,152 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:53:11,482 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:53:11,509 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:53:11,583 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.371 +2025-10-01 22:53:11,584 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:53:11,584 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:53:21,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:21,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:21,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:21,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:53:21,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:53:21,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:23,729 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:53:23,759 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:53:23,835 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.850 +2025-10-01 22:53:23,835 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:53:23,835 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:53:24,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:24,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:24,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:24,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:53:24,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:53:24,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:26,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:26,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:26,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:26,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:53:26,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:53:26,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:27,705 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:53:27,730 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:53:27,802 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.852 +2025-10-01 22:53:27,802 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 22:53:27,802 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 22:53:31,357 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:53:31,388 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:53:31,464 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.496 +2025-10-01 22:53:31,465 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:53:31,465 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:53:32,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:32,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:32,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:32,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:53:32,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:53:32,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:33,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:33,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:33,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:34,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 22:53:34,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 22:53:34,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:38,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:38,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:38,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:38,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:53:38,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:53:38,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:39,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:39,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:39,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:39,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 22:53:39,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 22:53:39,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:42,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:42,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:42,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:42,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:53:42,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:53:42,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:44,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:44,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:44,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:44,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:53:44,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:53:44,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:46,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:46,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:46,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:46,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:53:46,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:53:46,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:53,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:53,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:53,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:53,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:53:53,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:53:53,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:53:59,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:53:59,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:53:59,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:53:59,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:53:59,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:53:59,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:54:03,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:54:03,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:54:03,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:54:03,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 22:54:03,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 22:54:03,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:54:05,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:54:05,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:54:05,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:54:05,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:54:05,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:54:05,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:54:09,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:54:09,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:54:09,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:54:10,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-01 22:54:10,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-01 22:54:10,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:54:10,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:54:10,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:54:10,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:54:11,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:54:11,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:54:11,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:54:37,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:54:37,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:54:37,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:54:37,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:54:37,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:54:37,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:54:43,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:54:43,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:54:43,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:54:44,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:54:44,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:54:44,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:54:46,549 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:54:46,587 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:54:46,671 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.719 +2025-10-01 22:54:46,672 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 22:54:46,672 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 22:54:50,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:54:50,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:54:50,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:54:50,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:54:50,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:54:50,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:54:57,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:54:57,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:54:57,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:54:57,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 22:54:57,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 22:54:57,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:54:58,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:54:58,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:54:58,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:54:58,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:54:58,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:54:58,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:04,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:04,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:04,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:04,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 22:55:04,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 22:55:04,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:08,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:08,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:08,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:08,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:55:08,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:55:08,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:38,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:38,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:38,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:38,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 22:55:38,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 22:55:38,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:42,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:42,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:42,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:42,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:55:42,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:55:42,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:44,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:44,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:44,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:44,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:55:44,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:55:44,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:46,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:46,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:46,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:46,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:55:46,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:55:46,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:47,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:47,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:47,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:47,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 22:55:47,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 22:55:47,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:51,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:51,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:51,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:51,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:55:51,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:55:51,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:51,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:51,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:52,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:52,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:55:52,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:55:52,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:52,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:52,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:52,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:52,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:55:52,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:55:52,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:54,820 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:55:54,847 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:55:54,933 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.488 +2025-10-01 22:55:54,933 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 22:55:54,933 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 22:55:55,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:55,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:55,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:55,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:55:55,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:55:55,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:56,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:56,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:56,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:56,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:55:56,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:55:56,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:58,509 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:55:58,541 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:55:58,632 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.325 +2025-10-01 22:55:58,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-01 22:55:58,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-01 22:55:59,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:59,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:55:59,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:55:59,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:55:59,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:55:59,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:55:59,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:55:59,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:00,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:00,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:56:00,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:56:00,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:01,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:01,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:01,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:01,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:56:01,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:56:01,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:02,546 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:56:02,576 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:56:02,660 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.501 +2025-10-01 22:56:02,660 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 22:56:02,660 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 22:56:07,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:07,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:07,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:07,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:56:07,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:56:07,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:08,657 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:56:08,685 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:56:08,759 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.386 +2025-10-01 22:56:08,759 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 22:56:08,759 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 22:56:09,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:09,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:09,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:09,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:56:09,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:56:09,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:11,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:11,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:11,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:11,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:56:11,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:56:11,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:13,716 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:56:13,743 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:56:13,827 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.625 +2025-10-01 22:56:13,827 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 22:56:13,827 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 22:56:16,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:16,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:16,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:17,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 22:56:17,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 22:56:17,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:17,641 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:56:17,664 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:56:17,740 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=207.774 +2025-10-01 22:56:17,740 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:56:17,740 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 22:56:18,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:18,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:18,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:18,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:56:18,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:56:18,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:24,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:24,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:24,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:24,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:56:24,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:56:24,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:24,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:24,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:24,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:25,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 22:56:25,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 22:56:25,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:25,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:25,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:25,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:25,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:56:25,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:56:25,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:25,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:25,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:25,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:26,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:56:26,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:56:26,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:29,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:29,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:29,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:29,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:56:29,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:56:29,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:33,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:33,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:33,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:34,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 22:56:34,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 22:56:34,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:34,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:34,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:34,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:34,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:56:34,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:56:34,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:34,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:34,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:35,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:35,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 22:56:35,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 22:56:35,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:37,616 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:56:37,636 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:56:37,713 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.370 +2025-10-01 22:56:37,714 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 22:56:37,714 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 22:56:38,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:38,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:38,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:38,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:56:38,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:56:38,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:43,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:43,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:43,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:43,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:56:43,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:56:43,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:45,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:45,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:45,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:45,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:56:45,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:56:45,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:46,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:46,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:47,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:47,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 22:56:47,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 22:56:47,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:48,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:48,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:48,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:48,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:56:48,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:56:48,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:50,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:50,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:50,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:50,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:56:50,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:56:50,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:55,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:55,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:55,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:55,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 22:56:55,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 22:56:55,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:56:56,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:56:56,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:56:56,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:56:56,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:56:56,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:56:56,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:02,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:02,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:02,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:02,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 22:57:02,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 22:57:02,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:07,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:07,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:07,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:07,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 22:57:07,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 22:57:07,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:13,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:13,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:13,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:13,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 22:57:13,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 22:57:13,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:14,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:14,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:14,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:14,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:57:14,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:57:14,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:19,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:19,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:20,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:20,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:57:20,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:57:20,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:20,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:20,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:20,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:20,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:57:20,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:57:20,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:21,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:21,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:21,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:21,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:57:21,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:57:21,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:25,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:25,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:25,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:25,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:57:25,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:57:25,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:25,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:25,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:25,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:26,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:57:26,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:57:26,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:26,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:26,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:26,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:26,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 22:57:26,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 22:57:26,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:30,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:30,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:30,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:30,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:57:30,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:57:30,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:30,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:30,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:30,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:31,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:57:31,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:57:31,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:31,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:31,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:31,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:31,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:57:31,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:57:31,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:35,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:35,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:35,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:35,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:57:35,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:57:35,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:41,128 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:57:41,153 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:57:41,232 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.615 +2025-10-01 22:57:41,232 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:57:41,232 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:57:41,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:41,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:41,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:41,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 22:57:41,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 22:57:41,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:43,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:43,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:43,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:44,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 22:57:44,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 22:57:44,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:47,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:47,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:47,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:47,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 22:57:47,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 22:57:47,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:49,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:49,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:49,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:49,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:57:49,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:57:49,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:49,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:49,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:49,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:50,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:57:50,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:57:50,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:51,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:51,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:51,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:51,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:57:51,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:57:51,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:51,457 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:57:51,474 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:57:51,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.269 +2025-10-01 22:57:51,546 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 22:57:51,546 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 22:57:51,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:51,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:51,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:52,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 22:57:52,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 22:57:52,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:54,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:54,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:54,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:54,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:57:54,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:57:54,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:55,048 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:57:55,072 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:57:55,151 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.499 +2025-10-01 22:57:55,151 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:57:55,151 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 22:57:57,088 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:57:57,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:57:57,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:57:57,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-01 22:57:57,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-01 22:57:57,399 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:57:58,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:58,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:58,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:58,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:57:58,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:57:58,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:57:58,668 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:57:58,691 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:57:58,772 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.403 +2025-10-01 22:57:58,772 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 22:57:58,773 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 22:57:59,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:57:59,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:57:59,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:57:59,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:57:59,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:57:59,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:03,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:03,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:03,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:03,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:58:03,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:58:03,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:04,706 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:58:04,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:58:04,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:58:05,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 22:58:05,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 22:58:05,010 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:58:06,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:06,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:06,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:06,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:58:06,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:58:06,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:09,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:09,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:09,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:09,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:58:09,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:58:09,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:10,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:10,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:10,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:10,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 22:58:10,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 22:58:10,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:11,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:11,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:11,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:11,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 22:58:11,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 22:58:11,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:12,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:12,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:12,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:13,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:58:13,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:58:13,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:15,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:15,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:15,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:15,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 22:58:15,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 22:58:15,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:17,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:17,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:17,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:17,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 22:58:17,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 22:58:17,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:25,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:25,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:25,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:25,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:58:25,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:58:25,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:30,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:30,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:30,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:30,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:58:30,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:58:30,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:31,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:31,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:31,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:31,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 22:58:31,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 22:58:31,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:31,607 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:58:31,638 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:58:31,714 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.979 +2025-10-01 22:58:31,715 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:58:31,715 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:58:36,379 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:58:36,401 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:58:36,482 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.398 +2025-10-01 22:58:36,483 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 22:58:36,483 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 22:58:37,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:37,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:37,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:37,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:58:37,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:58:37,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:40,593 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:58:40,634 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:58:40,713 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.834 +2025-10-01 22:58:40,713 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 22:58:40,713 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 22:58:42,499 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:58:42,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:58:42,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:58:42,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.332s +2025-10-01 22:58:42,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.332s (avg: 0.166s/image) +2025-10-01 22:58:42,833 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:58:45,180 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:58:45,200 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:58:45,276 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=187.940 +2025-10-01 22:58:45,277 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 22:58:45,277 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 22:58:48,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:48,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:48,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:48,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 22:58:48,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 22:58:48,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:58:55,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:58:55,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:58:55,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:58:55,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:58:55,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:58:55,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:00,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:00,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:00,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:00,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 22:59:00,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 22:59:00,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:02,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:02,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:02,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:02,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 22:59:02,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 22:59:02,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:08,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:08,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:08,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:08,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 22:59:08,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 22:59:08,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:09,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:09,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:09,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:09,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 22:59:09,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 22:59:09,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:13,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:13,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:13,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:14,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 22:59:14,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 22:59:14,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:23,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:23,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:23,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:23,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 22:59:23,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 22:59:23,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:24,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:24,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:24,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:24,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 22:59:24,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 22:59:24,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:28,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:28,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:28,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:28,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 22:59:28,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 22:59:28,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:29,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:29,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:29,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:29,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 22:59:29,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 22:59:29,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:32,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:32,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:32,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:32,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 22:59:32,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 22:59:32,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:39,549 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 22:59:39,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 22:59:39,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 22:59:39,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 22:59:39,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 22:59:39,839 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 22:59:45,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:45,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:45,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:45,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:59:45,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:59:45,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:46,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:46,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:46,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:46,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 22:59:46,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 22:59:46,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:46,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:46,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:46,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:46,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 22:59:46,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 22:59:46,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:50,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:50,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:50,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:50,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 22:59:50,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 22:59:50,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:51,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:51,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:51,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:51,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 22:59:51,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 22:59:51,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:53,041 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:59:53,081 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:59:53,167 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.590 +2025-10-01 22:59:53,167 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 22:59:53,168 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 22:59:54,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:54,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:54,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:55,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 22:59:55,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 22:59:55,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 22:59:56,957 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 22:59:56,990 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 22:59:57,078 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.629 +2025-10-01 22:59:57,079 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 22:59:57,079 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 22:59:59,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 22:59:59,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 22:59:59,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 22:59:59,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 22:59:59,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 22:59:59,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:01,207 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:00:01,233 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:00:01,311 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.812 +2025-10-01 23:00:01,312 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:00:01,312 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:00:02,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:02,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:02,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:02,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:00:02,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:00:02,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:03,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:03,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:03,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:03,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:00:03,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:00:03,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:06,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:06,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:06,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:06,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 23:00:06,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 23:00:06,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:07,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:07,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:07,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:07,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:00:07,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:00:07,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:10,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:10,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:10,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:10,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:00:10,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:00:10,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:11,745 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:00:11,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:00:11,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:00:12,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 23:00:12,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 23:00:12,039 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:00:13,491 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:00:13,528 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:00:13,617 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.091 +2025-10-01 23:00:13,618 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 23:00:13,618 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 23:00:17,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:17,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:17,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:17,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:00:17,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:00:17,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:20,639 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:00:20,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:00:20,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:00:20,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-01 23:00:20,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-01 23:00:20,920 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:00:22,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:22,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:22,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:22,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:00:22,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:00:22,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:24,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:24,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:24,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:25,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:00:25,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:00:25,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:26,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:26,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:26,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:26,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:00:26,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:00:26,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:29,016 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:00:29,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:00:29,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:00:29,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-01 23:00:29,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +2025-10-01 23:00:29,328 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:00:29,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:29,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:29,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:29,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:00:29,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:00:29,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:32,496 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:00:32,516 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:00:32,594 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.444 +2025-10-01 23:00:32,594 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:00:32,594 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:00:32,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:32,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:32,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:33,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:00:33,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:00:33,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:33,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:33,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:33,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:34,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:00:34,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:00:34,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:34,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:34,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:34,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:35,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:00:35,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:00:35,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:36,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:36,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:36,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:36,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:00:36,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:00:36,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:38,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:38,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:38,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:38,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:00:38,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:00:38,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:40,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:40,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:40,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:40,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:00:40,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:00:40,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:41,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:41,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:42,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:42,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:00:42,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:00:42,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:43,011 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:00:43,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:00:43,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:00:43,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-01 23:00:43,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-01 23:00:43,315 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:00:46,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:46,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:46,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:46,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 23:00:46,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 23:00:46,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:46,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:46,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:46,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:46,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 23:00:46,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 23:00:46,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:48,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:48,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:48,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:48,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:00:48,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:00:48,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:48,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:48,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:48,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:48,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 23:00:48,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 23:00:48,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:51,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:51,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:51,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:51,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:00:51,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:00:51,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:54,079 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:00:54,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:00:54,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:00:54,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-01 23:00:54,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-01 23:00:54,383 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:00:54,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:54,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:54,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:54,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 23:00:54,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 23:00:54,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:55,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:55,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:55,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:55,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:00:55,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:00:55,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:55,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:55,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:55,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:56,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 23:00:56,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 23:00:56,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:00:59,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:00:59,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:00:59,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:00:59,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 23:00:59,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 23:00:59,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:01,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:01,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:01,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:01,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:01:01,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:01:01,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:03,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:03,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:03,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:03,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 23:01:03,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 23:01:03,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:04,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:04,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:04,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:04,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:01:04,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:01:04,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:05,157 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:01:05,187 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:01:05,266 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.948 +2025-10-01 23:01:05,267 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 23:01:05,267 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:01:06,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:06,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:06,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:06,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:01:06,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:01:06,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:10,388 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:01:10,403 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:01:10,478 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.137 +2025-10-01 23:01:10,479 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:01:10,479 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:01:10,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:10,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:10,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:10,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:01:10,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:01:10,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:11,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:11,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:11,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:11,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:01:11,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:01:11,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:12,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:12,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:12,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:12,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:01:12,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:01:12,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:14,082 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:01:14,109 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:01:14,186 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.035 +2025-10-01 23:01:14,186 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:01:14,187 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:01:15,164 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:01:15,179 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:01:15,254 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.701 +2025-10-01 23:01:15,254 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:01:15,254 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:01:16,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:16,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:16,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:16,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:01:16,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:01:16,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:17,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:17,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:17,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:17,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:01:17,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:01:17,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:21,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:21,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:21,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:21,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:01:21,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:01:21,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:22,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:22,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:22,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:22,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:01:22,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:01:22,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:27,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:27,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:27,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:27,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-01 23:01:27,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-01 23:01:27,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:33,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:33,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:33,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:33,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:01:33,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:01:33,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:39,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:39,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:39,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:39,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:01:39,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:01:39,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:40,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:40,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:40,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:40,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:01:40,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:01:40,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:45,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:45,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:45,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:45,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:01:45,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:01:45,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:48,630 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:01:48,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:01:48,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:01:48,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +2025-10-01 23:01:48,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.319s (avg: 0.159s/image) +2025-10-01 23:01:48,950 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:01:49,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:49,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:49,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:49,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:01:49,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:01:49,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:51,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:51,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:51,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:51,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:01:51,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:01:51,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:56,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:56,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:56,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:57,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:01:57,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:01:57,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:01:59,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:01:59,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:01:59,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:01:59,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:01:59,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:01:59,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:01,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:01,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:01,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:01,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:02:01,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:02:01,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:03,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:03,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:03,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:03,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:02:03,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:02:03,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:03,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:03,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:03,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:04,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:02:04,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:02:04,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:06,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:06,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:06,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:06,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 23:02:06,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 23:02:06,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:07,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:07,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:07,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:07,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-01 23:02:07,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-01 23:02:07,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:07,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:07,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:07,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:08,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:02:08,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:02:08,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:08,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:08,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:09,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:09,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:02:09,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:02:09,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:11,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:11,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:11,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:11,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:02:11,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:02:11,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:14,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:14,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:14,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:14,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:02:14,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:02:14,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:17,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:17,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:17,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:17,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 23:02:17,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 23:02:17,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:17,262 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:02:17,282 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:02:17,359 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.688 +2025-10-01 23:02:17,359 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:02:17,360 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:02:18,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:18,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:18,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:18,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:02:18,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:02:18,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:19,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:19,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:19,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:19,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 23:02:19,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 23:02:19,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:20,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:20,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:20,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:20,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:02:20,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:02:20,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:22,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:22,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:22,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:23,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:02:23,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:02:23,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:23,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:23,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:23,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:23,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:02:23,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:02:23,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:25,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:25,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:25,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:25,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 23:02:25,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 23:02:25,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:28,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:28,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:28,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:28,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 23:02:28,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 23:02:28,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:28,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:28,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:28,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:28,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:02:28,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:02:28,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:30,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:30,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:30,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:30,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:02:30,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:02:30,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:37,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:37,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:37,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:37,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 23:02:37,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 23:02:37,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:40,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:40,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:40,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:40,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:02:40,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:02:40,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:44,962 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:02:44,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:02:45,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:02:45,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 23:02:45,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 23:02:45,261 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:02:45,333 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:02:45,354 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:02:45,428 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.798 +2025-10-01 23:02:45,428 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:02:45,428 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:02:48,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:48,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:48,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:48,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:02:48,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:02:48,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:48,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:48,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:48,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:49,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:02:49,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:02:49,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:49,228 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:02:49,251 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:02:49,328 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.062 +2025-10-01 23:02:49,328 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:02:49,328 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:02:53,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:53,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:53,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:53,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:02:53,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:02:53,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:53,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:02:53,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:02:53,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:02:53,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 23:02:53,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 23:02:53,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:02:53,737 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:02:53,752 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:02:53,828 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.286 +2025-10-01 23:02:53,828 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:02:53,828 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:03:03,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:03:03,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:03:03,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:03:03,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 23:03:03,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 23:03:03,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:03:07,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:03:07,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:03:07,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:03:07,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 23:03:07,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 23:03:07,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:03:24,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:03:24,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:03:24,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:03:24,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:03:24,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:03:24,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:03:32,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:03:32,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:03:32,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:03:33,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:03:33,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:03:33,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:03:40,254 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:03:40,278 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:03:40,358 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.643 +2025-10-01 23:03:40,358 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 23:03:40,358 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:03:45,389 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:03:45,428 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:03:45,508 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=189.565 +2025-10-01 23:03:45,508 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 23:03:45,509 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:03:49,123 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:03:49,149 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:03:49,224 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.317 +2025-10-01 23:03:49,224 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:03:49,225 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:03:50,461 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:03:50,492 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:03:50,570 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=185.867 +2025-10-01 23:03:50,570 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:03:50,570 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:03:53,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:03:53,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:03:53,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:03:53,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:03:53,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:03:53,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:03:55,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:03:55,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:03:55,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:03:55,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:03:55,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:03:55,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:01,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:01,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:01,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:01,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 23:04:01,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 23:04:01,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:04,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:04,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:04,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:05,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 23:04:05,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 23:04:05,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:13,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:13,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:13,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:13,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:04:13,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:04:13,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:13,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:13,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:13,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:13,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-01 23:04:13,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-01 23:04:13,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:17,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:17,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:17,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:18,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 23:04:18,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 23:04:18,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:20,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:20,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:20,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:20,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:04:20,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:04:20,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:21,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:21,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:21,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:22,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 23:04:22,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 23:04:22,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:25,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:25,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:25,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:25,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:04:25,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:04:25,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:26,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:26,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:26,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:26,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:04:26,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:04:26,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:31,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:31,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:31,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:31,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:04:31,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:04:31,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:31,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:31,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:31,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:32,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:04:32,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:04:32,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:37,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:37,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:37,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:37,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 23:04:37,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 23:04:37,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:37,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:37,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:37,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:38,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 23:04:38,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 23:04:38,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:38,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:38,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:38,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:38,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:04:38,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:04:38,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:40,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:40,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:40,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:40,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:04:40,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:04:40,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:44,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:44,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:44,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:44,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:04:44,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:04:44,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:44,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:44,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:44,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:44,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:04:44,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:04:44,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:47,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:47,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:47,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:47,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 23:04:47,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 23:04:47,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:50,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:50,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:50,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:50,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 23:04:50,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 23:04:50,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:51,456 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:04:51,499 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:04:51,581 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.555 +2025-10-01 23:04:51,581 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:04:51,581 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 23:04:52,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:52,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:52,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:52,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:04:52,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:04:52,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:54,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:54,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:54,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:55,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:04:55,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:04:55,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:57,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:57,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:57,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:57,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:04:57,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:04:57,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:04:58,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:04:58,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:04:58,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:04:58,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:04:58,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:04:58,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:02,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:02,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:02,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:02,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:05:02,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:05:02,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:03,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:03,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:03,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:03,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:05:03,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:05:03,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:09,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:09,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:09,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:09,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:05:09,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:05:09,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:09,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:09,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:09,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:09,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:05:09,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:05:09,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:11,147 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:05:11,168 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(792, 792, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:05:11,241 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.433 +2025-10-01 23:05:11,242 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:05:11,242 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:05:11,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:11,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:11,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:11,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:05:11,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:05:11,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:11,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:11,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:11,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:11,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:05:11,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:05:11,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:13,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:13,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:13,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:13,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:05:13,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:05:13,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:14,789 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:05:14,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(792, 792, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:05:14,903 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.401 +2025-10-01 23:05:14,903 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 23:05:14,903 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 23:05:17,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:17,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:17,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:18,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:05:18,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:05:18,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:18,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:18,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:18,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:18,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:05:18,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:05:18,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:19,195 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:05:19,217 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(792, 792, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:05:19,290 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.013 +2025-10-01 23:05:19,291 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 23:05:19,291 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:05:21,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:21,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:21,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:22,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:05:22,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:05:22,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:24,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:24,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:24,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:24,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:05:24,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:05:24,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:27,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:27,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:27,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:27,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:05:27,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:05:27,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:29,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:29,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:29,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:29,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 23:05:29,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 23:05:29,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:31,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:31,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:31,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:31,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:05:31,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:05:31,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:31,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:31,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:31,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:32,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:05:32,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:05:32,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:35,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:35,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:35,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:35,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:05:35,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:05:35,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:36,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:36,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:36,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:36,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:05:36,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:05:36,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:38,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:38,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:38,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:38,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 23:05:38,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 23:05:38,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:39,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:39,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:39,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:40,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:05:40,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:05:40,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:41,183 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:05:41,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:05:41,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:05:41,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-01 23:05:41,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-01 23:05:41,467 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:05:45,423 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:05:45,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:05:45,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:05:45,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-01 23:05:45,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-01 23:05:45,706 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:05:46,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:46,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:46,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:46,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:05:46,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:05:46,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:49,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:49,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:49,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:49,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 23:05:49,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 23:05:49,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:50,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:50,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:50,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:50,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 23:05:50,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 23:05:50,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:53,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:53,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:53,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:53,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:05:53,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:05:53,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:54,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:54,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:54,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:54,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:05:54,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:05:54,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:55,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:55,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:55,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:55,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:05:55,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:05:55,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:59,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:59,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:05:59,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:05:59,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:05:59,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:05:59,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:05:59,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:05:59,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:00,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:00,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:06:00,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:06:00,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:03,688 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:06:03,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:06:03,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:06:03,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-01 23:06:03,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-01 23:06:03,970 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:06:04,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:04,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:04,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:04,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:06:04,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:06:04,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:04,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:04,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:04,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:04,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:06:04,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:06:04,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:06,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:06,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:06,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:06,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:06:06,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:06:06,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:07,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:07,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:07,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:07,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:06:07,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:06:07,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:12,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:12,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:12,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:12,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:06:12,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:06:12,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:18,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:18,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:18,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:18,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:06:18,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:06:18,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:22,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:22,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:22,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:22,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:06:22,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:06:22,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:23,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:23,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:23,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:23,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:06:23,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:06:23,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:27,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:27,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:27,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:27,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:06:27,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:06:27,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:39,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:39,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:39,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:39,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:06:39,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:06:39,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:42,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:42,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:42,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:42,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:06:42,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:06:42,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:45,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:45,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:45,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:45,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:06:45,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:06:45,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:52,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:52,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:52,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:52,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 23:06:52,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 23:06:52,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:06:56,346 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:06:56,375 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:06:56,469 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.356 +2025-10-01 23:06:56,469 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 23:06:56,469 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 23:06:58,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:06:58,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:06:58,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:06:58,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:06:58,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:06:58,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:07:00,763 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:07:00,799 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:07:00,875 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.448 +2025-10-01 23:07:00,875 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:07:00,876 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:07:04,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:07:04,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:07:04,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:07:04,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:07:04,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:07:04,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:07:04,480 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:07:04,503 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:07:04,580 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.880 +2025-10-01 23:07:04,580 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:07:04,580 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:07:18,825 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:07:18,858 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:07:18,934 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=211.881 +2025-10-01 23:07:18,935 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:07:18,935 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:07:21,215 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:07:21,250 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:07:21,326 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.285 +2025-10-01 23:07:21,326 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:07:21,326 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:07:34,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:07:34,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:07:34,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:07:34,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:07:34,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:07:34,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:07:51,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:07:51,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:07:51,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:07:51,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:07:51,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:07:51,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:07:51,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:07:51,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:07:51,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:07:51,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:07:51,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:07:51,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:07:56,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:07:56,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:07:56,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:07:57,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:07:57,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:07:57,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:08:00,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:08:00,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:08:00,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:08:00,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 23:08:00,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 23:08:00,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:08:04,893 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:08:04,931 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:08:05,016 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.320 +2025-10-01 23:08:05,016 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 23:08:05,017 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 23:08:05,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:08:05,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:08:05,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:08:06,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 23:08:06,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 23:08:06,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:08:11,213 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:08:11,251 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:08:11,335 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.008 +2025-10-01 23:08:11,335 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 23:08:11,335 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 23:08:14,859 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:08:14,892 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:08:14,971 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.620 +2025-10-01 23:08:14,971 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:08:14,972 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:08:16,341 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:08:16,376 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:08:16,456 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.944 +2025-10-01 23:08:16,457 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 23:08:16,457 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 23:08:26,246 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:08:26,278 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:08:26,359 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.527 +2025-10-01 23:08:26,359 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 23:08:26,359 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 23:08:30,003 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:08:30,033 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:08:30,121 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.122 +2025-10-01 23:08:30,121 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 23:08:30,121 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 23:08:34,428 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:08:34,460 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:08:34,554 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.188 +2025-10-01 23:08:34,555 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 23:08:34,555 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 23:08:46,703 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:08:46,741 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:08:46,820 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.573 +2025-10-01 23:08:46,820 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:08:46,821 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:08:52,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:08:52,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:08:53,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:08:53,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:08:53,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:08:53,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:08:54,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:08:54,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:08:54,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:08:54,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:08:54,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:08:54,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:00,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:00,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:00,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:00,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:09:00,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:09:00,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:01,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:01,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:01,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:01,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:09:01,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:09:01,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:05,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:05,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:05,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:06,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:09:06,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:09:06,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:06,196 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:09:06,215 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:09:06,291 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.437 +2025-10-01 23:09:06,291 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:09:06,291 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:09:06,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:06,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:06,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:07,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:09:07,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:09:07,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:09,771 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:09:09,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:09:09,867 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.429 +2025-10-01 23:09:09,868 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:09:09,868 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:09:11,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:11,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:11,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:11,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:09:11,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:09:11,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:13,146 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:09:13,171 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:09:13,257 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.429 +2025-10-01 23:09:13,257 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 23:09:13,257 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 23:09:13,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:13,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:14,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:14,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:09:14,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:09:14,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:16,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:16,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:16,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:16,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:09:16,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:09:16,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:20,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:20,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:20,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:20,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:09:20,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:09:20,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:21,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:21,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:21,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:21,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:09:21,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:09:21,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:24,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:24,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:24,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:24,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:09:24,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:09:24,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:28,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:28,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:28,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:28,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:09:28,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:09:28,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:29,959 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:09:29,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:09:30,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:09:30,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-01 23:09:30,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-01 23:09:30,244 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:09:34,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:34,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:34,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:35,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:09:35,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:09:35,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:35,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:35,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:35,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:35,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:09:35,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:09:35,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:37,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:37,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:37,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:37,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:09:37,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:09:37,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:41,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:41,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:41,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:41,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:09:41,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:09:41,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:43,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:43,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:43,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:43,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:09:43,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:09:43,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:45,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:45,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:45,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:45,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:09:45,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:09:45,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:46,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:46,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:46,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:46,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:09:46,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:09:46,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:49,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:49,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:49,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:49,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:09:49,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:09:49,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:52,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:52,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:52,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:52,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:09:52,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:09:52,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:56,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:56,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:56,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:56,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:09:56,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:09:56,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:56,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:56,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:56,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:57,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:09:57,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:09:57,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:57,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:57,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:57,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:57,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:09:57,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:09:57,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:09:59,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:09:59,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:09:59,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:09:59,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:09:59,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:09:59,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:01,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:01,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:01,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:01,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:10:01,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:10:01,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:02,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:02,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:02,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:02,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:10:02,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:10:02,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:04,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:04,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:05,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:05,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:10:05,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:10:05,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:05,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:05,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:05,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:06,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:10:06,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:10:06,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:06,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:06,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:06,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:06,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:10:06,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:10:06,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:11,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:11,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:11,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:11,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:10:11,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:10:11,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:14,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:14,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:14,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:14,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:10:14,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:10:14,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:16,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:16,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:16,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:16,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:10:16,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:10:16,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:23,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:23,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:23,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:23,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:10:23,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:10:23,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:23,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:23,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:23,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:23,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:10:23,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:10:23,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:26,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:26,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:26,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:26,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:10:26,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:10:26,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:30,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:30,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:30,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:30,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 23:10:30,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 23:10:30,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:30,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:30,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:30,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:31,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:10:31,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:10:31,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:31,446 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:10:31,467 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:10:31,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.188 +2025-10-01 23:10:31,549 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:10:31,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 23:10:33,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:33,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:34,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:34,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:10:34,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:10:34,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:35,609 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:10:35,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:10:35,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:10:35,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 23:10:35,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 23:10:35,908 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:10:37,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:37,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:37,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:37,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:10:37,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:10:37,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:43,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:43,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:43,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:44,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:10:44,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:10:44,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:47,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:47,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:47,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:47,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:10:47,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:10:47,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:48,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:48,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:48,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:48,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:10:48,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:10:48,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:53,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:53,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:53,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:53,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:10:53,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:10:53,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:10:58,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:10:58,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:10:58,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:10:58,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:10:58,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:10:58,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:03,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:03,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:03,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:03,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:11:03,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:11:03,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:04,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:04,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:04,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:04,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:11:04,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:11:04,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:12,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:12,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:12,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:12,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:11:12,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:11:12,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:16,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:16,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:16,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:16,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 23:11:16,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 23:11:16,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:22,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:22,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:22,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:22,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:11:22,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:11:22,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:23,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:23,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:24,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:24,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:11:24,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:11:24,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:29,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:29,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:29,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:29,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:11:29,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:11:29,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:31,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:31,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:31,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:31,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:11:31,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:11:31,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:34,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:34,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:34,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:34,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:11:34,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:11:34,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:38,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:38,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:38,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:38,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:11:38,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:11:38,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:40,598 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:11:40,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:11:40,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:11:40,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 23:11:40,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 23:11:40,885 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:11:44,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:44,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:44,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:44,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:11:44,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:11:44,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:45,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:45,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:45,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:45,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:11:45,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:11:45,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:49,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:49,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:49,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:49,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:11:49,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:11:49,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:50,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:50,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:50,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:50,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:11:50,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:11:50,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:11:58,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:11:58,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:11:58,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:11:58,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:11:58,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:11:58,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:00,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:00,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:00,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:00,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:12:00,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:12:00,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:05,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:05,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:05,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:05,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:12:05,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:12:05,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:10,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:10,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:10,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:10,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:12:10,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:12:10,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:12,299 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:12:12,326 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:12:12,410 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.535 +2025-10-01 23:12:12,411 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 23:12:12,411 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 23:12:17,208 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:12:17,227 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(719, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:12:17,301 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.307 +2025-10-01 23:12:17,302 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:12:17,302 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:12:19,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:19,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:20,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:20,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:12:20,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:12:20,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:20,776 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:12:20,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(696, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:12:20,870 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.484 +2025-10-01 23:12:20,870 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:12:20,870 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:12:21,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:21,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:21,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:21,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:12:21,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:12:21,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:27,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:27,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:27,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:27,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:12:27,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:12:27,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:31,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:31,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:31,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:31,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:12:31,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:12:31,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:33,105 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:12:33,143 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:12:33,220 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.504 +2025-10-01 23:12:33,221 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:12:33,221 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:12:33,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:33,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:33,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:34,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:12:34,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:12:34,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:34,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:34,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:34,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:34,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:12:34,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:12:34,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:36,688 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:12:36,718 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:12:36,792 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.585 +2025-10-01 23:12:36,792 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:12:36,792 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:12:38,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:38,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:38,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:38,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:12:38,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:12:38,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:40,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:40,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:40,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:40,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:12:40,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:12:40,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:40,425 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:12:40,450 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:12:40,522 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=201.808 +2025-10-01 23:12:40,522 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 23:12:40,522 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 23:12:43,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:43,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:43,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:43,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:12:43,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:12:43,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:45,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:45,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:45,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:45,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 23:12:45,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 23:12:45,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:46,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:46,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:46,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:46,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:12:46,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:12:46,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:46,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:46,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:46,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:46,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:12:46,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:12:46,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:47,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:47,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:47,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:47,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:12:47,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:12:47,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:52,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:52,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:52,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:52,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:12:52,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:12:52,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:52,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:52,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:52,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:52,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:12:52,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:12:52,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:52,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:52,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:52,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:52,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:12:52,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:12:52,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:53,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:53,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:53,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:53,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 23:12:53,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 23:12:53,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:56,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:56,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:12:56,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:12:56,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:12:56,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:12:56,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:12:59,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:12:59,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:00,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:00,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:13:00,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:13:00,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:00,210 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:13:00,236 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:13:00,309 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.518 +2025-10-01 23:13:00,310 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:13:00,310 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:13:00,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:00,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:01,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:01,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:13:01,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:13:01,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:01,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:01,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:01,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:01,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:13:01,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:13:01,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:05,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:05,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:05,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:05,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 23:13:05,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 23:13:05,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:06,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:06,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:06,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:06,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:13:06,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:13:06,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:07,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:07,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:07,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:07,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 23:13:07,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 23:13:07,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:07,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:07,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:07,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:08,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:13:08,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:13:08,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:13,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:13,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:13,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:13,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:13:13,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:13:13,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:14,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:14,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:14,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:14,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:13:14,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:13:14,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:14,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:14,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:14,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:14,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:13:14,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:13:15,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:19,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:19,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:19,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:19,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:13:19,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:13:19,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:20,441 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:13:20,472 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:13:20,557 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.027 +2025-10-01 23:13:20,557 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 23:13:20,558 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 23:13:20,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:20,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:20,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:20,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:13:20,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:13:20,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:23,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:23,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:23,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:23,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:13:23,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:13:23,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:25,837 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:13:25,860 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:13:25,934 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.939 +2025-10-01 23:13:25,934 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:13:25,935 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:13:28,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:28,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:28,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:28,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:13:28,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:13:28,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:31,752 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:13:31,781 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:13:31,859 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.708 +2025-10-01 23:13:31,859 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:13:31,859 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:13:31,932 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:13:31,962 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:13:32,042 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.783 +2025-10-01 23:13:32,042 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 23:13:32,042 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:13:39,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:39,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:39,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:39,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:13:39,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:13:39,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:41,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:41,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:41,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:41,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:13:41,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:13:41,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:41,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:41,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:41,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:42,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:13:42,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:13:42,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:46,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:46,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:46,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:46,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:13:46,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:13:46,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:47,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:47,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:47,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:47,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:13:47,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:13:47,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:51,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:51,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:51,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:51,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:13:51,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:13:51,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:51,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:51,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:51,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:51,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:13:51,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:13:51,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:53,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:53,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:53,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:54,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:13:54,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:13:54,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:59,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:59,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:59,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:59,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:13:59,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:13:59,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:13:59,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:13:59,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:13:59,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:13:59,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:13:59,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:13:59,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:01,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:01,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:01,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:01,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:14:01,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:14:01,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:07,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:07,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:07,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:07,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 23:14:07,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 23:14:07,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:08,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:08,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:08,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:08,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s +2025-10-01 23:14:08,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image) +2025-10-01 23:14:08,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:08,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:08,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:08,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:08,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:14:08,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:14:08,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:11,753 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:14:11,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:14:11,873 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.012 +2025-10-01 23:14:11,873 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:14:11,873 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 23:14:12,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:12,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:12,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:12,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:14:12,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:14:12,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:15,402 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:14:15,431 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:14:15,509 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.379 +2025-10-01 23:14:15,509 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:14:15,510 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:14:17,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:17,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:17,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:17,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 23:14:17,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 23:14:17,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:18,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:18,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:18,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:19,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:14:19,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:14:19,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:19,122 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:14:19,144 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:14:19,218 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.899 +2025-10-01 23:14:19,219 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:14:19,219 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:14:21,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:21,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:21,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:21,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.216s +2025-10-01 23:14:21,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.216s (avg: 0.216s/image) +2025-10-01 23:14:21,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:25,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:25,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:26,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:26,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:14:26,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:14:26,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:32,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:32,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:32,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:32,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 23:14:32,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 23:14:32,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:40,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:40,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:40,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:40,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:14:40,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:14:40,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:46,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:46,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:46,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:46,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:14:46,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:14:46,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:46,390 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:14:46,408 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(850, 850, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:14:46,490 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.127 +2025-10-01 23:14:46,490 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:14:46,490 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 23:14:50,351 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:14:50,374 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:14:50,451 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.435 +2025-10-01 23:14:50,452 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:14:50,452 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:14:50,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:14:50,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:14:50,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:14:51,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:14:51,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:14:51,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:14:54,551 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:14:54,575 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:14:54,653 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.777 +2025-10-01 23:14:54,654 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:14:54,654 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:15:00,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:00,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:00,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:00,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:15:00,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:15:00,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:00,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:00,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:00,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:00,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:15:00,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:15:00,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:01,460 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:15:01,479 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:15:01,553 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.034 +2025-10-01 23:15:01,554 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:15:01,554 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:15:04,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:04,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:04,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:04,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:15:04,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:15:04,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:07,782 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:15:07,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:15:07,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:15:08,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 23:15:08,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-01 23:15:08,078 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:15:09,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:09,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:09,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:09,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:15:09,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:15:09,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:10,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:10,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:10,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:11,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 23:15:11,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 23:15:11,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:11,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:11,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:11,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:12,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:15:12,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:15:12,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:14,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:14,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:14,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:14,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:15:14,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:15:14,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:15,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:15,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:15,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:15,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:15:15,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:15:15,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:19,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:19,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:20,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:20,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:15:20,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:15:20,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:20,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:20,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:20,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:20,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:15:20,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:15:20,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:24,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:24,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:24,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:24,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:15:24,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:15:24,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:25,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:25,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:25,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:25,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:15:25,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:15:25,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:26,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:26,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:26,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:27,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:15:27,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:15:27,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:29,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:29,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:29,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:29,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:15:29,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:15:29,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:34,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:34,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:34,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:34,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:15:34,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:15:34,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:42,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:42,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:42,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:42,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:15:42,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:15:42,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:45,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:45,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:45,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:45,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:15:45,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:15:45,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:46,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:46,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:46,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:46,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:15:46,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:15:46,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:49,067 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:15:49,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:15:49,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:15:49,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-01 23:15:49,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-01 23:15:49,368 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:15:53,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:53,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:53,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:53,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-01 23:15:53,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-01 23:15:53,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:55,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:55,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:55,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:55,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:15:55,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:15:55,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:57,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:57,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:57,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:57,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 23:15:57,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 23:15:57,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:57,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:57,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:57,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:57,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:15:57,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:15:57,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:15:58,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:15:58,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:15:59,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:15:59,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 23:15:59,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 23:15:59,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:02,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:02,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:02,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:03,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:16:03,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:16:03,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:03,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:03,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:03,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:03,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:16:03,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:16:03,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:08,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:08,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:08,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:08,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:16:08,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:16:08,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:10,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:10,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:10,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:11,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:16:11,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:16:11,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:12,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:12,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:12,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:12,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 23:16:12,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 23:16:12,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:12,941 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:16:12,959 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:16:13,043 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.889 +2025-10-01 23:16:13,043 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 23:16:13,043 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 23:16:13,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:13,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:13,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:13,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:16:13,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:16:13,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:15,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:15,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:15,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:15,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 23:16:15,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 23:16:15,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:16,295 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:16:16,323 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:16:16,404 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.290 +2025-10-01 23:16:16,404 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 23:16:16,404 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 23:16:18,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:18,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:18,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:18,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:16:18,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:16:18,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:19,505 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:16:19,531 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:16:19,608 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.929 +2025-10-01 23:16:19,608 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:16:19,608 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:16:21,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:21,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:21,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:21,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:16:21,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:16:21,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:21,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:21,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:21,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:22,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:16:22,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:16:22,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:25,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:25,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:25,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:25,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:16:25,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:16:25,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:28,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:28,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:28,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:28,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:16:28,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:16:28,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:30,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:30,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:30,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:30,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:16:30,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:16:30,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:34,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:34,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:34,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:34,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:16:34,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:16:34,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:36,744 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:16:36,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:16:36,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:16:37,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-01 23:16:37,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-01 23:16:37,034 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:16:37,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:37,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:37,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:37,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:16:37,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:16:37,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:41,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:41,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:41,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:41,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 23:16:41,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 23:16:41,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:45,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:45,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:45,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:45,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:16:45,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:16:45,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:45,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:45,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:46,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:46,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:16:46,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:16:46,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:47,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:47,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:47,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:47,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:16:47,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:16:47,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:16:57,708 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:16:57,755 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:16:57,840 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.124 +2025-10-01 23:16:57,840 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 23:16:57,840 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 23:16:59,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:16:59,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:16:59,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:16:59,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:16:59,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:16:59,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:06,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:06,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:06,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:06,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:17:06,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:17:06,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:14,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:14,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:14,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:15,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:17:15,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:17:15,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:18,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:18,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:18,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:18,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 23:17:18,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 23:17:18,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:21,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:21,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:22,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:22,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:17:22,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:17:22,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:25,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:25,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:25,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:25,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:17:25,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:17:25,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:27,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:27,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:27,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:27,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:17:27,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:17:27,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:29,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:29,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:29,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:29,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:17:29,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:17:29,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:29,805 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:17:29,830 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:17:29,904 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.406 +2025-10-01 23:17:29,904 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:17:29,905 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:17:33,814 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:17:33,835 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:17:33,910 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.129 +2025-10-01 23:17:33,911 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:17:33,911 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:17:35,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:35,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:35,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:35,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:17:35,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:17:35,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:36,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:36,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:36,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:36,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:17:36,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:17:36,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:37,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:37,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:37,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:37,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 23:17:37,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 23:17:37,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:38,422 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:17:38,450 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:17:38,527 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.247 +2025-10-01 23:17:38,527 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:17:38,527 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:17:42,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:42,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:42,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:42,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:17:42,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:17:42,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:45,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:45,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:45,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:45,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:17:45,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:17:45,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:46,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:46,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:46,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:46,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:17:46,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:17:46,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:49,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:49,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:49,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:49,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 23:17:49,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 23:17:49,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:49,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:49,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:49,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:49,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:17:49,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:17:49,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:53,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:53,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:53,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:53,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:17:53,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:17:53,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:54,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:54,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:54,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:54,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:17:54,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:17:54,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:56,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:56,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:56,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:57,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 23:17:57,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 23:17:57,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:58,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:58,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:59,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:59,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:17:59,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:17:59,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:17:59,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:17:59,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:17:59,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:17:59,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 23:17:59,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 23:17:59,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:05,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:05,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:05,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:05,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:18:05,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:18:05,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:05,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:05,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:05,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:05,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:18:05,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:18:05,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:06,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:06,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:06,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:06,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:18:06,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:18:06,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:10,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:10,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:10,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:10,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:18:10,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:18:10,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:11,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:11,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:11,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:11,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:18:11,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:18:11,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:14,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:14,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:14,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:14,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:18:14,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:18:14,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:16,023 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:18:16,049 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:18:16,131 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.186 +2025-10-01 23:18:16,131 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:18:16,131 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 23:18:19,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:19,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:19,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:20,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:18:20,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:18:20,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:23,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:23,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:23,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:23,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 23:18:23,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 23:18:23,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:24,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:24,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:24,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:24,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:18:24,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:18:24,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:32,624 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:18:32,654 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:18:32,741 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.067 +2025-10-01 23:18:32,742 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 23:18:32,742 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 23:18:33,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:33,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:33,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:33,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:18:33,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:18:33,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:36,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:36,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:36,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:36,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:18:36,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:18:36,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:36,663 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:18:36,686 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:18:36,770 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.148 +2025-10-01 23:18:36,771 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 23:18:36,771 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 23:18:41,281 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:18:41,311 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:18:41,393 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.329 +2025-10-01 23:18:41,393 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:18:41,393 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 23:18:50,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:50,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:50,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:50,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:18:50,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:18:50,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:50,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:50,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:50,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:50,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:18:50,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:18:50,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:56,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:56,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:56,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:56,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:18:56,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:18:56,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:57,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:57,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:57,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:57,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:18:57,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:18:57,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:18:58,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:18:58,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:18:58,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:18:58,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:18:58,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:18:58,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:19:04,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:19:04,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:19:04,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:19:04,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:19:04,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:19:04,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:19:04,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:19:04,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:19:04,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:19:04,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:19:04,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:19:04,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:19:14,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:19:14,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:19:14,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:19:14,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:19:14,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:19:14,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:19:22,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:19:22,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:19:22,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:19:22,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:19:22,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:19:22,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:19:30,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:19:30,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:19:30,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:19:30,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 23:19:30,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 23:19:30,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:19:34,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:19:34,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:19:34,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:19:34,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:19:34,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:19:34,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:19:39,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:19:39,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:19:39,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:19:40,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:19:40,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:19:40,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:19:44,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:19:44,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:19:44,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:19:44,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:19:44,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:19:44,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:19:48,204 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:19:48,230 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:19:48,315 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.865 +2025-10-01 23:19:48,315 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 23:19:48,315 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 23:19:53,488 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:19:53,504 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:19:53,582 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.335 +2025-10-01 23:19:53,582 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:19:53,582 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:19:53,796 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:19:53,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:19:53,892 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.837 +2025-10-01 23:19:53,893 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:19:53,893 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:19:57,943 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:19:57,969 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:19:58,047 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.581 +2025-10-01 23:19:58,048 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:19:58,048 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:20:18,337 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:20:18,364 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(959, 959, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:20:18,458 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=174.932 +2025-10-01 23:20:18,458 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 23:20:18,458 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 23:20:26,787 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:20:26,811 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:20:26,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.057 +2025-10-01 23:20:26,885 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:20:26,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:20:30,528 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:20:30,561 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:20:30,638 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.675 +2025-10-01 23:20:30,638 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:20:30,638 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:20:31,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:20:31,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:20:31,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:20:31,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:20:31,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:20:31,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:20:34,074 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:20:34,101 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:20:34,187 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.885 +2025-10-01 23:20:34,187 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 23:20:34,187 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 23:20:39,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:20:39,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:20:39,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:20:39,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:20:39,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:20:39,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:20:40,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:20:40,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:20:40,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:20:41,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:20:41,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:20:41,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:20:41,084 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:20:41,113 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:20:41,192 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.515 +2025-10-01 23:20:41,193 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:20:41,193 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:20:45,880 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:20:45,930 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:20:46,010 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.504 +2025-10-01 23:20:46,011 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 23:20:46,011 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 23:20:46,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:20:46,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:20:46,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:20:46,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:20:46,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:20:46,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:20:50,396 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:20:50,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:20:50,508 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.155 +2025-10-01 23:20:50,508 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 23:20:50,508 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 23:20:52,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:20:52,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:20:52,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:20:52,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 23:20:52,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 23:20:52,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:20:57,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:20:57,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:20:57,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:20:57,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 23:20:57,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 23:20:57,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:21:11,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:21:11,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:21:11,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:21:11,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:21:11,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:21:11,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:21:16,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:21:16,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:21:16,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:21:16,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:21:16,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:21:16,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:21:22,524 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:21:22,544 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:21:22,618 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.300 +2025-10-01 23:21:22,619 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:21:22,619 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:21:28,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:21:28,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:21:28,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:21:28,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:21:28,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:21:28,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:21:31,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:21:31,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:21:31,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:21:31,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:21:31,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:21:31,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:21:44,400 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:21:44,434 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:21:44,516 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.966 +2025-10-01 23:21:44,516 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:21:44,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 23:21:48,149 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:21:48,173 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:21:48,248 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.379 +2025-10-01 23:21:48,249 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:21:48,249 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:21:51,714 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:21:51,747 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:21:51,823 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.712 +2025-10-01 23:21:51,823 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:21:51,823 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:21:58,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:21:58,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:21:58,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:21:58,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 23:21:58,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 23:21:58,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:21:59,019 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:21:59,057 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:21:59,139 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.519 +2025-10-01 23:21:59,140 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 23:21:59,140 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 23:21:59,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:21:59,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:21:59,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:21:59,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 23:21:59,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 23:21:59,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:22:05,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:22:05,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:22:05,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:22:05,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 23:22:05,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 23:22:05,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:22:06,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:22:06,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:22:06,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:22:06,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:22:06,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:22:06,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:22:11,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:22:11,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:22:11,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:22:11,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:22:11,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:22:11,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:22:14,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:22:14,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:22:14,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:22:15,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:22:15,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:22:15,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:22:48,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:22:48,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:22:48,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:22:49,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 23:22:49,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 23:22:49,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:22:50,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:22:50,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:22:50,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:22:51,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:22:51,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:22:51,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:22:55,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:22:55,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:22:55,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:22:55,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:22:55,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:22:55,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:22:58,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:22:58,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:22:58,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:22:58,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:22:58,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:22:58,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:23:04,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:23:04,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:23:04,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:23:04,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:23:04,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:23:04,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:23:06,034 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:23:06,060 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:23:06,139 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.355 +2025-10-01 23:23:06,139 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:23:06,139 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:23:08,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:23:08,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:23:08,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:23:08,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:23:08,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:23:08,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:23:10,024 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:23:10,054 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:23:10,135 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.242 +2025-10-01 23:23:10,135 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 23:23:10,135 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 23:23:13,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:23:13,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:23:13,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:23:13,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:23:13,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:23:13,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:23:13,781 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:23:13,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:23:13,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.421 +2025-10-01 23:23:13,885 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:23:13,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:23:18,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:23:18,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:23:18,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:23:18,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:23:18,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:23:18,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:24:34,653 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:24:34,681 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:24:34,771 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=200.992 +2025-10-01 23:24:34,772 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 23:24:34,772 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 23:24:37,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:24:37,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:24:37,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:24:37,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:24:37,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:24:37,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:24:41,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:24:41,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:24:41,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:24:41,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:24:41,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:24:41,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:24:42,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:24:42,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:24:42,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:24:42,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:24:42,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:24:42,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:24:46,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:24:46,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:24:46,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:24:46,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:24:46,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:24:46,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:24:49,703 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:24:49,719 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:24:49,798 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.253 +2025-10-01 23:24:49,798 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:24:49,798 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:24:50,552 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:24:50,572 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:24:50,646 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.789 +2025-10-01 23:24:50,646 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:24:50,646 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:24:53,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:24:53,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:24:53,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:24:53,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:24:53,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:24:53,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:24:54,052 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:24:54,066 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:24:54,137 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.123 +2025-10-01 23:24:54,137 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-01 23:24:54,137 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-01 23:24:54,403 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:24:54,427 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:24:54,501 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.382 +2025-10-01 23:24:54,501 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:24:54,501 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:24:55,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:24:55,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:24:55,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:24:56,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:24:56,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:24:56,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:24:57,521 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:24:57,545 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:24:57,620 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=197.734 +2025-10-01 23:24:57,621 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:24:57,621 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:24:59,200 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:24:59,228 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:24:59,304 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.701 +2025-10-01 23:24:59,304 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:24:59,304 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:25:04,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:04,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:04,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:04,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:25:04,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:25:04,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:05,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:05,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:05,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:05,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:25:05,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:25:05,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:12,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:12,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:12,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:13,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:25:13,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:25:13,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:15,608 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:25:15,635 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:25:15,713 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.681 +2025-10-01 23:25:15,713 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:25:15,713 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:25:16,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:16,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:16,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:16,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:25:16,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:25:16,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:19,281 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:25:19,309 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:25:19,387 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.845 +2025-10-01 23:25:19,388 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:25:19,388 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:25:20,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:20,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:20,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:20,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:25:20,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:25:20,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:23,982 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:25:24,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:25:24,105 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.213 +2025-10-01 23:25:24,105 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 23:25:24,105 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 23:25:28,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:28,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:28,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:28,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:25:28,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:25:28,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:28,885 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:25:28,908 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:25:28,982 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.346 +2025-10-01 23:25:28,983 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:25:28,983 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:25:29,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:29,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:29,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:29,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:25:29,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:25:29,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:32,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:32,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:32,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:32,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:25:32,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:25:32,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:35,931 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:25:35,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:25:35,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:25:36,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 23:25:36,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 23:25:36,233 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:25:40,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:40,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:40,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:40,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:25:40,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:25:40,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:41,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:41,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:41,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:41,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:25:41,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:25:41,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:42,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:42,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:42,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:42,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 23:25:42,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 23:25:42,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:43,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:43,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:43,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:43,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:25:43,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:25:43,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:44,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:44,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:44,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:44,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 23:25:44,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 23:25:44,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:45,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:45,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:45,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:45,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 23:25:45,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 23:25:45,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:46,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:46,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:46,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:46,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:25:46,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:25:46,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:48,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:48,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:48,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:48,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 23:25:48,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 23:25:48,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:51,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:51,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:51,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:51,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 23:25:51,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 23:25:51,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:51,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:51,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:51,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:51,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:25:51,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:25:51,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:54,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:54,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:54,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:54,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:25:54,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:25:54,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:55,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:55,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:55,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:55,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:25:55,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:25:55,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:56,327 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:25:56,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:25:56,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:25:56,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-01 23:25:56,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-01 23:25:56,606 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:25:56,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:56,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:56,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:57,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:25:57,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:25:57,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:25:58,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:25:58,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:25:58,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:25:58,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:25:58,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:25:58,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:00,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:00,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:00,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:00,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:26:00,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:26:00,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:02,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:02,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:02,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:02,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:26:02,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:26:02,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:03,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:03,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:03,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:03,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:26:03,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:26:03,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:04,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:04,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:04,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:04,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 23:26:04,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 23:26:04,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:06,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:06,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:06,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:06,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.124s +2025-10-01 23:26:06,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.124s (avg: 0.124s/image) +2025-10-01 23:26:06,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:07,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:07,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:07,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:08,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:26:08,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:26:08,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:08,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:08,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:08,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:08,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 23:26:08,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 23:26:08,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:10,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:10,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:10,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:10,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 23:26:10,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 23:26:10,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:11,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:11,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:11,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:12,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:26:12,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:26:12,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:12,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:12,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:12,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:12,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 23:26:12,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 23:26:12,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:14,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:14,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:14,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:14,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:26:14,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:26:14,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:16,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:16,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:16,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:16,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:26:16,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:26:16,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:16,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:16,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:16,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:16,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 23:26:16,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 23:26:16,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:18,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:18,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:18,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:18,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 23:26:18,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 23:26:18,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:18,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:18,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:18,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:19,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:26:19,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:26:19,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:19,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:19,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:19,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:19,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 23:26:19,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 23:26:19,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:20,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:20,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:20,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:20,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:26:20,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:26:20,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:23,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:23,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:23,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:23,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:26:23,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:26:23,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:23,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:23,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:23,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:24,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:26:24,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:26:24,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:25,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:25,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:25,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:25,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-01 23:26:25,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-01 23:26:25,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:28,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:28,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:28,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:28,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 23:26:28,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 23:26:28,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:31,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:31,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:31,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:31,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:26:31,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:26:31,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:32,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:32,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:32,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:32,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:26:32,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:26:32,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:36,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:36,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:36,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:36,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 23:26:36,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 23:26:36,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:37,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:37,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:37,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:37,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:26:37,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:26:37,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:40,193 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:26:40,217 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:26:40,297 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.818 +2025-10-01 23:26:40,297 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 23:26:40,297 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 23:26:42,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:42,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:42,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:42,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:26:42,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:26:42,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:42,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:42,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:42,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:42,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:26:42,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:26:42,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:43,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:43,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:43,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:44,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:26:44,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:26:44,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:44,144 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:26:44,159 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:26:44,232 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.688 +2025-10-01 23:26:44,232 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-01 23:26:44,232 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-01 23:26:47,457 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:26:47,484 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:26:47,562 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.241 +2025-10-01 23:26:47,562 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:26:47,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:26:48,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:48,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:48,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:48,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 23:26:48,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 23:26:48,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:52,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:52,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:53,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:53,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:26:53,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:26:53,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:53,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:53,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:53,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:54,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 23:26:54,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 23:26:54,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:26:54,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:26:54,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:26:54,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:26:55,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:26:55,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:26:55,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:00,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:00,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:00,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:00,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 23:27:00,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 23:27:00,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:01,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:01,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:01,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:01,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:27:01,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:27:01,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:12,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:12,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:12,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:12,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 23:27:12,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 23:27:12,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:13,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:13,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:13,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:13,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:27:13,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:27:13,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:24,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:24,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:24,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:24,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 23:27:24,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 23:27:24,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:27,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:27,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:27,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:28,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:27:28,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:27:28,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:29,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:29,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:29,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:29,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 23:27:29,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 23:27:29,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:32,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:27:32,560 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:27:32,643 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.924 +2025-10-01 23:27:32,643 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 23:27:32,643 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 23:27:33,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:33,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:33,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:34,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:27:34,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:27:34,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:36,495 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:27:36,516 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:27:36,591 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.240 +2025-10-01 23:27:36,591 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:27:36,591 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:27:39,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:39,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:39,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:39,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:27:39,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:27:39,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:42,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:42,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:42,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:42,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.204s +2025-10-01 23:27:42,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image) +2025-10-01 23:27:42,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:42,918 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:27:42,954 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:27:43,033 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.604 +2025-10-01 23:27:43,033 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 23:27:43,033 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:27:43,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:43,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:43,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:43,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:27:43,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:27:43,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:50,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:50,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:50,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:50,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:27:50,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:27:50,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:54,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:54,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:54,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:54,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:27:54,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:27:54,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:54,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:54,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:54,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:54,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:27:54,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:27:54,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:57,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:27:57,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:27:57,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:27:57,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:27:57,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:27:57,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:27:57,991 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:27:58,017 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:27:58,093 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.340 +2025-10-01 23:27:58,094 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:27:58,094 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:28:02,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:02,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:02,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:02,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:28:02,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:28:02,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:05,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:05,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:05,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:05,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-01 23:28:05,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-01 23:28:05,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:05,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:05,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:05,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:06,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:28:06,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:28:06,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:08,509 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:28:08,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:28:08,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:28:08,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 23:28:08,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-01 23:28:08,781 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:28:09,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:09,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:09,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:09,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:28:09,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:28:09,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:12,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:12,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:12,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:12,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 23:28:12,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 23:28:12,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:16,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:16,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:16,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:16,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:28:16,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:28:16,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:17,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:17,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:17,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:17,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:28:17,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:28:17,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:18,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:18,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:18,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:18,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:28:18,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:28:18,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:20,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:20,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:20,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:20,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:28:20,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:28:20,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:22,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:22,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:22,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:22,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:28:22,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:28:22,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:23,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:23,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:23,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:23,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:28:23,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:28:23,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:24,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:24,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:24,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:24,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:28:24,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:28:24,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:28,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:28,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:28,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:28,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 23:28:28,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 23:28:28,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:32,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:32,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:32,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:33,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 23:28:33,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 23:28:33,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:35,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:35,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:35,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:35,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-01 23:28:35,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-01 23:28:35,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:36,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:36,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:36,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:36,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:28:36,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:28:36,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:39,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:39,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:39,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:39,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:28:39,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:28:39,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:46,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:46,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:46,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:46,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:28:46,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:28:46,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:46,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:46,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:47,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:47,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:28:47,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:28:47,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:51,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:51,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:51,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:51,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:28:51,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:28:51,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:52,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:52,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:52,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:52,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:28:52,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:28:52,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:57,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:57,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:57,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:57,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:28:57,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:28:57,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:28:59,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:28:59,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:28:59,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:28:59,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:28:59,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:28:59,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:03,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:03,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:03,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:03,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:29:03,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:29:03,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:04,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:04,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:04,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:04,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:29:04,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:29:04,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:06,476 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:29:06,505 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:29:06,600 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.326 +2025-10-01 23:29:06,600 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 23:29:06,600 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-01 23:29:08,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:08,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:08,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:08,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:29:08,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:29:08,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:08,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:08,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:08,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:08,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:29:08,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:29:08,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:10,534 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:29:10,577 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:29:10,663 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=191.205 +2025-10-01 23:29:10,663 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 23:29:10,663 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 23:29:12,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:12,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:12,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:12,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:29:12,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:29:12,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:14,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:14,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:14,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:14,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:29:14,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:29:14,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:15,814 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:29:15,841 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:29:15,927 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.356 +2025-10-01 23:29:15,928 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 23:29:15,928 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 23:29:17,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:17,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:17,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:17,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:29:17,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:29:17,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:18,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:18,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:18,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:19,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:29:19,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:29:19,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:23,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:23,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:23,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:23,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:29:23,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:29:23,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:28,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:28,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:28,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:28,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:29:28,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:29:28,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:30,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:30,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:30,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:30,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:29:30,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:29:30,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:33,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:33,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:33,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:34,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:29:34,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:29:34,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:34,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:34,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:34,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:35,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:29:35,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:29:35,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:45,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:45,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:45,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:45,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:29:45,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:29:45,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:49,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:49,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:49,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:49,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:29:49,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:29:49,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:49,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:49,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:49,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:49,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:29:49,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:29:49,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:51,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:51,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:51,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:52,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:29:52,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:29:52,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:54,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:29:54,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:29:54,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:29:54,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:29:54,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:29:54,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:29:57,552 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:29:57,589 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:29:57,676 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.117 +2025-10-01 23:29:57,676 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 23:29:57,676 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 23:30:00,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:00,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:00,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:00,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:30:00,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:30:00,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:01,742 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:30:01,759 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:30:01,830 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.559 +2025-10-01 23:30:01,831 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 23:30:01,831 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 23:30:05,293 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:30:05,318 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:30:05,393 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.969 +2025-10-01 23:30:05,394 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:30:05,394 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:30:11,793 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:30:11,829 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:30:11,918 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.159 +2025-10-01 23:30:11,919 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 23:30:11,919 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 23:30:18,480 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:30:18,509 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:30:18,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.759 +2025-10-01 23:30:18,587 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:30:18,587 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:30:21,372 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:30:21,395 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:30:21,468 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.516 +2025-10-01 23:30:21,469 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:30:21,469 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:30:23,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:23,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:23,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:24,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:30:24,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:30:24,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:24,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:24,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:24,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:24,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:30:24,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:30:24,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:25,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:25,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:25,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:25,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:30:25,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:30:25,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:26,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:26,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:26,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:26,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:30:26,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:30:26,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:29,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:29,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:29,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:30,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:30:30,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:30:30,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:30,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:30,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:30,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:30,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 23:30:30,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 23:30:30,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:33,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:33,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:33,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:33,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:30:33,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:30:33,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:38,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:38,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:38,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:38,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:30:38,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:30:38,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:40,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:40,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:40,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:40,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:30:40,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:30:40,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:41,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:41,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:41,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:41,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:30:41,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:30:41,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:44,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:44,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:44,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:45,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:30:45,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:30:45,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:45,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:45,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:45,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:46,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:30:46,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:30:46,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:48,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:48,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:48,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:48,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:30:48,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:30:48,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:52,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:52,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:52,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:52,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:30:52,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:30:52,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:54,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:54,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:54,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:54,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:30:54,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:30:54,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:56,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:56,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:56,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:56,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 23:30:56,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 23:30:56,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:30:59,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:30:59,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:30:59,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:30:59,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:30:59,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:30:59,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:00,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:00,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:00,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:00,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:31:00,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:31:00,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:01,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:01,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:01,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:01,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:31:01,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:31:01,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:03,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:03,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:03,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:03,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:31:03,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:31:03,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:06,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:06,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:06,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:06,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:31:06,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:31:06,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:07,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:07,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:07,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:07,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:31:07,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:31:07,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:08,315 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:31:08,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:31:08,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:31:08,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-01 23:31:08,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-01 23:31:08,610 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:31:10,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:10,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:10,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:11,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:31:11,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:31:11,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:12,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:12,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:12,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:12,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:31:12,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:31:12,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:15,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:15,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:15,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:16,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:31:16,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:31:16,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:18,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:18,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:18,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:18,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:31:18,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:31:18,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:18,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:18,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:18,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:18,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:31:18,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:31:18,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:19,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:19,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:19,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:19,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 23:31:19,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 23:31:19,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:26,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:26,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:26,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:26,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 23:31:26,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 23:31:26,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:26,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:26,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:26,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:26,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:31:26,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:31:26,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:30,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:30,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:30,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:30,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:31:30,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:31:30,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:31,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:31,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:31,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:31,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:31:31,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:31:31,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:32,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:32,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:32,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:32,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:31:32,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:31:32,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:32,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:32,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:32,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:32,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 23:31:32,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 23:31:32,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:36,985 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:31:36,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:31:37,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:31:37,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.331s +2025-10-01 23:31:37,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.331s (avg: 0.166s/image) +2025-10-01 23:31:37,317 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:31:38,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:38,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:38,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:38,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:31:38,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:31:38,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:42,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:42,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:42,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:42,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:31:42,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:31:42,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:42,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:42,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:42,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:42,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:31:42,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:31:42,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:43,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:43,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:43,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:43,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:31:43,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:31:43,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:45,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:45,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:45,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:45,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:31:45,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:31:45,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:47,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:47,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:47,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:48,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:31:48,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:31:48,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:49,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:49,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:49,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:49,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:31:49,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:31:49,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:52,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:52,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:52,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:52,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:31:52,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:31:52,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:53,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:53,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:53,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:53,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 23:31:53,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 23:31:53,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:31:57,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:31:57,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:31:57,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:31:57,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 23:31:57,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 23:31:57,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:32:00,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:32:00,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:32:00,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:32:00,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:32:00,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:32:00,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:32:03,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:32:03,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:32:03,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:32:04,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-01 23:32:04,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-01 23:32:04,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:32:04,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:32:04,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:32:04,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:32:04,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:32:04,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:32:04,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:32:09,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:32:09,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:32:09,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:32:09,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:32:09,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:32:09,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:32:11,361 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:32:11,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:32:11,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:32:11,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 23:32:11,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 23:32:11,647 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:32:17,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:32:17,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:32:17,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:32:17,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:32:17,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:32:17,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:32:28,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:32:28,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:32:28,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:32:28,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:32:28,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:32:28,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:32:36,729 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:32:36,750 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(742, 742, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:32:36,827 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.980 +2025-10-01 23:32:36,827 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:32:36,827 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:32:37,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:32:37,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:32:37,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:32:37,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:32:37,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:32:37,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:32:41,665 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:32:41,685 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(742, 742, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:32:41,756 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.738 +2025-10-01 23:32:41,757 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-01 23:32:41,757 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-01 23:32:45,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:32:45,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:32:45,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:32:46,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:32:46,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:32:46,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:32:46,902 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:32:46,929 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(792, 792, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:32:47,003 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.286 +2025-10-01 23:32:47,003 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:32:47,003 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:32:50,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:32:50,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:32:50,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:32:50,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:32:50,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:32:50,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:32:53,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:32:53,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:32:53,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:32:54,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:32:54,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:32:54,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:32:57,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:32:57,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:32:57,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:32:57,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:32:57,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:32:57,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:32:58,189 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:32:58,213 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:32:58,290 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.038 +2025-10-01 23:32:58,290 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:32:58,290 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:33:02,423 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:33:02,447 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:33:02,524 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.876 +2025-10-01 23:33:02,524 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:33:02,524 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:33:03,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:03,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:03,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:03,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:33:03,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:33:03,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:06,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:06,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:06,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:06,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:33:06,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:33:06,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:08,203 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:33:08,248 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:33:08,328 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.490 +2025-10-01 23:33:08,328 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 23:33:08,328 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:33:12,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:12,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:12,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:12,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:33:12,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:33:12,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:14,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:14,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:14,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:15,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 23:33:15,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 23:33:15,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:15,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:15,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:15,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:15,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:33:15,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:33:15,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:21,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:21,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:21,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:21,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:33:21,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:33:21,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:22,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:22,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:22,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:22,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:33:22,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:33:22,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:23,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:23,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:23,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:23,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:33:23,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:33:23,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:27,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:27,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:27,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:28,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:33:28,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:33:28,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:30,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:30,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:30,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:30,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:33:30,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:33:30,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:30,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:30,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:30,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:30,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:33:30,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:33:30,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:33,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:33,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:34,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:34,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:33:34,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:33:34,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:37,182 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:33:37,205 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:33:37,286 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.076 +2025-10-01 23:33:37,286 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 23:33:37,286 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 23:33:38,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:38,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:38,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:38,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:33:38,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:33:38,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:39,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:39,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:39,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:39,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:33:39,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:33:39,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:42,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:42,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:42,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:42,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:33:42,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:33:42,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:44,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:44,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:44,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:44,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:33:44,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:33:44,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:46,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:46,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:46,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:46,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-01 23:33:46,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-01 23:33:46,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:49,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:49,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:49,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:49,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:33:49,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:33:49,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:49,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:49,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:49,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:50,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:33:50,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:33:50,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:54,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:54,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:54,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:54,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:33:54,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:33:54,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:56,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:56,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:56,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:56,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:33:56,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:33:56,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:33:59,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:33:59,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:33:59,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:33:59,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:33:59,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:33:59,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:01,052 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:34:01,072 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:34:01,152 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.401 +2025-10-01 23:34:01,153 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 23:34:01,153 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 23:34:01,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:01,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:01,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:01,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:34:01,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:34:01,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:04,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:04,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:04,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:04,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:34:04,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:34:04,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:13,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:13,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:13,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:14,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:34:14,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:34:14,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:14,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:14,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:14,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:14,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 23:34:14,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 23:34:14,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:23,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:23,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:23,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:23,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:34:23,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:34:23,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:27,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:27,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:27,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:27,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:34:27,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:34:27,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:30,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:30,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:30,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:30,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:34:30,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:34:30,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:30,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:30,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:31,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:31,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:34:31,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:34:31,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:34,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:34,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:34,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:34,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:34:34,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:34:34,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:38,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:38,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:38,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:38,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:34:38,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:34:38,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:39,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:39,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:39,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:39,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:34:39,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:34:39,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:39,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:39,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:39,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:40,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:34:40,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:34:40,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:42,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:42,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:42,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:42,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:34:42,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:34:42,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:44,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:44,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:44,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:44,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:34:44,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:34:44,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:45,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:45,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:45,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:46,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 23:34:46,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 23:34:46,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:49,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:49,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:49,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:49,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:34:49,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:34:49,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:49,575 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:34:49,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:34:49,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:34:49,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-01 23:34:49,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-01 23:34:49,864 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:34:52,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:52,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:52,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:52,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:34:52,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:34:52,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:54,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:54,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:54,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:55,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:34:55,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:34:55,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:55,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:55,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:55,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:55,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:34:55,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:34:55,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:56,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:56,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:56,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:56,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:34:56,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:34:56,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:34:59,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:34:59,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:34:59,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:34:59,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:34:59,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:34:59,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:00,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:00,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:00,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:01,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:35:01,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:35:01,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:04,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:04,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:04,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:04,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:35:04,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:35:04,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:07,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:07,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:07,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:07,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 23:35:07,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 23:35:07,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:07,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:07,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:07,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:08,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 23:35:08,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 23:35:08,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:10,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:10,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:10,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:11,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:35:11,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:35:11,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:13,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:13,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:13,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:13,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:35:13,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:35:13,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:17,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:17,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:17,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:17,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:35:17,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:35:17,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:18,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:18,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:18,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:18,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:35:18,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:35:18,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:21,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:21,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:21,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:21,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:35:21,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:35:21,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:21,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:21,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:21,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:21,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:35:21,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:35:21,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:27,571 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:35:27,591 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:35:27,671 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.811 +2025-10-01 23:35:27,671 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 23:35:27,671 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 23:35:30,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:30,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:31,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:31,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 23:35:31,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 23:35:31,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:34,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:34,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:34,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:34,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:35:34,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:35:34,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:39,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:39,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:39,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:39,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:35:39,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:35:39,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:42,935 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:35:42,978 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:35:43,072 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.543 +2025-10-01 23:35:43,072 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-01 23:35:43,072 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 23:35:43,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:43,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:43,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:43,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:35:43,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:35:43,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:47,084 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:35:47,106 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:35:47,182 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.383 +2025-10-01 23:35:47,183 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:35:47,183 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:35:48,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:48,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:48,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:48,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:35:48,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:35:48,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:50,648 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:35:50,672 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:35:50,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.245 +2025-10-01 23:35:50,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:35:50,748 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:35:54,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:54,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:54,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:54,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:35:54,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:35:54,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:55,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:55,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:56,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:56,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:35:56,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:35:56,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:35:58,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:35:58,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:35:58,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:35:58,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 23:35:58,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 23:35:58,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:36:01,711 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:36:01,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:36:01,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:36:02,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 23:36:02,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 23:36:02,013 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:36:02,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:36:02,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:36:02,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:36:02,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:36:02,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:36:02,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:36:05,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:36:05,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:36:05,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:36:06,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:36:06,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:36:06,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:36:09,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:36:09,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:36:09,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:36:09,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:36:09,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:36:09,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:36:15,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:36:15,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:36:15,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:36:15,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:36:15,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:36:15,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:36:16,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:36:16,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:36:16,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:36:17,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:36:17,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:36:17,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:36:26,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:36:26,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:36:26,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:36:26,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:36:26,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:36:26,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:36:35,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:36:35,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:36:35,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:36:35,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 23:36:35,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 23:36:35,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:36:37,317 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:36:37,343 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:36:37,424 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.587 +2025-10-01 23:36:37,424 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:36:37,425 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 23:36:42,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:36:42,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:36:42,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:36:43,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:36:43,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:36:43,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:36:52,619 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:36:52,640 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:36:52,714 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.281 +2025-10-01 23:36:52,714 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:36:52,714 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:36:58,174 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:36:58,206 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:36:58,284 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.733 +2025-10-01 23:36:58,284 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:36:58,285 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:37:03,087 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:37:03,113 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:37:03,189 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.251 +2025-10-01 23:37:03,189 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:37:03,189 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:37:05,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:05,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:05,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:06,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:37:06,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:37:06,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:06,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:06,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:06,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:07,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:37:07,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:37:07,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:13,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:13,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:13,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:13,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:37:13,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:37:13,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:15,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:15,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:15,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:15,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:37:15,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:37:15,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:16,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:16,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:16,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:16,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:37:16,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:37:16,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:19,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:19,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:19,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:19,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:37:19,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:37:19,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:21,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:21,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:21,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:21,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:37:21,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:37:21,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:21,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:21,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:21,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:21,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:37:21,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:37:21,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:22,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:22,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:22,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:22,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:37:22,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:37:22,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:22,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:22,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:22,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:22,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 23:37:22,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 23:37:22,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:28,885 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:37:28,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:37:28,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:37:29,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-01 23:37:29,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-01 23:37:29,179 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:37:30,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:30,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:30,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:30,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:37:30,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:37:30,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:35,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:35,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:35,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:35,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:37:35,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:37:35,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:40,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:40,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:40,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:40,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:37:40,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:37:40,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:42,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:42,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:42,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:43,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:37:43,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:37:43,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:47,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:47,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:47,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:48,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:37:48,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:37:48,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:48,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:48,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:48,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:48,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:37:48,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:37:48,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:48,690 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:37:48,722 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:37:48,808 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.899 +2025-10-01 23:37:48,808 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 23:37:48,808 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 23:37:52,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:52,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:52,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:52,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:37:52,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:37:52,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:53,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:53,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:54,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:54,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:37:54,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:37:54,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:57,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:57,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:57,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:57,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:37:57,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:37:57,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:37:58,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:37:58,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:37:58,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:37:58,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:37:58,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:37:58,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:02,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:02,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:02,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:02,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 23:38:02,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 23:38:02,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:03,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:03,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:03,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:03,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:38:03,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:38:03,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:03,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:03,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:03,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:04,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:38:04,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:38:04,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:04,331 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:38:04,358 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:38:04,447 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.648 +2025-10-01 23:38:04,447 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 23:38:04,447 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 23:38:08,652 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:38:08,673 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:38:08,752 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.849 +2025-10-01 23:38:08,752 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:38:08,752 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:38:09,583 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:38:09,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:38:09,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:38:09,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-01 23:38:09,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-01 23:38:09,891 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:38:13,440 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:38:13,467 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:38:13,543 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=172.374 +2025-10-01 23:38:13,544 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:38:13,544 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:38:13,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:13,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:13,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:14,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:38:14,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:38:14,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:15,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:15,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:15,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:15,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:38:15,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:38:15,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:19,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:19,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:19,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:19,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:38:19,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:38:19,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:21,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:21,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:21,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:21,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:38:21,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:38:21,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:22,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:22,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:22,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:22,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:38:22,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:38:22,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:24,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:24,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:24,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:24,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:38:24,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:38:24,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:26,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:26,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:26,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:26,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 23:38:26,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 23:38:26,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:28,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:28,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:28,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:28,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:38:28,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:38:28,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:34,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:34,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:34,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:35,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:38:35,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:38:35,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:39,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:39,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:39,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:39,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 23:38:39,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 23:38:39,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:45,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:45,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:45,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:45,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:38:45,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:38:45,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:51,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:51,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:51,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:51,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:38:51,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:38:51,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:38:55,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:38:55,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:38:55,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:38:55,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:38:55,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:38:55,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:39:00,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:39:00,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:39:00,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:39:01,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:39:01,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:39:01,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:39:02,384 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:39:02,405 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:39:02,483 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.628 +2025-10-01 23:39:02,483 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:39:02,483 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:39:06,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:39:06,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:39:06,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:39:06,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:39:06,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:39:06,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:39:13,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:39:13,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:39:13,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:39:13,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:39:13,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:39:13,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:39:20,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:39:20,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:39:20,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:39:20,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 23:39:20,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 23:39:20,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:39:21,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:39:21,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:39:21,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:39:21,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:39:21,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:39:21,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:39:26,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:39:26,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:39:26,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:39:26,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:39:26,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:39:26,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:39:30,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:39:30,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:39:30,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:39:30,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:39:30,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:39:30,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:39:31,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:39:31,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:39:31,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:39:32,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:39:32,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:39:32,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:39:48,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:39:48,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:39:48,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:39:48,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:39:48,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:39:48,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:39:52,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:39:52,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:39:52,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:39:53,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 23:39:53,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 23:39:53,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:39:59,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:39:59,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:39:59,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:39:59,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:39:59,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:39:59,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:40:03,516 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:40:03,550 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:40:03,632 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.368 +2025-10-01 23:40:03,633 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:40:03,633 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 23:40:04,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:40:04,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:40:04,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:40:04,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:40:04,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:40:04,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:40:07,880 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:40:07,915 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:40:07,997 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.428 +2025-10-01 23:40:07,997 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:40:07,998 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 23:40:08,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:40:08,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:40:09,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:40:09,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:40:09,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:40:09,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:40:12,062 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:40:12,102 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:40:12,183 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=164.401 +2025-10-01 23:40:12,184 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:40:12,184 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 23:40:17,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:40:17,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:40:17,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:40:17,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:40:17,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:40:17,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:40:24,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:40:24,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:40:24,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:40:24,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:40:24,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:40:24,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:40:25,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:40:25,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:40:25,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:40:25,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:40:25,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:40:25,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:40:27,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:40:27,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:40:27,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:40:27,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:40:27,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:40:27,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:40:29,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:40:29,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:40:29,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:40:29,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:40:29,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:40:29,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:40:34,948 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:40:34,977 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:40:35,060 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.185 +2025-10-01 23:40:35,060 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 23:40:35,060 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-01 23:40:37,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:40:37,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:40:37,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:40:38,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:40:38,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:40:38,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:40:41,581 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:40:41,616 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:40:41,700 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.421 +2025-10-01 23:40:41,700 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 23:40:41,700 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 23:40:43,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:40:43,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:40:43,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:40:44,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:40:44,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:40:44,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:40:45,848 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:40:45,877 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:40:45,963 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.053 +2025-10-01 23:40:45,964 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 23:40:45,964 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 23:40:50,178 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:40:50,212 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:40:50,295 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.273 +2025-10-01 23:40:50,295 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:40:50,295 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 23:40:55,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:40:55,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:40:55,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:40:55,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:40:55,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:40:55,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:18,184 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:41:18,205 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:41:18,292 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.887 +2025-10-01 23:41:18,293 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 23:41:18,293 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 23:41:18,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:18,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:18,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:19,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:41:19,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:41:19,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:22,135 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:41:22,165 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:41:22,243 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.050 +2025-10-01 23:41:22,243 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:41:22,244 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:41:23,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:23,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:23,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:23,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:41:23,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:41:23,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:25,587 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:41:25,610 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:41:25,685 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.240 +2025-10-01 23:41:25,685 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:41:25,685 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:41:28,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:28,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:28,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:28,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:41:28,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:41:28,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:34,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:34,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:34,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:34,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:41:34,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:41:34,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:36,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:36,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:36,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:36,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:41:36,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:41:36,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:38,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:38,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:38,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:38,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 23:41:38,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 23:41:38,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:40,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:40,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:40,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:40,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:41:40,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:41:40,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:42,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:42,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:42,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:42,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:41:42,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:41:42,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:42,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:42,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:42,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:42,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 23:41:42,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 23:41:42,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:46,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:46,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:46,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:46,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:41:46,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:41:46,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:46,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:46,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:46,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:46,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:41:46,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:41:46,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:50,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:50,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:50,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:50,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:41:50,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:41:50,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:50,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:51,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:51,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:51,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:41:51,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:41:51,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:51,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:51,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:52,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:52,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:41:52,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:41:52,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:56,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:56,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:56,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:56,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:41:56,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:41:56,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:41:58,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:41:58,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:41:58,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:41:58,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:41:58,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:41:58,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:42:00,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:42:00,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:42:01,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:42:01,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:42:01,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:42:01,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:42:01,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:42:01,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:42:01,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:42:01,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:42:01,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:42:01,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:42:05,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:42:05,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:42:05,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:42:05,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:42:05,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:42:05,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:42:05,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:42:05,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:42:05,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:42:05,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:42:05,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:42:05,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:42:10,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:42:10,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:42:10,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:42:10,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:42:10,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:42:10,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:42:12,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:42:12,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:42:13,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:42:13,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:42:13,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:42:13,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:42:15,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:42:15,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:42:15,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:42:15,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:42:15,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:42:15,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:42:19,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:42:19,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:42:19,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:42:20,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:42:20,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:42:20,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:42:24,430 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:42:24,454 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:42:24,530 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.780 +2025-10-01 23:42:24,530 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:42:24,530 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:42:31,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:42:31,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:42:32,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:42:32,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:42:32,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:42:32,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:42:47,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:42:47,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:42:47,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:42:47,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:42:47,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:42:47,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:42:49,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:42:49,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:42:49,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:42:49,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:42:49,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:42:49,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:00,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:00,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:00,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:00,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:43:00,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:43:00,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:11,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:11,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:11,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:12,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:43:12,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:43:12,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:18,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:19,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:19,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:19,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 23:43:19,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 23:43:19,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:22,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:22,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:22,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:22,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:43:22,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:43:22,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:24,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:24,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:24,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:25,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:43:25,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:43:25,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:26,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:26,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:26,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:26,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:43:26,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:43:26,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:30,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:30,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:30,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:30,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:43:30,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:43:30,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:30,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:30,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:30,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:31,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:43:31,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:43:31,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:33,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:33,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:33,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:33,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:43:33,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:43:33,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:36,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:36,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:36,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:36,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:43:36,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:43:36,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:37,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:37,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:37,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:37,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:43:37,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:43:37,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:42,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:42,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:42,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:42,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:43:42,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:43:42,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:43,214 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:43:43,236 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:43:43,311 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.938 +2025-10-01 23:43:43,312 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:43:43,312 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:43:43,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:43,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:43,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:43,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:43:43,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:43:43,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:47,330 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:43:47,359 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:43:47,434 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.104 +2025-10-01 23:43:47,434 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:43:47,434 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:43:47,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:47,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:47,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:48,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:43:48,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:43:48,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:52,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:52,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:52,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:52,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:43:52,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:43:52,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:54,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:54,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:54,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:54,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:43:54,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:43:54,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:43:56,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:43:56,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:43:56,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:43:57,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:43:57,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:43:57,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:04,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:04,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:04,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:04,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:44:04,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:44:04,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:15,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:15,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:15,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:15,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:44:15,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:44:15,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:16,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:16,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:16,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:16,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:44:16,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:44:16,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:24,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:24,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:24,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:24,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:44:24,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:44:24,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:25,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:25,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:25,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:25,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:44:25,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:44:25,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:30,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:30,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:30,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:30,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:44:30,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:44:30,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:36,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:36,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:36,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:36,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:44:36,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:44:36,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:38,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:38,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:38,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:38,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:44:38,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:44:38,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:40,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:40,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:40,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:40,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:44:40,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:44:40,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:43,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:43,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:43,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:44,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:44:44,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:44:44,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:45,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:45,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:45,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:45,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:44:45,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:44:45,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:46,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:46,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:46,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:46,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:44:46,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:44:46,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:49,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:49,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:49,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:49,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:44:49,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:44:49,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:52,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:52,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:52,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:52,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:44:52,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:44:52,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:44:56,723 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:44:56,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:44:56,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:44:57,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-01 23:44:57,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-01 23:44:57,010 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:44:58,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:44:58,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:44:58,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:44:58,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:44:58,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:44:58,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:45:06,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:45:06,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:45:06,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:45:06,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:45:06,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:45:06,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:45:07,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:45:07,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:45:07,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:45:07,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:45:07,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:45:07,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:45:11,541 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:45:11,578 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:45:11,667 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.091 +2025-10-01 23:45:11,667 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 23:45:11,668 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-01 23:45:13,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:45:13,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:45:13,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:45:13,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:45:13,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:45:13,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:45:15,650 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:45:15,689 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:45:15,782 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.422 +2025-10-01 23:45:15,782 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-01 23:45:15,783 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-01 23:45:19,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:45:19,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:45:19,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:45:19,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:45:19,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:45:19,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:45:20,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:45:20,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:45:20,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:45:20,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:45:20,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:45:20,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:45:21,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:45:21,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:45:21,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:45:21,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:45:21,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:45:21,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:45:21,938 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:45:21,973 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:45:22,055 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.203 +2025-10-01 23:45:22,055 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-01 23:45:22,056 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 23:45:25,847 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:45:25,866 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:45:25,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.884 +2025-10-01 23:45:25,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:45:25,946 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:45:27,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:45:27,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:45:27,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:45:28,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:45:28,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:45:28,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:45:32,295 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:45:32,321 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:45:32,402 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.945 +2025-10-01 23:45:32,402 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 23:45:32,402 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 23:45:35,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:45:35,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:45:35,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:45:35,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:45:35,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:45:35,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:45:37,642 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:45:37,666 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:45:37,744 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.102 +2025-10-01 23:45:37,745 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:45:37,745 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:45:41,074 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:45:41,101 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:45:41,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.818 +2025-10-01 23:45:41,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:45:41,180 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:45:44,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:45:44,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:45:44,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:45:44,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 23:45:44,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 23:45:44,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:45:52,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:45:52,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:45:52,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:45:52,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:45:52,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:45:52,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:45:55,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:45:55,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:45:55,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:45:55,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:45:55,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:45:55,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:45:55,253 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:45:55,273 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:45:55,349 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.732 +2025-10-01 23:45:55,349 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:45:55,350 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:46:01,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:01,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:01,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:01,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:46:01,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:46:01,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:02,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:02,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:03,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:03,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:46:03,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:46:03,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:10,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:10,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:10,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:10,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:46:10,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:46:10,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:11,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:11,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:11,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:11,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:46:11,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:46:11,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:14,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:14,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:14,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:14,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:46:14,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:46:14,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:17,874 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:46:17,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:46:17,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:46:18,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-01 23:46:18,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.156s/image) +2025-10-01 23:46:18,187 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:46:19,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:19,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:19,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:19,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:46:19,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:46:19,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:25,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:25,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:25,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:25,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:46:25,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:46:25,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:26,644 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:46:26,676 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:46:26,754 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=3.917 +2025-10-01 23:46:26,754 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:46:26,754 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:46:30,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:30,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:30,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:30,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:46:30,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:46:30,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:31,029 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:46:31,049 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:46:31,126 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.072 +2025-10-01 23:46:31,126 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:46:31,127 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:46:31,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:31,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:31,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:31,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:46:31,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:46:31,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:34,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:34,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:34,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:34,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 23:46:34,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 23:46:34,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:35,733 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:46:35,759 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:46:35,835 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.882 +2025-10-01 23:46:35,836 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:46:35,836 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:46:37,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:37,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:37,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:37,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:46:37,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:46:37,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:38,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:38,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:38,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:38,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:46:38,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:46:38,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:39,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:39,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:39,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:40,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:46:40,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:46:40,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:41,533 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:46:41,578 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:46:41,656 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.810 +2025-10-01 23:46:41,657 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:46:41,657 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:46:44,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:44,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:44,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:44,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-01 23:46:44,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-01 23:46:44,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:44,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:44,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:44,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:45,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:46:45,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:46:45,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:46,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:46,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:46,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:46,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:46:46,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:46:46,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:50,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:50,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:50,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:50,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:46:50,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:46:50,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:50,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:50,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:50,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:51,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:46:51,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:46:51,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:53,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:53,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:53,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:53,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 23:46:53,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 23:46:53,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:58,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:58,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:58,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:46:58,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 23:46:58,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 23:46:58,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:46:59,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:46:59,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:46:59,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:00,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:47:00,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:47:00,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:00,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:00,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:00,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:00,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:47:00,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:47:00,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:03,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:03,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:04,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:04,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:47:04,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:47:04,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:05,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:05,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:05,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:06,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 23:47:06,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 23:47:06,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:06,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:06,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:06,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:06,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 23:47:06,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 23:47:06,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:09,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:09,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:09,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:09,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:47:09,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:47:09,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:09,893 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:47:09,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:47:09,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:47:10,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-01 23:47:10,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-01 23:47:10,191 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:47:15,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:15,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:15,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:15,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:47:15,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:47:15,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:17,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:17,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:17,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:17,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 23:47:17,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 23:47:17,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:18,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:18,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:19,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:19,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:47:19,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:47:19,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:20,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:20,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:20,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:20,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:47:20,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:47:20,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:22,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:22,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:22,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:23,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-01 23:47:23,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-01 23:47:23,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:23,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:23,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:23,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:23,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:47:23,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:47:23,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:23,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:23,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:23,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:23,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:47:23,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:47:23,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:29,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:29,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:29,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:29,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:47:29,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:47:29,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:34,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:34,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:35,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:35,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:47:35,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:47:35,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:35,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:35,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:35,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:35,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:47:35,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:47:35,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:36,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:36,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:36,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:36,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:47:36,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:47:36,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:39,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:39,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:39,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:39,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:47:39,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:47:39,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:40,052 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:47:40,089 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:47:40,164 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.794 +2025-10-01 23:47:40,165 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:47:40,165 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:47:43,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:43,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:43,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:43,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:47:43,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:47:43,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:43,850 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:47:43,880 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:47:43,959 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.429 +2025-10-01 23:47:43,960 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:47:43,960 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:47:44,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:44,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:44,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:44,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:47:44,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:47:44,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:45,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:45,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:45,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:45,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 23:47:45,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 23:47:45,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:47,307 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:47:47,329 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(714, 714, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:47:47,398 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.402 +2025-10-01 23:47:47,398 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-01 23:47:47,398 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-01 23:47:48,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:48,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:48,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:48,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 23:47:48,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 23:47:48,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:49,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:49,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:49,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:49,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:47:49,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:47:49,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:53,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:53,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:53,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:53,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:47:53,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:47:53,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:54,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:54,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:54,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:54,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.210s +2025-10-01 23:47:54,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.210s (avg: 0.210s/image) +2025-10-01 23:47:54,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:47:59,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:47:59,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:47:59,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:47:59,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 23:47:59,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 23:47:59,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:05,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:05,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:06,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:06,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 23:48:06,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 23:48:06,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:06,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:06,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:06,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:06,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:48:06,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:48:06,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:12,770 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:48:12,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:48:12,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:48:13,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-01 23:48:13,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-01 23:48:13,070 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:48:16,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:16,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:16,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:16,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-01 23:48:16,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-01 23:48:16,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:19,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:19,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:19,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:19,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:48:19,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:48:19,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:20,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:20,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:20,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:20,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:48:20,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:48:20,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:21,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:21,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:21,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:21,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 23:48:21,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 23:48:21,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:23,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:23,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:23,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:23,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:48:23,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:48:23,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:24,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:24,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:24,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:24,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:48:24,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:48:24,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:28,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:28,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:28,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:28,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:48:28,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:48:28,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:31,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:31,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:31,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:31,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:48:31,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:48:31,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:31,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:31,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:31,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:31,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 23:48:31,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 23:48:31,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:34,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:34,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:34,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:34,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:48:34,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:48:34,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:36,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:36,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:36,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:36,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:48:36,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:48:36,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:37,715 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:48:37,739 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:48:37,821 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.255 +2025-10-01 23:48:37,822 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:48:37,822 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 23:48:39,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:39,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:39,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:39,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:48:39,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:48:39,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:40,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:40,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:40,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:41,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 23:48:41,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 23:48:41,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:41,377 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:48:41,396 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:48:41,475 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=14.893 +2025-10-01 23:48:41,475 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:48:41,475 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:48:41,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:41,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:41,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:41,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:48:41,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:48:41,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:44,709 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:48:44,736 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:48:44,816 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.723 +2025-10-01 23:48:44,816 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 23:48:44,816 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:48:46,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:46,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:46,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:46,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:48:46,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:48:46,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:47,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:47,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:47,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:47,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:48:47,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:48:47,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:49,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:49,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:49,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:49,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-01 23:48:49,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-01 23:48:49,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:56,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:56,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:48:56,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:48:56,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:48:56,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:48:56,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:48:57,281 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:48:57,311 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:48:57,392 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.409 +2025-10-01 23:48:57,392 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 23:48:57,392 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 23:48:59,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:48:59,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:00,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:00,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 23:49:00,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 23:49:00,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:09,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:09,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:09,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:09,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:49:09,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:49:09,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:10,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:10,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:10,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:10,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +2025-10-01 23:49:10,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +2025-10-01 23:49:10,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:15,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:15,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:15,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:15,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-01 23:49:15,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-01 23:49:15,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:18,708 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-01 23:49:18,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-01 23:49:18,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-01 23:49:19,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.430s +2025-10-01 23:49:19,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.430s (avg: 0.143s/image) +2025-10-01 23:49:19,140 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-01 23:49:19,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:19,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:19,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:19,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:49:19,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:49:19,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:19,635 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:49:19,659 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:49:19,741 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.506 +2025-10-01 23:49:19,741 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:49:19,741 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-01 23:49:22,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:22,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:22,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:22,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-01 23:49:22,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-01 23:49:22,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:22,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:22,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:22,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:22,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:49:22,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:49:22,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:23,186 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:49:23,212 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:49:23,293 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.364 +2025-10-01 23:49:23,293 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 23:49:23,293 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 23:49:24,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:24,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:24,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:24,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:49:24,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:49:24,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:25,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:25,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:25,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:25,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:49:25,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:49:25,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:27,261 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:49:27,299 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:49:27,384 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.605 +2025-10-01 23:49:27,385 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 23:49:27,385 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 23:49:27,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:27,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:27,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:28,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 23:49:28,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 23:49:28,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:30,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:30,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:30,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:30,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:49:30,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:49:30,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:30,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:30,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:30,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:31,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 23:49:31,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 23:49:31,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:31,196 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:49:31,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:49:31,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:49:31,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.255s +2025-10-01 23:49:31,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.255s (avg: 0.128s/image) +2025-10-01 23:49:31,453 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:49:33,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:33,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:33,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:33,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:49:33,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:49:33,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:34,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:34,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:35,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:35,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:49:35,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:49:35,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:37,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:37,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:37,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:37,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:49:37,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:49:37,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:38,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:38,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:38,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:38,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 23:49:38,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 23:49:38,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:39,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:39,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:39,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:39,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:49:39,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:49:39,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:44,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:44,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:44,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:44,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 23:49:44,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 23:49:44,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:44,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:44,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:44,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:44,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:49:44,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:49:44,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:46,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:46,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:46,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:46,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:49:46,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:49:46,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:49,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:49,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:49,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:49,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:49:49,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:49:49,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:51,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:51,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:51,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:51,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:49:51,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:49:51,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:53,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:53,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:53,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:53,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 23:49:53,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 23:49:53,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:53,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:53,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:53,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:53,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:49:53,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:49:53,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:55,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:55,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:55,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:55,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-01 23:49:55,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-01 23:49:55,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:49:56,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:49:56,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:49:56,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:49:56,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:49:56,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:49:56,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:00,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:00,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:00,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:00,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:50:00,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:50:00,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:01,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:01,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:01,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:02,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:50:02,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:50:02,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:03,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:03,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:03,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:03,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:50:03,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:50:03,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:04,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:04,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:04,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:04,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:50:04,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:50:04,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:06,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:06,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:06,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:06,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:50:06,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:50:06,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:07,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:07,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:07,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:07,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:50:07,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:50:07,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:09,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:09,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:09,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:09,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:50:09,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:50:09,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:14,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:14,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:14,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:14,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:50:14,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:50:14,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:14,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:14,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:14,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:15,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 23:50:15,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 23:50:15,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:21,654 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:50:21,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:50:21,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:50:21,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.312s +2025-10-01 23:50:21,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.312s (avg: 0.156s/image) +2025-10-01 23:50:21,967 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:50:25,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:25,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:25,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:25,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:50:25,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:50:25,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:26,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:26,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:26,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:26,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:50:26,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:50:26,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:30,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:30,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:30,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:30,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:50:30,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:50:30,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:35,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:35,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:35,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:35,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:50:35,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:50:35,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:36,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:36,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:37,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:37,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:50:37,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:50:37,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:41,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:41,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:41,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:41,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:50:41,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:50:41,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:47,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:47,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:47,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:47,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:50:47,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:50:47,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:52,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:52,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:52,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:52,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:50:52,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:50:52,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:52,780 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:50:52,806 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:50:52,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.191 +2025-10-01 23:50:52,887 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-01 23:50:52,887 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:50:54,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:54,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:54,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:54,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-01 23:50:54,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-01 23:50:54,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:50:57,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:50:57,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:50:57,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:50:57,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:50:57,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:50:57,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:51:01,417 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:51:01,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:51:01,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:51:01,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-01 23:51:01,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-01 23:51:01,718 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:51:02,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:51:02,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:51:02,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:51:02,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:51:02,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:51:02,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:51:09,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:51:09,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:51:09,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:51:09,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:51:09,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:51:09,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:51:13,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:51:13,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:51:13,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:51:13,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:51:13,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:51:13,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:51:17,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:51:17,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:51:17,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:51:17,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:51:17,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:51:17,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:51:26,876 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:51:26,910 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:51:26,988 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.486 +2025-10-01 23:51:26,989 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:51:26,989 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:51:28,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:51:28,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:51:28,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:51:28,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:51:28,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:51:28,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:51:31,416 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:51:31,457 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:51:31,544 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.367 +2025-10-01 23:51:31,544 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 23:51:31,544 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-01 23:51:35,815 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:51:35,842 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:51:35,916 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.793 +2025-10-01 23:51:35,916 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:51:35,916 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:51:39,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:51:39,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:51:39,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:51:39,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:51:39,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:51:39,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:51:41,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:51:41,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:51:41,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:51:42,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:51:42,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:51:42,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:51:58,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:51:58,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:51:58,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:51:58,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:51:58,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:51:58,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:02,299 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:52:02,323 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:52:02,413 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.035 +2025-10-01 23:52:02,413 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-01 23:52:02,413 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-01 23:52:04,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:04,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:04,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:04,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 23:52:04,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 23:52:04,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:07,986 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:52:08,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:52:08,107 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.090 +2025-10-01 23:52:08,107 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 23:52:08,107 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-01 23:52:08,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:08,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:08,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:09,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 23:52:09,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 23:52:09,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:11,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:11,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:11,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:11,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:52:11,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:52:11,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:11,838 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:52:11,854 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:52:11,931 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.245 +2025-10-01 23:52:11,931 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:52:11,931 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-01 23:52:15,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:15,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:15,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:15,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:52:15,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:52:15,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:16,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:16,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:17,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:17,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:52:17,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:52:17,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:19,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:19,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:19,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:19,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:52:19,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:52:19,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:21,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:21,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:21,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:21,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:52:21,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:52:21,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:24,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:24,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:24,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:24,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:52:24,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:52:24,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:25,737 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:52:25,756 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:52:25,832 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.842 +2025-10-01 23:52:25,832 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:52:25,832 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:52:26,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:26,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:26,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:27,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:52:27,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:52:27,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:31,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:31,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:31,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:31,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-01 23:52:31,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-01 23:52:31,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:32,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:32,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:32,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:32,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:52:32,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:52:32,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:35,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:35,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:35,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:35,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:52:35,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:52:35,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:38,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:38,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:38,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:38,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:52:38,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:52:38,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:39,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:39,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:39,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:39,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:52:39,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:52:39,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:40,358 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:52:40,392 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:52:40,471 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.154 +2025-10-01 23:52:40,471 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:52:40,472 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:52:42,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:42,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:42,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:42,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:52:42,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:52:42,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:44,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:44,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:44,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:44,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:52:44,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:52:44,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:48,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:48,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:48,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:48,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:52:48,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:52:48,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:50,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:50,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:50,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:50,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:52:50,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:52:50,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:52,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:52,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:52,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:52,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:52:52,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:52:52,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:54,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:54,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:54,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:54,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:52:54,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:52:54,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:52:56,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:52:56,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:52:56,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:52:56,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:52:56,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:52:56,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:01,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:01,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:01,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:01,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-01 23:53:01,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-01 23:53:01,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:02,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:02,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:02,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:03,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 23:53:03,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 23:53:03,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:05,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:05,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:05,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:05,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 23:53:05,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 23:53:05,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:10,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:10,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:10,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:10,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:53:10,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:53:10,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:12,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:12,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:12,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:12,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:53:12,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:53:12,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:16,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:16,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:16,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:16,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:53:16,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:53:16,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:16,906 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:53:16,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:53:16,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:53:17,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-01 23:53:17,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-01 23:53:17,178 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:53:20,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:20,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:20,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:20,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:53:20,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:53:20,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:23,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:23,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:23,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:23,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:53:23,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:53:23,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:23,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:23,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:23,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:23,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:53:23,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:53:23,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:29,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:29,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:29,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:29,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:53:29,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:53:29,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:35,326 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:53:35,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:53:35,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:53:35,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-01 23:53:35,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-01 23:53:35,603 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:53:35,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:35,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:35,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:35,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:53:35,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:53:35,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:39,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:39,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:39,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:39,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:53:39,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:53:39,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:40,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:40,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:40,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:40,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:53:40,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:53:40,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:43,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:43,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:43,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:43,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:53:43,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:53:43,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:53:54,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:53:54,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:53:54,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:53:54,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:53:54,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:53:54,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:54:12,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:54:12,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:54:12,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:54:13,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-01 23:54:13,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-01 23:54:13,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:54:13,903 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:54:13,938 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:54:14,020 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.773 +2025-10-01 23:54:14,020 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-01 23:54:14,021 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-01 23:54:14,841 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:54:14,868 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:54:14,953 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.961 +2025-10-01 23:54:14,953 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-01 23:54:14,953 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 23:54:18,449 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:54:18,463 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:54:18,537 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=3.048 +2025-10-01 23:54:18,537 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:54:18,537 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-01 23:54:21,606 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:54:21,631 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:54:21,709 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.856 +2025-10-01 23:54:21,709 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-01 23:54:21,709 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:55:00,433 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:55:00,465 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:55:00,554 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.926 +2025-10-01 23:55:00,554 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-01 23:55:00,554 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 23:55:04,592 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:55:04,613 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:55:04,688 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.401 +2025-10-01 23:55:04,688 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-01 23:55:04,688 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:55:08,874 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:55:08,894 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:55:08,970 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.360 +2025-10-01 23:55:08,970 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:55:08,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:55:22,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:22,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:22,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:22,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-01 23:55:22,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-01 23:55:22,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:23,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:23,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:23,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:23,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:55:23,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:55:23,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:25,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:25,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:25,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:25,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-01 23:55:25,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-01 23:55:25,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:26,505 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:55:26,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:55:26,619 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.190 +2025-10-01 23:55:26,620 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 23:55:26,620 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 23:55:28,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:28,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:28,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:29,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:55:29,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:55:29,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:29,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:29,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:29,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:30,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-01 23:55:30,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-01 23:55:30,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:33,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:33,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:33,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:34,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:55:34,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:55:34,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:35,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:35,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:35,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:36,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:55:36,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:55:36,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:39,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:39,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:39,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:39,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:55:39,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:55:39,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:40,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:40,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:40,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:40,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:55:40,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:55:40,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:45,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:45,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:45,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:45,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:55:45,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:55:45,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:48,587 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:55:48,621 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:55:48,706 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.988 +2025-10-01 23:55:48,706 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-01 23:55:48,706 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-01 23:55:50,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:50,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:50,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:50,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:55:50,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:55:50,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:51,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:51,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:51,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:51,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:55:51,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:55:51,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:51,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:51,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:51,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:51,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:55:51,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:55:51,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:57,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:57,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:57,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:57,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:55:57,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:55:57,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:55:59,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:55:59,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:55:59,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:55:59,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:55:59,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:55:59,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:00,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:00,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:01,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:01,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:56:01,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:56:01,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:06,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:06,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:06,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:06,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-01 23:56:06,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-01 23:56:06,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:07,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:07,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:07,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:07,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:56:07,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:56:07,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:12,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:12,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:12,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:12,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-01 23:56:12,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-01 23:56:12,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:13,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:13,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:13,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:13,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:56:13,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:56:13,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:18,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:18,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:18,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:18,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-01 23:56:18,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-01 23:56:18,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:18,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:18,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:18,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:19,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:56:19,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:56:19,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:19,252 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:56:19,288 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:56:19,375 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.145 +2025-10-01 23:56:19,375 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-01 23:56:19,375 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 23:56:19,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:19,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:19,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:20,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-01 23:56:20,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-01 23:56:20,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:21,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:21,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:21,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:21,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:56:21,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:56:21,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:21,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:21,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:21,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:21,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:56:21,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:56:21,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:23,723 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:56:23,744 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:56:23,823 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.007 +2025-10-01 23:56:23,824 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:56:23,824 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:56:24,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:24,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:24,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:25,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:56:25,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:56:25,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:27,498 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:56:27,526 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:56:27,600 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.145 +2025-10-01 23:56:27,600 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-01 23:56:27,601 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-01 23:56:29,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:29,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:29,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:29,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-01 23:56:29,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-01 23:56:29,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:29,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:29,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:29,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:30,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-01 23:56:30,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-01 23:56:30,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:31,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:31,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:31,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:31,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:56:31,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:56:31,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:33,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:33,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:33,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:33,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:56:33,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:56:33,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:34,199 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:56:34,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:56:34,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:56:34,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-01 23:56:34,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-01 23:56:34,468 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:56:37,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:37,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:37,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:37,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:56:37,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:56:37,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:38,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:38,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:38,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:38,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:56:38,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:56:38,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:39,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:39,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:39,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:39,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:56:39,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:56:39,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:41,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:41,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:42,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:42,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:56:42,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:56:42,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:43,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:43,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:43,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:43,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:56:43,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:56:43,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:44,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:44,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:45,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:45,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-01 23:56:45,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-01 23:56:45,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:46,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:46,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:46,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:46,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:56:46,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:56:46,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:48,879 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:56:48,919 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:56:49,005 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.444 +2025-10-01 23:56:49,005 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-01 23:56:49,005 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-01 23:56:49,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:49,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:49,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:49,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-01 23:56:49,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-01 23:56:49,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:51,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:51,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:51,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:51,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:56:51,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:56:51,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:54,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:54,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:54,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:54,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-01 23:56:54,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-01 23:56:54,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:54,838 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:56:54,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:56:54,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:56:55,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-01 23:56:55,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-01 23:56:55,111 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:56:56,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:56,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:56,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:56,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:56:56,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:56:56,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:57,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:57,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:57,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:58,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:56:58,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:56:58,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:56:59,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:56:59,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:56:59,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:56:59,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:56:59,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:56:59,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:02,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:02,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:02,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:02,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-01 23:57:02,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-01 23:57:02,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:04,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:04,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:04,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:04,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:57:04,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:57:04,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:04,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:04,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:04,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:05,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 23:57:05,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 23:57:05,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:05,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:05,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:05,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:05,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:57:05,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:57:05,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:08,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:08,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:09,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:09,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-01 23:57:09,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-01 23:57:09,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:10,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:10,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:10,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:10,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:57:10,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:57:10,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:12,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:12,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:12,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:12,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 23:57:12,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 23:57:12,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:15,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:15,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:15,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:15,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-01 23:57:15,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-01 23:57:15,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:17,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:17,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:17,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:17,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:57:17,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:57:17,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:18,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:18,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:18,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:18,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 23:57:18,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 23:57:18,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:22,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:22,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:22,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:22,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:57:22,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:57:22,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:26,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:26,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:26,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:26,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:57:26,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:57:26,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:29,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:29,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:29,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:29,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-01 23:57:29,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-01 23:57:29,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:31,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:31,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:31,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:32,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:57:32,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:57:32,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:42,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:42,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:42,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:42,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-01 23:57:42,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-01 23:57:42,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:44,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:44,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:44,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:44,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-01 23:57:44,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-01 23:57:44,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:47,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:47,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:47,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:47,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:57:47,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:57:47,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:50,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:50,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:50,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:50,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:57:50,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:57:50,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:51,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:51,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:51,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:51,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:57:51,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:57:51,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:54,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:54,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:54,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:55,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:57:55,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:57:55,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:57:58,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:57:58,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:57:58,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:57:58,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-01 23:57:58,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-01 23:57:58,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:02,079 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:58:02,105 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:58:02,194 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.103 +2025-10-01 23:58:02,194 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-01 23:58:02,194 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-01 23:58:02,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:02,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:02,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:02,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 23:58:02,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 23:58:02,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:06,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:06,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:06,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:07,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-01 23:58:07,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-01 23:58:07,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:07,131 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:58:07,151 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:58:07,230 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.402 +2025-10-01 23:58:07,231 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:58:07,231 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-01 23:58:07,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:07,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:07,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:07,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:58:07,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:58:07,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:10,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:10,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:10,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:10,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:58:10,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:58:10,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:11,454 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:58:11,478 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:58:11,557 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.924 +2025-10-01 23:58:11,557 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-01 23:58:11,558 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-01 23:58:15,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:15,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:15,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:15,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-01 23:58:15,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-01 23:58:15,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:16,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:16,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:16,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:16,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-01 23:58:16,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-01 23:58:16,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:20,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:20,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:20,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:20,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:58:20,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:58:20,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:24,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:24,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:24,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:24,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:58:24,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:58:24,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:29,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:29,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:29,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:29,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-01 23:58:29,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-01 23:58:29,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:29,769 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:58:29,794 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:58:29,871 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.765 +2025-10-01 23:58:29,871 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-01 23:58:29,872 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-01 23:58:30,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:30,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:30,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:30,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-01 23:58:30,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-01 23:58:30,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:35,146 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:58:35,183 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:58:35,264 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.787 +2025-10-01 23:58:35,264 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-01 23:58:35,264 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-01 23:58:36,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:36,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:36,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:36,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:58:36,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:58:36,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:36,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:36,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:36,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:36,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:58:36,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:58:36,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:39,393 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-01 23:58:39,414 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-01 23:58:39,490 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.260 +2025-10-01 23:58:39,490 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-01 23:58:39,490 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-01 23:58:40,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:40,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:40,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:40,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 23:58:40,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 23:58:40,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:43,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:43,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:43,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:43,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:58:43,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:58:43,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:43,815 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:58:43,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:58:43,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:58:44,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-01 23:58:44,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-01 23:58:44,111 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:58:45,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:45,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:45,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:45,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:58:45,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:58:45,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:47,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:47,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:47,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:47,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:58:47,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:58:47,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:49,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:49,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:49,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:50,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:58:50,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:58:50,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:54,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:54,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:54,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:54,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:58:54,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:58:54,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:54,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:54,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:54,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:54,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-01 23:58:54,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-01 23:58:54,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:57,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:57,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:57,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:57,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-01 23:58:57,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-01 23:58:57,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:59,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:59,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:59,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:59,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:58:59,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:58:59,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:58:59,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:58:59,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:58:59,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:58:59,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:58:59,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:58:59,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:03,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:03,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:03,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:03,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:59:03,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:59:03,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:04,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:04,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:04,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:05,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-01 23:59:05,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-01 23:59:05,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:09,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:09,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:09,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:09,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-01 23:59:09,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-01 23:59:09,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:09,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:09,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:09,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:09,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:59:09,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:59:09,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:14,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:14,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:14,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:14,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:59:14,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:59:14,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:14,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:14,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:14,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:14,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-01 23:59:14,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-01 23:59:14,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:18,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:18,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:18,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:18,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-01 23:59:18,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-01 23:59:18,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:19,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:19,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:19,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:19,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 23:59:19,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 23:59:19,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:20,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:20,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:20,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:21,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-01 23:59:21,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-01 23:59:21,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:25,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:25,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:25,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:25,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:59:25,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:59:25,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:27,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:27,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:27,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:27,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-01 23:59:27,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-01 23:59:27,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:29,886 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:59:29,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:59:29,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:59:30,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-01 23:59:30,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-01 23:59:30,171 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:59:33,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:33,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:33,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:33,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-01 23:59:33,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-01 23:59:33,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:33,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:33,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:33,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:33,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-01 23:59:33,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-01 23:59:33,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:34,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:34,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:35,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:35,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-01 23:59:35,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-01 23:59:35,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:39,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:39,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:39,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:39,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-01 23:59:39,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-01 23:59:39,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:40,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:40,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:40,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:40,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-01 23:59:40,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-01 23:59:40,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:40,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:40,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:40,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:40,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-01 23:59:40,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-01 23:59:40,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:42,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:42,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:42,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:42,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:59:42,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:59:42,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:44,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:44,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:44,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:44,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-01 23:59:44,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-01 23:59:44,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:45,850 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-01 23:59:45,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-01 23:59:45,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-01 23:59:46,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-01 23:59:46,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-01 23:59:46,156 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-01 23:59:48,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:48,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:48,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:48,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-01 23:59:48,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-01 23:59:48,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:50,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:50,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:50,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:50,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:59:50,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:59:50,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:51,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:51,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:51,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:51,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-01 23:59:51,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-01 23:59:51,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:51,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:51,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:51,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:51,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-01 23:59:51,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-01 23:59:51,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:54,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:54,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:55,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:55,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-01 23:59:55,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-01 23:59:55,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:56,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:56,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:56,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:56,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-01 23:59:56,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-01 23:59:56,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-01 23:59:57,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-01 23:59:57,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-01 23:59:57,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-01 23:59:57,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-01 23:59:57,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-01 23:59:57,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:00,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:00,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:00,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:00,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:00:00,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:00:00,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:02,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:02,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:02,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:02,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:00:02,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:00:02,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:03,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:03,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:03,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:03,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:00:03,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:00:03,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:06,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:06,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:06,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:06,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:00:06,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:00:06,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:07,874 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:00:07,902 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:00:07,992 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.181 +2025-10-02 00:00:07,992 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 00:00:07,992 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 00:00:09,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:09,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:09,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:10,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:00:10,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:00:10,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:11,024 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:00:11,037 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:00:11,110 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.650 +2025-10-02 00:00:11,110 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-02 00:00:11,110 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 00:00:11,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:11,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:11,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:11,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:00:11,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:00:11,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:14,764 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:00:14,789 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(709, 709, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:00:14,860 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.368 +2025-10-02 00:00:14,860 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-02 00:00:14,860 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 00:00:16,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:16,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:16,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:16,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:00:16,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:00:16,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:18,506 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:00:18,528 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:00:18,603 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.288 +2025-10-02 00:00:18,603 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 00:00:18,603 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 00:00:20,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:20,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:20,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:20,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 00:00:20,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 00:00:20,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:21,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:21,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:21,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:21,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:00:21,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:00:21,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:25,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:25,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:25,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:25,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:00:25,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:00:25,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:26,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:26,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:26,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:26,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:00:26,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:00:26,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:32,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:32,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:32,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:32,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:00:32,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:00:32,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:36,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:36,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:36,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:36,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:00:36,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:00:36,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:37,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:37,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:37,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:37,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:00:37,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:00:37,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:42,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:42,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:42,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:42,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:00:42,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:00:42,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:43,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:43,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:43,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:43,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:00:43,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:00:43,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:44,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:44,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:44,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:45,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:00:45,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:00:45,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:47,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:47,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:47,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:47,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:00:47,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:00:47,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:47,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:47,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:48,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:48,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:00:48,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:00:48,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:49,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:49,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:49,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:49,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:00:49,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:00:49,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:52,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:52,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:52,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:52,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:00:52,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:00:52,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:54,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:54,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:54,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:54,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:00:54,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:00:54,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:55,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:55,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:55,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:55,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:00:55,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:00:55,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:56,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:56,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:56,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:56,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:00:56,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:00:56,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:57,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:57,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:57,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:57,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:00:57,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:00:57,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:00:57,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:00:57,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:00:57,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:00:58,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:00:58,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:00:58,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:00,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:00,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:00,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:00,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:01:00,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:01:00,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:02,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:02,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:02,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:02,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:01:02,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:01:02,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:04,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:04,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:04,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:04,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:01:04,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:01:04,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:04,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:04,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:04,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:05,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:01:05,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:01:05,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:07,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:07,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:07,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:07,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:01:07,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:01:07,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:07,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:07,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:07,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:08,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:01:08,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:01:08,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:08,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:08,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:08,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:08,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:01:08,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:01:08,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:09,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:09,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:09,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:09,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:01:09,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:01:09,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:12,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:12,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:12,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:12,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:01:12,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:01:12,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:12,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:12,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:12,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:13,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:01:13,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:01:13,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:13,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:13,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:13,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:13,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:01:13,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:01:13,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:17,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:17,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:17,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:17,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:01:17,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:01:17,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:17,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:17,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:17,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:18,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:01:18,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:01:18,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:18,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:18,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:18,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:18,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:01:18,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:01:18,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:21,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:21,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:21,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:21,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:01:21,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:01:21,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:22,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:22,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:22,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:22,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:01:22,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:01:22,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:23,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:23,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:23,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:23,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:01:23,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:01:23,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:26,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:26,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:26,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:26,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:01:26,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:01:26,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:27,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:27,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:27,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:27,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:01:27,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:01:27,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:27,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:27,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:27,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:27,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:01:27,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:01:27,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:31,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:31,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:31,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:31,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:01:31,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:01:31,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:32,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:32,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:32,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:32,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:01:32,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:01:32,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:33,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:33,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:33,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:33,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:01:33,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:01:33,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:35,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:35,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:35,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:36,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:01:36,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:01:36,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:36,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:36,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:36,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:36,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:01:36,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:01:36,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:37,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:37,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:37,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:37,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:01:37,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:01:37,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:40,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:40,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:40,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:40,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:01:40,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:01:40,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:41,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:41,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:41,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:41,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 00:01:41,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 00:01:41,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:42,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:42,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:42,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:42,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:01:42,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:01:42,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:45,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:45,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:45,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:45,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:01:45,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:01:45,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:49,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:49,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:49,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:49,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:01:49,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:01:49,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:51,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:51,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:51,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:51,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:01:51,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:01:51,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:53,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:53,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:53,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:53,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:01:53,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:01:53,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:54,277 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:01:54,302 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:01:54,385 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.435 +2025-10-02 00:01:54,385 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 00:01:54,385 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 00:01:58,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:01:58,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:01:58,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:01:58,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:01:58,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:01:58,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:01:59,783 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:01:59,812 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:01:59,892 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.847 +2025-10-02 00:01:59,893 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 00:01:59,893 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 00:02:03,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:03,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:03,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:03,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:02:03,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:02:03,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:04,082 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:02:04,109 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:02:04,186 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.292 +2025-10-02 00:02:04,186 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 00:02:04,187 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:02:07,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:07,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:07,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:07,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:02:07,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:02:07,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:10,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:10,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:10,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:10,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:02:10,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:02:10,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:15,845 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:02:15,868 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:02:15,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.243 +2025-10-02 00:02:15,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:02:15,946 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 00:02:16,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:16,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:16,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:16,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:02:16,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:02:16,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:21,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:21,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:21,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:22,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:02:22,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:02:22,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:23,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:23,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:23,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:24,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:02:24,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:02:24,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:27,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:27,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:27,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:27,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 00:02:27,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 00:02:27,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:28,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:28,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:28,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:28,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:02:28,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:02:28,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:30,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:30,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:30,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:30,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:02:30,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:02:30,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:32,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:32,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:32,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:32,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:02:32,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:02:32,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:33,983 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:02:34,011 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:02:34,099 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.484 +2025-10-02 00:02:34,100 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 00:02:34,100 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 00:02:34,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:34,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:34,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:34,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:02:34,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:02:34,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:42,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:42,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:42,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:42,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:02:42,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:02:42,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:43,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:43,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:43,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:43,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:02:43,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:02:43,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:44,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:44,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:44,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:44,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:02:44,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:02:44,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:47,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:47,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:47,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:48,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:02:48,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:02:48,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:48,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:48,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:48,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:49,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:02:49,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:02:49,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:51,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:51,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:51,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:51,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:02:51,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:02:51,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:55,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:55,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:55,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:55,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:02:55,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:02:55,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:02:56,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:02:56,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:02:56,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:02:56,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:02:56,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:02:56,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:01,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:01,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:01,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:01,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:03:01,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:03:01,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:02,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:02,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:02,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:02,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:03:02,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:03:02,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:08,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:08,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:08,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:08,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:03:08,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:03:08,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:16,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:16,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:16,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:16,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:03:16,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:03:16,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:22,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:22,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:22,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:22,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 00:03:22,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 00:03:22,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:22,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:22,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:22,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:22,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:03:22,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:03:22,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:26,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:26,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:26,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:26,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:03:26,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:03:26,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:27,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:27,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:27,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:27,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:03:27,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:03:27,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:28,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:28,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:28,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:28,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:03:28,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:03:28,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:30,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:30,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:30,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:30,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:03:30,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:03:30,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:33,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:33,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:34,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:34,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:03:34,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:03:34,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:34,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:34,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:34,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:34,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:03:34,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:03:34,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:35,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:35,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:35,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:35,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:03:35,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:03:35,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:39,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:39,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:39,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:39,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:03:39,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:03:39,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:40,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:40,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:40,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:40,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:03:40,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:03:40,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:40,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:40,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:40,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:40,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:03:40,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:03:40,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:43,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:43,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:43,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:43,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:03:43,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:03:43,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:44,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:44,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:44,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:44,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:03:44,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:03:44,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:47,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:47,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:47,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:47,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:03:47,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:03:47,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:47,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:47,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:47,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:47,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:03:47,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:03:47,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:48,627 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:03:48,676 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:03:48,757 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.793 +2025-10-02 00:03:48,757 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 00:03:48,757 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 00:03:53,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:53,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:53,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:53,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 00:03:53,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 00:03:53,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:53,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:53,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:53,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:53,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:03:53,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:03:53,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:54,771 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:03:54,798 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:03:54,883 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.714 +2025-10-02 00:03:54,884 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 00:03:54,884 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 00:03:57,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:03:57,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:03:57,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:03:57,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:03:57,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:03:57,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:03:59,005 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:03:59,028 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:03:59,102 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.009 +2025-10-02 00:03:59,103 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 00:03:59,103 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 00:04:00,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:00,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:00,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:01,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:04:01,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:04:01,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:02,492 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:04:02,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:04:02,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.822 +2025-10-02 00:04:02,587 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-02 00:04:02,587 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 00:04:03,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:03,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:03,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:03,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:04:03,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:04:03,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:05,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:05,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:05,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:05,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:04:05,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:04:05,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:06,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:06,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:06,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:06,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:04:06,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:04:06,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:11,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:11,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:11,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:11,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:04:11,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:04:11,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:12,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:12,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:12,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:12,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:04:12,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:04:12,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:13,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:13,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:13,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:13,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:04:13,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:04:13,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:15,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:15,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:15,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:15,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:04:15,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:04:15,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:17,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:17,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:17,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:18,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:04:18,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:04:18,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:20,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:20,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:20,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:20,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:04:20,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:04:20,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:23,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:23,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:23,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:23,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:04:23,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:04:23,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:27,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:27,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:27,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:28,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:04:28,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:04:28,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:28,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:28,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:28,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:28,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:04:28,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:04:28,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:29,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:29,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:29,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:29,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:04:29,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:04:29,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:31,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:31,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:31,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:31,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:04:31,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:04:31,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:33,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:33,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:34,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:34,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:04:34,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:04:34,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:34,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:34,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:34,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:34,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:04:34,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:04:34,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:35,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:35,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:35,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:36,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:04:36,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:04:36,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:39,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:39,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:39,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:39,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:04:39,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:04:39,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:40,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:40,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:40,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:40,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:04:40,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:04:40,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:41,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:41,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:41,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:41,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:04:41,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:04:41,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:04:49,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:04:49,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:04:49,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:04:49,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:04:49,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:04:49,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:00,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:00,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:00,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:00,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:05:00,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:05:00,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:06,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:06,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:06,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:06,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:05:06,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:05:06,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:08,482 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:05:08,517 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:05:08,598 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.642 +2025-10-02 00:05:08,598 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 00:05:08,598 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 00:05:09,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:09,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:09,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:09,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:05:09,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:05:09,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:14,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:14,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:14,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:14,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:05:14,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:05:14,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:15,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:15,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:15,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:15,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:05:15,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:05:15,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:18,695 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:05:18,733 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:05:18,818 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=224.557 +2025-10-02 00:05:18,818 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 00:05:18,818 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 00:05:19,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:19,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:19,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:19,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:05:19,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:05:19,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:21,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:21,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:21,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:21,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:05:21,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:05:21,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:24,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:24,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:24,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:24,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:05:24,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:05:24,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:28,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:28,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:28,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:28,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:05:28,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:05:28,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:29,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:29,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:29,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:29,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:05:29,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:05:29,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:33,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:33,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:33,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:33,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:05:33,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:05:33,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:35,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:35,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:35,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:35,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:05:35,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:05:35,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:39,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:39,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:39,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:39,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:05:39,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:05:39,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:43,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:43,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:43,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:43,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:05:43,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:05:43,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:48,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:48,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:48,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:48,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:05:48,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:05:48,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:51,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:51,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:51,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:51,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:05:51,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:05:51,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:53,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:53,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:53,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:53,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:05:53,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:05:53,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:55,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:55,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:55,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:55,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:05:55,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:05:55,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:57,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:57,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:57,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:58,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:05:58,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:05:58,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:58,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:58,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:58,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:58,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:05:58,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:05:58,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:05:59,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:05:59,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:05:59,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:05:59,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:05:59,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:05:59,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:01,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:01,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:01,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:01,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:06:01,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:06:01,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:04,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:04,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:04,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:04,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:06:04,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:06:04,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:04,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:04,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:04,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:05,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:06:05,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:06:05,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:13,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:13,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:13,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:13,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:06:13,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:06:13,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:20,711 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 00:06:20,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 00:06:20,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 00:06:21,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.423s +2025-10-02 00:06:21,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.423s (avg: 0.141s/image) +2025-10-02 00:06:21,136 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 00:06:21,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:21,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:21,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:21,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:06:21,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:06:21,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:21,718 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:06:21,742 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:06:21,816 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.392 +2025-10-02 00:06:21,816 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 00:06:21,816 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 00:06:25,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:25,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:25,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:25,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:06:25,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:06:25,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:25,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:25,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:25,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:25,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:06:25,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:06:25,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:26,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:26,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:26,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:26,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 00:06:26,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 00:06:26,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:27,225 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:06:27,273 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:06:27,345 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.206 +2025-10-02 00:06:27,346 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-02 00:06:27,346 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 00:06:29,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:29,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:29,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:29,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:06:29,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:06:29,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:30,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:30,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:30,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:30,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:06:30,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:06:30,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:30,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:30,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:30,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:30,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:06:30,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:06:30,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:31,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:31,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:31,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:32,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:06:32,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:06:32,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:32,230 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:06:32,273 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:06:32,352 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.411 +2025-10-02 00:06:32,353 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 00:06:32,353 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 00:06:33,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:33,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:33,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:33,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:06:33,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:06:33,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:34,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:34,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:34,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:34,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:06:34,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:06:34,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:35,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:35,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:35,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:35,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:06:35,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:06:35,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:37,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:37,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:37,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:37,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:06:37,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:06:37,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:37,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:37,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:37,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:37,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:06:37,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:06:37,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:38,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:38,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:38,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:38,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:06:38,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:06:38,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:42,357 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:06:42,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:06:42,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:06:42,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 00:06:42,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 00:06:42,647 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:06:43,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:43,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:43,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:43,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:06:43,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:06:43,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:47,264 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:06:47,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:06:47,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:06:47,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 00:06:47,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-02 00:06:47,558 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:06:49,045 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:06:49,076 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:06:49,150 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.058 +2025-10-02 00:06:49,150 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 00:06:49,150 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 00:06:49,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:49,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:49,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:49,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:06:49,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:06:49,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:51,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:51,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:51,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:51,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:06:51,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:06:51,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:54,304 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:06:54,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:06:54,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:06:54,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 00:06:54,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-02 00:06:54,605 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:06:54,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:54,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:55,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:55,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:06:55,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:06:55,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:56,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:56,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:56,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:56,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:06:56,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:06:56,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:06:59,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:06:59,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:06:59,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:06:59,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:06:59,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:06:59,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:00,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:00,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:00,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:00,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:07:00,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:07:00,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:03,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:03,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:03,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:03,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:07:03,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:07:03,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:04,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:04,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:04,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:04,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:07:04,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:07:04,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:08,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:08,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:08,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:09,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:07:09,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:07:09,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:15,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:15,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:15,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:15,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:07:15,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:07:15,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:16,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:16,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:16,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:16,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:07:16,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:07:16,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:22,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:22,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:22,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:22,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:07:22,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:07:22,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:26,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:26,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:26,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:26,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 00:07:26,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 00:07:26,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:27,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:27,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:27,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:27,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:07:27,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:07:27,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:29,864 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:07:29,890 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:07:29,970 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.177 +2025-10-02 00:07:29,970 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 00:07:29,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 00:07:31,145 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:07:31,171 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:07:31,252 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.247 +2025-10-02 00:07:31,253 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 00:07:31,253 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 00:07:33,790 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:07:33,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:07:33,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:07:34,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-02 00:07:34,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +2025-10-02 00:07:34,112 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:07:34,904 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:07:34,931 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:07:35,009 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.577 +2025-10-02 00:07:35,010 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:07:35,010 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 00:07:36,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:36,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:36,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:36,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:07:36,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:07:36,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:37,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:37,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:37,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:38,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:07:38,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:07:38,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:38,355 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:07:38,377 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:07:38,453 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.755 +2025-10-02 00:07:38,453 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 00:07:38,453 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 00:07:41,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:41,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:41,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:41,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:07:41,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:07:41,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:42,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:42,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:42,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:42,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:07:42,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:07:42,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:48,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:48,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:48,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:48,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:07:48,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:07:48,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:49,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:49,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:49,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:49,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:07:49,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:07:49,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:50,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:50,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:50,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:50,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:07:50,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:07:50,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:56,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:56,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:56,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:56,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:07:56,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:07:56,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:57,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:57,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:57,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:58,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 00:07:58,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 00:07:58,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:07:58,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:07:58,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:07:58,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:07:58,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:07:58,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:07:58,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:04,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:04,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:04,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:04,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:08:04,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:08:04,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:04,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:04,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:04,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:04,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:08:04,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:08:04,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:06,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:06,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:06,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:06,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:08:06,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:08:06,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:08,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:08,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:08,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:08,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:08:08,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:08:08,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:09,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:09,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:09,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:09,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:08:09,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:08:09,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:13,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:13,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:13,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:13,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:08:13,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:08:13,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:14,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:14,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:14,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:14,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:08:14,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:08:14,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:15,037 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:08:15,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:08:15,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:08:15,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +2025-10-02 00:08:15,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.159s/image) +2025-10-02 00:08:15,356 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:08:15,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:15,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:15,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:16,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:08:16,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:08:16,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:18,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:18,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:18,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:18,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:08:18,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:08:18,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:21,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:21,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:21,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:21,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:08:21,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:08:21,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:23,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:23,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:23,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:23,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:08:23,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:08:23,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:24,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:24,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:24,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:24,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:08:24,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:08:24,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:24,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:24,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:24,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:24,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:08:24,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:08:24,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:25,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:25,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:25,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:25,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:08:25,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:08:25,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:28,256 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:08:28,277 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:08:28,356 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.985 +2025-10-02 00:08:28,357 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 00:08:28,357 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 00:08:29,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:29,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:29,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:29,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:08:29,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:08:29,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:31,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:31,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:31,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:31,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:08:31,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:08:31,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:32,274 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:08:32,297 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:08:32,372 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.114 +2025-10-02 00:08:32,372 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 00:08:32,372 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 00:08:32,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:32,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:32,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:32,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:08:32,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:08:32,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:35,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:35,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:35,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:35,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:08:35,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:08:35,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:36,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:36,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:36,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:36,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:08:36,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:08:36,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:36,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:36,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:36,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:36,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:08:36,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:08:36,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:37,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:08:37,094 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:08:37,162 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=207.483 +2025-10-02 00:08:37,162 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-02 00:08:37,162 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s +2025-10-02 00:08:37,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:37,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:37,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:37,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:08:37,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:08:37,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:41,743 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:08:41,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:08:41,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:08:42,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 00:08:42,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-02 00:08:42,014 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:08:42,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:42,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:42,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:42,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:08:42,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:08:42,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:47,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:47,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:47,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:47,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:08:47,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:08:47,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:48,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:48,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:48,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:48,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:08:48,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:08:48,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:49,072 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:08:49,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:08:49,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:08:49,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 00:08:49,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 00:08:49,357 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:08:53,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:53,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:53,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:54,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:08:54,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:08:54,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:55,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:55,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:55,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:55,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:08:55,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:08:55,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:08:57,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:08:57,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:08:57,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:08:57,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:08:57,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:08:57,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:01,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:01,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:01,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:02,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:09:02,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:09:02,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:04,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:04,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:04,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:04,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:09:04,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:09:04,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:12,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:12,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:12,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:12,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:09:12,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:09:12,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:13,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:13,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:13,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:13,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:09:13,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:09:13,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:20,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:20,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:20,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:20,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:09:20,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:09:20,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:24,862 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:09:24,899 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:09:24,988 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.394 +2025-10-02 00:09:24,989 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 00:09:24,989 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 00:09:25,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:25,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:25,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:25,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:09:25,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:09:25,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:29,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:29,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:29,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:29,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:09:29,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:09:29,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:29,330 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:09:29,353 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:09:29,430 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.238 +2025-10-02 00:09:29,430 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 00:09:29,430 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 00:09:30,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:30,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:30,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:30,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:09:30,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:09:30,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:31,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:31,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:31,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:32,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:09:32,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:09:32,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:35,062 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:09:35,088 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:09:35,170 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.230 +2025-10-02 00:09:35,171 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 00:09:35,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:09:35,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:35,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:35,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:35,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:09:35,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:09:35,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:38,010 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:09:38,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:09:38,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:09:38,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 00:09:38,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-02 00:09:38,317 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:09:38,639 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:09:38,662 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:09:38,739 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.348 +2025-10-02 00:09:38,740 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:09:38,740 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:09:41,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:41,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:42,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:42,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 00:09:42,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 00:09:42,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:43,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:43,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:44,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:44,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:09:44,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:09:44,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:48,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:48,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:48,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:48,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:09:48,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:09:48,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:49,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:49,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:49,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:49,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:09:49,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:09:49,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:50,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:50,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:50,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:50,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:09:50,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:09:50,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:52,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:52,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:52,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:52,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 00:09:52,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 00:09:52,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:54,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:54,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:55,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:55,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:09:55,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:09:55,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:57,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:57,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:57,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:57,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:09:57,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:09:57,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:09:59,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:09:59,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:09:59,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:09:59,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:09:59,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:09:59,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:00,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:00,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:00,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:00,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:10:00,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:10:00,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:01,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:01,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:01,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:01,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 00:10:01,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 00:10:01,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:11,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:11,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:11,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:12,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:10:12,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:10:12,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:15,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:15,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:15,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:15,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:10:15,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:10:15,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:15,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:15,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:15,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:15,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:10:15,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:10:15,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:18,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:18,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:18,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:18,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:10:18,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:10:18,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:20,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:20,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:20,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:20,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:10:20,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:10:20,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:21,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:21,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:21,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:21,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:10:21,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:10:21,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:22,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:22,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:23,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:23,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:10:23,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:10:23,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:24,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:24,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:24,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:24,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:10:24,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:10:24,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:26,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:26,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:26,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:27,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:10:27,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:10:27,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:28,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:28,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:28,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:29,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:10:29,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:10:29,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:31,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:31,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:31,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:31,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:10:31,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:10:31,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:33,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:33,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:33,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:33,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:10:33,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:10:33,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:34,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:34,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:34,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:34,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:10:34,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:10:34,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:35,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:35,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:35,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:35,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:10:35,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:10:35,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:36,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:36,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:36,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:36,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:10:36,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:10:36,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:39,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:39,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:39,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:39,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:10:39,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:10:39,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:42,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:42,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:42,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:42,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:10:42,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:10:42,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:43,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:43,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:43,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:43,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:10:43,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:10:43,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:43,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:43,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:44,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:44,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:10:44,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:10:44,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:46,083 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:10:46,119 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:10:46,200 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.707 +2025-10-02 00:10:46,200 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 00:10:46,200 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 00:10:48,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:48,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:48,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:48,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:10:48,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:10:48,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:52,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:52,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:52,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:52,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:10:52,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:10:52,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:10:55,515 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:10:55,538 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:10:55,615 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.401 +2025-10-02 00:10:55,616 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:10:55,616 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:10:59,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:10:59,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:10:59,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:10:59,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:10:59,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:10:59,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:00,052 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:11:00,087 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:11:00,165 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.493 +2025-10-02 00:11:00,165 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:11:00,165 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:11:04,003 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:11:04,039 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:11:04,114 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.199 +2025-10-02 00:11:04,115 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 00:11:04,115 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 00:11:04,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:04,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:04,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:05,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:11:05,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:11:05,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:13,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:13,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:13,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:13,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:11:13,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:11:13,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:15,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:15,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:15,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:15,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:11:15,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:11:15,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:18,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:18,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:18,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:18,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:11:18,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:11:18,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:20,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:20,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:20,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:20,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:11:20,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:11:20,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:21,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:21,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:21,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:22,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:11:22,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:11:22,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:23,766 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:11:23,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:11:23,869 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.714 +2025-10-02 00:11:23,869 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:11:23,870 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:11:27,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:27,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:27,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:27,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:11:27,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:11:27,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:27,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:27,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:27,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:27,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:11:27,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:11:27,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:29,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:29,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:29,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:29,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:11:29,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:11:29,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:30,452 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:11:30,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:11:30,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:11:30,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 00:11:30,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 00:11:30,745 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:11:31,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:31,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:31,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:32,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:11:32,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:11:32,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:34,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:34,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:34,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:34,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:11:34,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:11:34,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:35,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:35,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:35,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:35,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:11:35,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:11:35,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:36,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:36,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:36,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:36,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:11:36,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:11:36,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:36,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:36,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:36,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:36,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:11:36,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:11:36,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:41,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:41,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:41,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:41,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:11:41,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:11:41,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:44,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:44,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:44,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:45,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 00:11:45,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 00:11:45,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:45,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:45,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:45,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:45,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:11:45,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:11:45,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:49,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:49,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:49,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:49,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:11:49,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:11:49,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:50,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:50,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:50,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:50,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:11:50,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:11:50,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:51,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:51,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:51,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:51,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:11:51,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:11:51,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:57,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:57,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:57,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:57,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:11:57,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:11:57,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:11:59,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:11:59,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:11:59,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:11:59,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:11:59,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:11:59,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:00,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:00,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:00,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:00,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:12:00,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:12:00,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:02,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:02,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:02,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:02,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:12:02,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:12:02,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:05,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:05,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:05,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:05,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:12:05,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:12:05,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:06,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:06,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:06,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:06,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:12:06,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:12:06,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:07,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:07,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:07,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:07,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:12:07,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:12:07,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:17,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:17,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:17,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:17,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:12:17,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:12:17,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:21,605 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:12:21,636 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:12:21,720 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.771 +2025-10-02 00:12:21,721 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 00:12:21,721 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 00:12:22,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:22,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:22,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:22,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:12:22,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:12:22,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:25,669 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:12:25,711 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:12:25,793 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.906 +2025-10-02 00:12:25,794 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 00:12:25,794 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 00:12:26,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:26,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:26,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:26,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:12:26,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:12:26,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:28,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:28,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:28,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:28,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:12:28,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:12:28,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:29,100 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:12:29,128 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:12:29,210 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.167 +2025-10-02 00:12:29,210 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 00:12:29,210 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:12:29,799 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:12:29,826 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:12:29,908 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.672 +2025-10-02 00:12:29,909 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 00:12:29,909 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:12:31,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:31,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:31,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:31,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:12:31,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:12:31,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:34,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:34,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:34,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:35,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:12:35,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:12:35,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:35,289 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:12:35,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:12:35,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:12:35,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 00:12:35,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 00:12:35,577 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:12:37,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:37,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:37,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:37,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:12:37,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:12:37,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:41,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:41,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:41,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:41,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:12:41,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:12:41,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:42,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:42,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:42,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:42,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:12:42,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:12:42,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:42,597 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:12:42,616 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:12:42,692 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.119 +2025-10-02 00:12:42,692 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 00:12:42,692 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 00:12:46,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:46,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:46,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:46,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:12:46,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:12:46,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:12:50,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:12:50,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:12:50,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:12:50,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:12:50,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:12:50,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:01,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:01,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:01,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:01,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:13:01,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:13:01,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:04,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:04,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:04,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:04,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:13:04,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:13:04,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:06,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:06,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:06,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:07,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:13:07,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:13:07,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:09,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:09,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:10,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:10,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:13:10,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:13:10,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:13,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:13,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:13,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:13,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:13:13,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:13:13,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:17,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:17,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:17,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:17,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:13:17,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:13:17,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:18,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:18,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:18,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:18,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:13:18,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:13:18,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:24,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:24,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:24,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:25,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:13:25,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:13:25,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:27,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:27,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:27,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:27,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 00:13:27,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 00:13:27,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:28,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:28,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:28,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:28,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:13:28,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:13:28,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:31,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:31,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:31,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:31,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:13:31,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:13:31,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:34,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:34,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:34,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:34,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:13:34,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:13:34,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:36,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:36,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:36,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:36,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:13:36,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:13:36,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:37,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:37,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:37,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:37,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:13:37,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:13:37,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:45,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:45,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:45,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:45,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:13:45,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:13:45,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:46,007 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:13:46,029 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:13:46,108 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.064 +2025-10-02 00:13:46,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 00:13:46,109 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 00:13:48,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:48,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:48,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:48,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:13:48,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:13:48,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:13:50,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:13:50,384 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:13:50,459 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.103 +2025-10-02 00:13:50,459 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 00:13:50,459 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 00:13:54,954 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:13:54,990 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:13:55,068 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.346 +2025-10-02 00:13:55,069 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:13:55,069 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 00:13:56,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:13:56,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:13:56,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:13:56,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:13:56,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:13:56,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:02,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:02,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:02,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:02,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:14:02,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:14:02,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:03,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:03,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:03,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:03,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 00:14:03,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 00:14:03,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:04,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:04,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:04,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:04,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:14:04,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:14:04,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:08,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:08,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:08,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:08,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:14:08,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:14:08,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:10,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:10,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:10,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:10,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:14:10,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:14:10,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:11,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:11,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:11,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:12,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:14:12,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:14:12,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:13,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:13,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:14,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:14,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:14:14,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:14:14,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:15,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:15,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:15,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:15,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:14:15,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:14:15,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:15,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:15,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:15,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:15,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:14:15,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:14:15,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:17,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:17,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:17,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:17,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:14:17,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:14:17,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:21,108 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:14:21,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:14:21,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:14:21,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 00:14:21,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 00:14:21,410 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:14:21,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:21,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:21,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:21,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:14:21,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:14:21,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:22,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:22,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:22,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:22,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:14:22,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:14:22,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:22,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:22,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:23,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:23,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:14:23,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:14:23,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:23,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:23,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:23,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:24,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:14:24,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:14:24,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:24,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:24,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:24,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:24,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:14:24,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:14:24,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:25,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:25,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:25,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:25,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:14:25,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:14:25,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:27,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:27,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:27,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:27,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:14:27,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:14:27,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:27,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:27,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:27,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:27,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:14:27,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:14:27,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:28,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:28,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:28,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:28,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:14:28,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:14:28,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:28,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:28,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:28,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:28,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:14:28,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:14:28,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:31,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:31,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:31,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:31,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:14:31,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:14:31,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:32,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:32,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:32,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:32,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:14:32,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:14:32,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:35,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:35,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:35,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:35,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:14:35,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:14:35,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:35,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:35,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:35,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:36,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:14:36,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:14:36,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:37,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:37,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:37,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:37,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:14:37,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:14:37,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:37,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:37,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:37,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:37,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:14:37,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:14:37,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:40,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:40,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:40,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:40,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:14:40,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:14:40,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:41,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:41,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:42,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:42,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:14:42,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:14:42,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:42,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:42,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:42,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:42,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:14:42,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:14:42,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:44,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:44,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:44,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:44,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-02 00:14:44,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-02 00:14:44,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:46,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:46,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:46,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:47,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:14:47,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:14:47,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:48,455 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:14:48,481 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:14:48,562 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.790 +2025-10-02 00:14:48,562 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 00:14:48,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 00:14:51,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:51,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:51,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:51,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:14:51,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:14:51,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:52,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:52,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:52,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:52,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:14:52,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:14:52,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:52,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:52,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:52,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:52,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:14:52,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:14:52,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:55,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:55,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:55,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:55,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:14:55,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:14:55,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:56,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:56,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:56,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:56,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:14:56,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:14:56,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:14:59,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:14:59,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:14:59,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:14:59,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 00:14:59,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 00:14:59,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:01,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:01,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:01,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:01,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:15:01,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:15:01,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:01,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:01,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:01,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:02,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:15:02,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:15:02,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:05,784 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:15:05,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:15:05,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:15:06,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 00:15:06,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 00:15:06,080 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:15:06,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:06,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:06,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:06,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:15:06,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:15:06,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:06,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:06,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:06,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:07,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:15:07,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:15:07,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:11,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:11,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:11,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:11,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:15:11,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:15:11,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:12,082 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:15:12,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:15:12,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:15:12,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 00:15:12,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 00:15:12,377 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:15:14,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:14,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:14,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:14,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:15:14,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:15:14,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:15,872 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:15:15,894 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:15:15,971 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.134 +2025-10-02 00:15:15,972 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 00:15:15,972 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 00:15:16,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:16,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:16,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:17,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:15:17,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:15:17,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:18,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:18,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:18,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:18,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:15:18,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:15:18,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:22,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:22,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:22,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:22,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:15:22,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:15:22,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:22,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:22,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:22,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:22,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:15:22,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:15:22,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:23,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:23,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:23,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:23,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:15:23,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:15:23,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:23,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:23,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:23,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:23,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:15:23,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:15:23,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:28,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:28,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:28,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:29,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:15:29,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:15:29,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:29,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:29,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:29,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:29,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:15:29,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:15:29,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:29,528 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:15:29,561 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:15:29,652 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.725 +2025-10-02 00:15:29,653 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 00:15:29,653 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 00:15:31,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:31,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:31,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:31,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:15:31,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:15:31,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:32,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:32,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:32,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:32,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:15:32,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:15:32,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:33,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:33,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:33,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:33,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:15:33,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:15:33,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:33,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:15:33,847 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:15:33,921 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.167 +2025-10-02 00:15:33,922 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 00:15:33,922 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 00:15:37,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:37,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:37,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:37,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:15:37,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:15:37,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:37,706 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:15:37,725 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:15:37,800 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.644 +2025-10-02 00:15:37,801 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 00:15:37,801 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 00:15:38,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:38,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:38,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:39,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:15:39,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:15:39,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:41,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:41,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:41,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:41,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 00:15:41,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 00:15:41,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:42,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:42,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:42,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:42,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:15:42,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:15:42,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:44,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:44,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:44,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:44,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:15:44,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:15:44,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:47,379 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:15:47,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:15:47,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:15:47,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-02 00:15:47,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-02 00:15:47,685 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:15:50,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:50,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:50,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:50,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:15:50,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:15:50,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:52,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:52,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:52,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:52,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:15:52,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:15:52,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:55,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:55,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:55,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:55,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:15:55,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:15:55,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:15:57,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:15:57,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:15:57,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:15:57,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 00:15:57,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 00:15:57,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:02,370 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:16:02,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:16:02,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:16:02,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 00:16:02,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 00:16:02,670 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:16:05,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:05,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:05,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:05,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 00:16:05,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 00:16:05,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:06,288 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:16:06,325 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:16:06,407 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.720 +2025-10-02 00:16:06,407 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 00:16:06,407 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 00:16:06,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:06,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:06,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:06,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:16:06,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:16:06,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:07,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:07,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:07,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:07,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:16:07,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:16:07,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:09,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:09,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:09,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:10,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:16:10,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:16:10,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:11,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:11,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:11,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:11,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:16:11,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:16:11,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:12,219 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:16:12,253 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:16:12,335 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.644 +2025-10-02 00:16:12,335 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 00:16:12,335 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 00:16:13,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:13,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:13,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:13,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:16:13,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:16:13,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:14,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:14,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:14,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:14,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:16:14,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:16:14,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:16,248 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:16:16,273 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:16:16,350 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.756 +2025-10-02 00:16:16,350 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 00:16:16,350 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 00:16:17,982 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:16:17,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:16:18,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:16:18,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 00:16:18,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 00:16:18,276 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:16:18,342 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:16:18,362 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:16:18,439 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.833 +2025-10-02 00:16:18,440 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:16:18,440 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:16:23,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:23,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:23,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:23,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:16:23,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:16:23,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:23,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:24,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:24,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:24,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:16:24,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:16:24,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:24,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:24,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:24,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:24,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:16:24,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:16:24,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:29,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:29,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:29,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:29,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:16:29,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:16:29,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:30,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:30,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:30,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:30,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:16:30,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:16:30,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:33,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:33,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:33,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:33,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:16:33,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:16:33,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:34,060 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:16:34,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:16:34,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:16:34,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 00:16:34,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 00:16:34,344 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:16:35,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:35,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:35,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:35,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:16:35,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:16:35,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:40,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:40,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:40,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:40,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:16:40,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:16:40,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:41,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:41,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:41,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:41,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 00:16:41,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 00:16:41,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:41,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:41,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:41,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:41,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:16:41,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:16:41,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:42,349 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:16:42,393 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:16:42,486 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.678 +2025-10-02 00:16:42,487 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 00:16:42,487 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 00:16:44,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:44,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:44,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:44,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:16:44,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:16:44,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:46,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:46,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:46,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:46,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:16:46,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:16:46,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:47,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:47,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:47,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:47,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:16:47,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:16:47,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:48,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:48,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:49,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:49,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:16:49,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:16:49,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:50,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:50,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:50,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:50,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:16:50,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:16:50,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:54,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:54,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:54,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:54,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:16:54,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:16:54,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:55,337 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:16:55,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:16:55,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:16:55,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 00:16:55,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 00:16:55,630 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:16:56,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:56,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:56,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:56,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:16:56,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:16:56,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:16:57,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:16:57,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:16:57,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:16:57,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:16:57,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:16:57,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:00,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:00,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:00,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:00,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:17:00,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:17:00,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:02,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:02,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:02,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:02,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:17:02,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:17:02,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:03,500 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:17:03,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:17:03,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:17:03,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 00:17:03,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.133s/image) +2025-10-02 00:17:03,766 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:17:04,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:04,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:04,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:04,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:17:04,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:17:04,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:09,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:09,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:09,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:09,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:17:09,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:17:09,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:10,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:10,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:10,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:10,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:17:10,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:17:10,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:10,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:10,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:10,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:10,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:17:10,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:17:10,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:13,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:13,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:13,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:13,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:17:13,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:17:13,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:13,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:13,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:13,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:13,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:17:13,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:17:13,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:14,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:14,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:14,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:14,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:17:14,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:17:14,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:16,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:16,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:16,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:16,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:17:16,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:17:16,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:16,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:16,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:16,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:16,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:17:16,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:17:16,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:19,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:19,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:19,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:19,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 00:17:19,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 00:17:19,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:20,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:20,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:20,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:20,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:17:20,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:17:20,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:22,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:22,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:22,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:22,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:17:22,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:17:22,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:22,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:22,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:22,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:23,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:17:23,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:17:23,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:25,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:25,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:25,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:25,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:17:25,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:17:25,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:30,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:30,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:30,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:30,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:17:30,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:17:30,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:33,156 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:17:33,191 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:17:33,276 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.520 +2025-10-02 00:17:33,276 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 00:17:33,277 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 00:17:40,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:40,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:40,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:40,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:17:40,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:17:40,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:41,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:41,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:41,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:41,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:17:41,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:17:41,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:46,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:46,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:46,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:46,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:17:46,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:17:46,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:49,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:49,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:49,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:49,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:17:49,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:17:49,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:49,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:49,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:49,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:50,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 00:17:50,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 00:17:50,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:50,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:50,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:50,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:50,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:17:50,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:17:50,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:54,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:54,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:54,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:54,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:17:54,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:17:54,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:55,011 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:17:55,034 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:17:55,114 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.466 +2025-10-02 00:17:55,114 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 00:17:55,115 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 00:17:55,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:55,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:55,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:55,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:17:55,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:17:55,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:55,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:55,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:55,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:56,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:17:56,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:17:56,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:56,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:56,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:56,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:56,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:17:56,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:17:56,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:17:58,825 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:17:58,855 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:17:58,937 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.306 +2025-10-02 00:17:58,937 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 00:17:58,938 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 00:17:59,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:17:59,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:17:59,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:17:59,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:17:59,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:17:59,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:00,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:00,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:00,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:00,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:18:00,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:18:00,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:00,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:00,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:00,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:00,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:18:00,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:18:00,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:02,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:02,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:02,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:02,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:18:02,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:18:02,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:03,057 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:18:03,088 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:18:03,166 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.934 +2025-10-02 00:18:03,166 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 00:18:03,166 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:18:03,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:03,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:03,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:04,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:18:04,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:18:04,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:05,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:05,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:05,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:06,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:18:06,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:18:06,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:10,478 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:18:10,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:18:10,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:18:10,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-02 00:18:10,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-02 00:18:10,770 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:18:11,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:11,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:11,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:11,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:18:11,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:18:11,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:11,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:11,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:11,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:12,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:18:12,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:18:12,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:16,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:16,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:16,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:16,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:18:16,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:18:16,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:19,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:19,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:19,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:19,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:18:19,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:18:19,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:20,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:20,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:21,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:21,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:18:21,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:18:21,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:21,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:21,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:21,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:21,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 00:18:21,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 00:18:21,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:22,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:22,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:22,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:22,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:18:22,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:18:22,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:23,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:23,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:23,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:24,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:18:24,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:18:24,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:27,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:27,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:27,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:27,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:18:27,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:18:27,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:28,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:28,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:28,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:28,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:18:28,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:18:28,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:28,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:28,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:28,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:29,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:18:29,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:18:29,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:29,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:29,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:29,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:29,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:18:29,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:18:29,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:33,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:33,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:33,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:33,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:18:33,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:18:33,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:33,428 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:18:33,444 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:18:33,524 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.592 +2025-10-02 00:18:33,524 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 00:18:33,525 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 00:18:33,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:33,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:33,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:34,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:18:34,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:18:34,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:35,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:35,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:35,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:35,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:18:35,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:18:35,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:37,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:37,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:37,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:37,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:18:37,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:18:37,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:38,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:38,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:38,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:38,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:18:38,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:18:38,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:41,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:41,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:41,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:41,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:18:41,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:18:41,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:42,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:42,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:42,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:42,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:18:42,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:18:42,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:43,613 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:18:43,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:18:43,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:18:43,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-02 00:18:43,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-02 00:18:43,888 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:18:45,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:45,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:45,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:45,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:18:45,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:18:45,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:47,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:47,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:47,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:47,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:18:47,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:18:47,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:49,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:49,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:49,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:49,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:18:49,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:18:49,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:53,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:53,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:53,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:53,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:18:53,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:18:53,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:53,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:53,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:53,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:54,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:18:54,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:18:54,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:54,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:54,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:54,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:54,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:18:54,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:18:54,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:57,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:57,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:57,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:57,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:18:57,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:18:57,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:18:57,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:18:57,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:18:57,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:18:57,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:18:57,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:18:57,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:00,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:00,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:00,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:00,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:19:00,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:19:00,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:03,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:03,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:03,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:03,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:19:03,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:19:03,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:06,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:06,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:06,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:06,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:19:06,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:19:06,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:07,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:07,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:07,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:07,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:19:07,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:19:07,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:10,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:10,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:10,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:10,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:19:10,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:19:10,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:10,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:10,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:10,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:10,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:19:10,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:19:10,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:12,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:12,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:12,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:12,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:19:12,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:19:12,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:15,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:15,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:15,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:15,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:19:15,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:19:15,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:16,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:16,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:16,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:16,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 00:19:16,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 00:19:16,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:18,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:18,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:19,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:19,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:19:19,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:19:19,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:19,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:19,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:19,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:19,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:19:19,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:19:19,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:21,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:21,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:21,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:21,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:19:21,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:19:21,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:23,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:23,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:23,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:23,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:19:23,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:19:23,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:26,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:26,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:26,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:26,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:19:26,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:19:26,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:27,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:27,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:27,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:27,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 00:19:27,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 00:19:27,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:29,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:29,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:29,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:29,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:19:29,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:19:29,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:29,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:29,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:29,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:30,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:19:30,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:19:30,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:30,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:30,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:30,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:30,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:19:30,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:19:30,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:33,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:33,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:33,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:33,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:19:33,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:19:33,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:34,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:34,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:34,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:35,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:19:35,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:19:35,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:35,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:35,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:35,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:36,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:19:36,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:19:36,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:38,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:38,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:38,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:38,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:19:38,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:19:38,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:41,291 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:19:41,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:19:41,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:19:41,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 00:19:41,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-02 00:19:41,586 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:19:42,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:42,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:42,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:42,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:19:42,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:19:42,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:46,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:46,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:46,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:46,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:19:46,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:19:46,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:47,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:47,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:47,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:47,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:19:47,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:19:47,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:52,755 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:19:52,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:19:52,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:19:53,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 00:19:53,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 00:19:53,051 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:19:54,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:54,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:54,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:54,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:19:54,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:19:54,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:57,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:57,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:57,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:57,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:19:57,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:19:57,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:19:57,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:19:57,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:19:57,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:19:57,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:19:57,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:19:57,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:00,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:00,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:00,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:00,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:20:00,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:20:00,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:01,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:01,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:01,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:01,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:20:01,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:20:01,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:01,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:01,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:01,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:02,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:20:02,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:20:02,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:04,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:04,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:04,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:04,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:20:04,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:20:04,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:07,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:07,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:07,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:07,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:20:07,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:20:07,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:08,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:08,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:08,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:08,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:20:08,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:20:08,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:09,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:09,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:09,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:09,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:20:09,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:20:09,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:10,640 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:20:10,664 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:20:10,744 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.520 +2025-10-02 00:20:10,744 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 00:20:10,744 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 00:20:11,628 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:20:11,659 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:20:11,741 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.784 +2025-10-02 00:20:11,742 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 00:20:11,742 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:20:12,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:12,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:12,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:13,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:20:13,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:20:13,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:13,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:13,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:13,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:13,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:20:13,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:20:13,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:14,259 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:20:14,282 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:20:14,357 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.695 +2025-10-02 00:20:14,357 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 00:20:14,358 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 00:20:15,721 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:20:15,738 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(689, 689, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:20:15,811 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.795 +2025-10-02 00:20:15,812 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 00:20:15,812 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 00:20:17,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:17,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:17,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:17,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:20:17,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:20:17,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:17,810 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:20:17,835 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:20:17,910 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.554 +2025-10-02 00:20:17,911 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 00:20:17,911 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 00:20:21,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:21,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:21,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:21,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:20:21,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:20:21,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:21,641 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:20:21,677 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(746, 746, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:20:21,753 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.656 +2025-10-02 00:20:21,754 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 00:20:21,754 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 00:20:23,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:23,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:23,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:23,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:20:23,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:20:23,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:24,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:24,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:24,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:24,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:20:24,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:20:24,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:30,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:30,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:30,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:30,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:20:30,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:20:30,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:31,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:31,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:31,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:31,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:20:31,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:20:31,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:34,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:34,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:34,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:34,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:20:34,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:20:34,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:37,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:37,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:37,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:37,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:20:37,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:20:37,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:42,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:42,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:42,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:42,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 00:20:42,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 00:20:42,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:43,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:43,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:43,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:43,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:20:43,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:20:43,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:44,149 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:20:44,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:20:44,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:20:44,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 00:20:44,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 00:20:44,433 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:20:46,234 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:20:46,271 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:20:46,354 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.059 +2025-10-02 00:20:46,354 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 00:20:46,354 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:20:47,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:47,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:47,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:47,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:20:47,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:20:47,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:48,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:48,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:48,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:48,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:20:48,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:20:48,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:51,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:51,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:51,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:51,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:20:51,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:20:51,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:52,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:52,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:52,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:52,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:20:52,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:20:52,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:56,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:56,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:56,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:56,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:20:56,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:20:56,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:20:57,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:20:57,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:20:57,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:20:58,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:20:58,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:20:58,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:01,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:01,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:01,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:01,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 00:21:01,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 00:21:01,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:01,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:01,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:01,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:02,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:21:02,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:21:02,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:02,969 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:21:02,994 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:21:03,082 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.399 +2025-10-02 00:21:03,083 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 00:21:03,083 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 00:21:08,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:08,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:08,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:08,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:21:08,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:21:08,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:16,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:16,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:16,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:16,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:21:16,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:21:16,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:16,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:16,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:16,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:16,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:21:16,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:21:16,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:17,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:17,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:17,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:17,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:21:17,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:21:17,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:21,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:21,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:21,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:21,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 00:21:21,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 00:21:21,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:23,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:23,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:23,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:23,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:21:23,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:21:23,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:29,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:29,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:29,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:29,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:21:29,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:21:29,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:30,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:30,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:30,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:30,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 00:21:30,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 00:21:30,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:34,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:34,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:34,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:34,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:21:34,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:21:34,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:36,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:36,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:36,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:36,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 00:21:36,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 00:21:36,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:37,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:37,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:37,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:37,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 00:21:37,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 00:21:37,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:39,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:39,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:39,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:39,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:21:39,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:21:39,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:40,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:40,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:40,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:40,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:21:40,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:21:40,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:43,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:43,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:43,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:43,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 00:21:43,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 00:21:43,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:43,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:43,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:43,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:44,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:21:44,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:21:44,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:44,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:44,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:44,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:44,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:21:44,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:21:44,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:46,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:46,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:46,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:46,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:21:46,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:21:46,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:48,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:48,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:48,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:48,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:21:48,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:21:48,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:49,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:49,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:49,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:49,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 00:21:49,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 00:21:49,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:49,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:49,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:50,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:50,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:21:50,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:21:50,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:55,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:55,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:55,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:55,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:21:55,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:21:55,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:56,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:56,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:56,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:21:56,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:21:56,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:21:56,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:21:59,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:21:59,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:21:59,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:00,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:22:00,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:22:00,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:22:02,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:22:02,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:22:02,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:02,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 00:22:02,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 00:22:02,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:22:07,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:22:07,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:22:07,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:07,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 00:22:07,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 00:22:07,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:22:11,926 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:22:11,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:22:11,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:22:12,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s +2025-10-02 00:22:12,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image) +2025-10-02 00:22:12,249 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:22:12,317 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:22:12,336 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:22:12,407 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.258 +2025-10-02 00:22:12,407 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-02 00:22:12,408 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-02 00:22:18,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:22:18,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:22:18,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:18,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 00:22:18,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 00:22:18,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:22:23,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:22:23,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:22:23,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:23,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:22:23,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:22:23,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:22:33,403 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:22:33,430 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:22:33,511 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.519 +2025-10-02 00:22:33,511 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 00:22:33,512 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 00:22:37,204 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:22:37,230 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:22:37,310 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.578 +2025-10-02 00:22:37,310 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 00:22:37,310 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 00:22:40,446 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:22:40,466 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:22:40,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.520 +2025-10-02 00:22:40,550 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 00:22:40,550 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 00:22:41,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:22:41,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:22:41,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:42,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 00:22:42,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 00:22:42,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:22:45,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:22:45,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:22:45,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:46,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:22:46,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:22:46,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:22:47,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:22:47,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:22:47,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:47,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:22:47,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:22:47,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:22:50,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:22:50,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:22:50,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:50,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:22:50,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:22:50,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:22:50,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:22:50,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:22:51,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:51,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:22:51,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:22:51,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:22:53,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:22:53,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:22:53,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:53,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:22:53,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:22:53,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:22:56,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:22:56,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:22:56,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:56,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:22:56,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:22:56,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:22:57,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:22:57,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:22:57,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:22:57,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:22:57,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:22:57,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:23:01,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:23:01,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:23:01,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:23:01,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:23:01,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:23:01,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:23:01,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:23:01,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:23:01,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:23:01,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 00:23:01,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 00:23:01,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:23:05,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:23:05,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:23:05,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:23:05,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 00:23:05,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 00:23:05,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:23:20,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:23:20,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:23:20,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:23:20,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:23:20,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:23:20,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:23:24,854 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:23:24,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:23:24,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:23:25,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 00:23:25,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 00:23:25,144 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:23:36,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:23:36,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:23:36,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:23:36,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:23:36,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:23:36,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:23:41,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:23:41,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:23:41,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:23:41,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:23:41,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:23:41,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:23:46,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:23:46,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:23:46,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:23:46,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:23:46,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:23:46,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:23:49,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:23:49,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:23:49,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:23:49,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:23:49,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:23:49,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:23:54,821 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:23:54,844 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:23:54,921 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.332 +2025-10-02 00:23:54,922 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 00:23:54,922 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 00:23:56,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:23:56,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:23:56,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:23:56,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:23:56,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:23:56,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:23:58,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:23:58,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:23:58,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:23:58,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:23:58,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:23:58,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:01,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:01,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:02,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:02,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:24:02,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:24:02,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:03,255 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:24:03,296 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:24:03,373 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=192.375 +2025-10-02 00:24:03,373 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 00:24:03,373 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 00:24:05,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:05,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:05,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:05,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:24:05,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:24:05,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:08,935 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:24:08,958 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:24:09,035 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.888 +2025-10-02 00:24:09,035 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 00:24:09,035 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:24:13,592 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:24:13,628 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:24:13,706 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.557 +2025-10-02 00:24:13,706 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:24:13,706 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:24:16,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:16,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:16,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:16,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:24:16,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:24:16,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:22,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:22,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:22,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:22,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:24:22,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:24:22,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:28,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:28,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:28,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:28,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:24:28,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:24:28,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:33,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:33,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:33,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:33,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:24:33,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:24:33,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:33,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:33,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:33,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:33,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 00:24:33,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 00:24:33,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:36,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:36,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:36,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:36,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:24:36,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:24:36,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:39,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:39,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:39,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:39,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:24:39,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:24:39,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:42,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:42,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:42,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:42,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:24:42,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:24:42,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:45,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:45,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:45,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:45,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:24:45,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:24:45,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:45,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:45,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:45,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:45,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:24:45,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:24:45,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:48,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:48,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:48,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:48,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:24:48,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:24:48,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:53,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:53,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:53,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:53,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:24:53,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:24:53,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:54,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:54,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:54,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:55,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:24:55,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:24:55,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:24:56,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:24:56,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:24:56,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:24:56,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:24:56,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:24:56,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:02,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:02,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:02,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:02,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:25:02,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:25:02,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:03,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:03,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:03,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:03,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:25:03,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:25:03,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:07,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:07,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:07,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:07,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:25:07,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:25:07,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:10,345 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:25:10,367 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:25:10,452 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.026 +2025-10-02 00:25:10,452 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 00:25:10,452 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 00:25:11,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:11,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:11,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:11,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 00:25:11,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 00:25:11,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:15,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:15,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:15,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:15,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:25:15,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:25:15,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:19,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:19,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:19,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:20,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 00:25:20,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 00:25:20,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:20,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:20,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:20,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:20,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:25:20,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:25:20,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:23,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:23,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:23,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:24,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:25:24,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:25:24,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:26,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:26,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:26,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:26,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:25:26,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:25:26,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:27,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:27,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:27,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:27,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:25:27,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:25:27,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:30,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:30,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:30,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:30,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:25:30,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:25:30,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:36,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:36,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:36,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:36,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:25:36,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:25:36,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:38,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:38,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:38,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:38,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:25:38,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:25:38,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:39,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:39,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:39,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:39,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:25:39,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:25:39,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:42,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:42,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:42,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:42,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:25:42,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:25:42,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:46,814 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:25:46,846 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:25:46,941 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=182.354 +2025-10-02 00:25:46,941 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 00:25:46,941 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 00:25:50,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:50,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:50,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:50,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:25:50,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:25:50,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:50,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:50,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:50,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:51,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:25:51,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:25:51,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:51,267 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:25:51,300 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:25:51,387 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.472 +2025-10-02 00:25:51,388 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 00:25:51,388 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 00:25:51,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:51,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:51,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:51,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:25:51,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:25:51,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:52,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:52,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:52,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:52,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:25:52,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:25:52,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:55,258 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:25:55,290 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:25:55,378 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.014 +2025-10-02 00:25:55,378 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 00:25:55,378 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 00:25:56,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:56,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:56,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:56,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:25:56,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:25:56,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:57,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:57,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:57,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:57,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:25:57,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:25:57,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:57,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:57,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:57,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:58,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:25:58,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:25:58,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:25:58,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:25:58,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:25:58,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:25:58,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:25:58,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:25:58,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:26:02,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:26:02,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:26:02,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:26:03,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:26:03,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:26:03,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:26:07,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:26:07,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:26:07,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:26:07,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 00:26:07,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 00:26:07,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:26:07,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:26:07,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:26:07,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:26:07,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:26:07,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:26:07,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:26:14,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:26:14,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:26:14,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:26:14,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:26:14,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:26:14,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:26:14,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:26:14,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:26:14,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:26:14,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:26:14,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:26:14,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:26:15,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:26:15,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:26:15,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:26:15,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:26:15,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:26:15,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:26:19,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:26:19,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:26:19,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:26:19,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:26:19,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:26:19,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:26:27,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:26:27,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:26:27,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:26:27,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:26:27,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:26:27,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:26:42,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:26:42,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:26:42,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:26:42,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 00:26:42,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 00:26:42,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:26:46,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:26:46,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:26:46,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:26:46,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:26:46,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:26:46,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:26:50,691 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:26:50,729 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:26:50,806 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.550 +2025-10-02 00:26:50,806 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 00:26:50,806 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 00:26:53,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:26:53,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:26:53,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:26:53,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:26:53,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:26:53,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:26:56,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:26:56,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:26:56,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:26:56,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:26:56,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:26:56,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:27:03,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:27:03,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:27:03,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:27:03,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:27:03,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:27:03,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:27:04,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:27:04,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:27:04,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:27:04,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.126s +2025-10-02 00:27:04,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.126s (avg: 0.126s/image) +2025-10-02 00:27:04,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:27:07,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:27:07,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:27:07,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:27:07,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:27:07,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:27:07,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:27:10,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:27:10,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:27:10,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:27:10,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:27:10,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:27:10,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:27:11,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:27:11,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:27:11,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:27:11,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:27:11,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:27:11,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:27:11,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:27:11,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:27:11,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:27:12,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 00:27:12,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 00:27:12,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:27:29,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:27:29,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:27:29,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:27:29,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:27:29,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:27:29,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:27:38,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:27:38,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:27:38,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:27:38,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:27:38,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:27:38,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:27:39,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:27:39,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:27:39,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:27:39,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 00:27:39,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 00:27:39,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:27:43,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:27:43,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:27:44,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:27:44,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:27:44,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:27:44,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:27:47,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:27:47,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:27:47,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:27:47,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:27:47,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:27:47,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:27:57,363 - main - INFO - 🚀 인페인팅 서버 시작 중... +2025-10-02 00:27:57,364 - main - INFO - ✅ 공유 객체를 app.state에 저장 완료 +2025-10-02 00:27:57,364 - main - INFO - 🔄 상태 저장 백그라운드 작업 생성 중... +2025-10-02 00:27:57,364 - main - INFO - ✅ 상태 저장 백그라운드 작업 생성 완료 +2025-10-02 00:27:57,364 - main - INFO - 🚀 세션 풀 초기화 (CUDA 자동 감지) +2025-10-02 00:27:57,364 - app.core.session_pool - INFO - Initializing dynamic session pools... +2025-10-02 00:27:57,364 - app.core.session_pool - INFO - Pre-loading 4 sessions for simple_lama +2025-10-02 00:27:57,365 - main - INFO - 🔄 상태 저장 백그라운드 작업 시작됨 +2025-10-02 00:27:57,365 - app.core.session_pool - INFO - Creating new session simple_lama_0 for simple_lama... +2025-10-02 00:27:59,002 - app.core.session_pool - INFO - Creating new session simple_lama_1 for simple_lama... +2025-10-02 00:27:59,003 - app.core.session_pool - INFO - Creating new session simple_lama_2 for simple_lama... +2025-10-02 00:27:59,003 - app.core.session_pool - INFO - Creating new session simple_lama_3 for simple_lama... +2025-10-02 00:27:59,003 - app.models.simple_lama - INFO - Loading Simple LAMA model... +2025-10-02 00:27:59,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +2025-10-02 00:27:59,994 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +2025-10-02 00:27:59,994 - app.models.simple_lama - INFO - Loading Simple LAMA model... +2025-10-02 00:28:00,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +2025-10-02 00:28:00,718 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +2025-10-02 00:28:00,718 - app.models.simple_lama - INFO - Loading Simple LAMA model... +2025-10-02 00:28:01,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +2025-10-02 00:28:01,510 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +2025-10-02 00:28:01,510 - app.models.simple_lama - INFO - Loading Simple LAMA model... +2025-10-02 00:28:02,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +2025-10-02 00:28:02,240 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +2025-10-02 00:28:02,240 - app.core.session_pool - INFO - Successfully created session simple_lama_0 +2025-10-02 00:28:02,241 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +2025-10-02 00:28:02,241 - app.core.session_pool - INFO - Successfully created session simple_lama_1 +2025-10-02 00:28:02,241 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +2025-10-02 00:28:02,241 - app.core.session_pool - INFO - Successfully created session simple_lama_2 +2025-10-02 00:28:02,242 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +2025-10-02 00:28:02,242 - app.core.session_pool - INFO - Successfully created session simple_lama_3 +2025-10-02 00:28:02,242 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +2025-10-02 00:28:02,242 - app.core.session_pool - INFO - Pre-loading 1 sessions for migan +2025-10-02 00:28:02,242 - app.core.session_pool - INFO - Creating new session migan_0 for migan... +2025-10-02 00:28:02,264 - app.models.migan - INFO - Loading MIGAN ONNX model... +2025-10-02 00:28:02,264 - app.models.migan - INFO - MIGAN ONNX 런타임 세션 생성 시도... +2025-10-02 00:28:02,264 - app.models.migan - INFO - MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider'] +2025-10-02 00:28:02,533 - app.models.migan - INFO - MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] +2025-10-02 00:28:02,533 - app.models.migan - INFO - MIGAN ONNX model loaded successfully +2025-10-02 00:28:02,534 - app.core.session_pool - INFO - Successfully created session migan_0 +2025-10-02 00:28:02,534 - app.core.session_pool - INFO - ➕ Session Created (migan). Status -> simple_lama: 4, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (11.0%) +2025-10-02 00:28:02,535 - app.core.session_pool - INFO - Pre-loading 1 sessions for rembg +2025-10-02 00:28:02,535 - app.core.session_pool - INFO - Creating new session rembg_0 for rembg... +2025-10-02 00:28:02,536 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료 +2025-10-02 00:28:02,536 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx +2025-10-02 00:28:02,949 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output +2025-10-02 00:28:02,950 - app.core.session_pool - INFO - Successfully created session rembg_0 +2025-10-02 00:28:02,950 - app.core.session_pool - INFO - ➕ Session Created (rembg). Status -> simple_lama: 4, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (12.2%) +2025-10-02 00:28:02,950 - app.core.session_pool - INFO - Session pools initialized successfully +2025-10-02 00:28:02,951 - main - INFO - ✅ 세션 풀 초기화 완료 +2025-10-02 00:28:02,951 - app.core.worker_manager - INFO - Starting worker manager... +2025-10-02 00:28:02,951 - app.core.worker_manager - INFO - Worker manager started with 6 workers +2025-10-02 00:28:02,951 - main - INFO - ✅ 워커 매니저 시작 완료 +2025-10-02 00:28:02,951 - app.core.batch_manager - INFO - Starting BatchManager... +2025-10-02 00:28:02,951 - app.core.batch_manager - INFO - BatchManager started successfully. +2025-10-02 00:28:02,951 - main - INFO - ✅ 배치 관리자 시작 완료 +2025-10-02 00:28:02,952 - main - INFO - 🎉 인페인팅 서버 시작 완료! +2025-10-02 00:28:02,952 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다. +2025-10-02 00:28:02,952 - app.core.session_pool - INFO - Idle session reaper started. Timeout: 1800s, Check Interval: 60s +2025-10-02 00:28:03,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:03,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:03,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:04,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 1.223s +2025-10-02 00:28:04,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 1.223s (avg: 1.223s/image) +2025-10-02 00:28:04,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:05,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:05,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:05,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:11,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 6.707s +2025-10-02 00:28:11,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 6.707s (avg: 6.707s/image) +2025-10-02 00:28:11,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:16,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:16,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:16,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:16,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:28:16,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:28:16,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:17,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:17,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:17,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:18,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:28:18,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:28:18,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:18,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:18,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:18,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:19,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:28:19,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:28:19,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:19,931 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:28:19,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:28:20,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:28:20,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.346s +2025-10-02 00:28:20,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.346s (avg: 0.173s/image) +2025-10-02 00:28:20,279 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:28:20,600 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:28:20,626 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:28:28,798 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.134 +2025-10-02 00:28:28,799 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 8.170s +2025-10-02 00:28:28,799 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 8.173s +2025-10-02 00:28:32,332 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:28:32,354 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:28:32,434 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.688 +2025-10-02 00:28:32,434 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 00:28:32,435 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 00:28:36,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:36,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:36,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:36,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 00:28:36,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 00:28:36,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:44,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:44,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:44,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:44,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 00:28:44,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 00:28:44,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:47,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:47,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:47,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:47,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 00:28:47,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 00:28:47,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:47,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:47,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:47,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:47,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:28:47,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:28:47,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:49,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:49,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:49,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:49,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:28:49,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:28:49,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:50,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:50,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:50,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:50,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:28:50,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:28:50,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:51,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:51,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:51,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:51,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 00:28:51,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 00:28:51,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:52,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:52,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:53,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:53,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:28:53,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:28:53,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:57,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:57,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:57,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:57,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:28:57,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:28:57,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:28:58,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:28:58,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:28:58,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:28:58,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:28:58,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:28:58,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:01,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:01,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:01,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:02,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:29:02,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:29:02,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:05,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:05,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:05,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:05,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:29:05,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:29:05,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:06,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:06,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:06,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:06,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:29:06,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:29:06,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:06,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:06,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:06,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:06,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 00:29:06,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 00:29:06,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:09,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:09,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:09,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:09,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 00:29:09,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 00:29:09,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:11,243 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:29:11,264 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:29:11,345 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.764 +2025-10-02 00:29:11,345 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 00:29:11,345 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 00:29:13,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:13,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:13,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:13,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:29:13,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:29:13,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:14,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:14,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:14,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:14,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 00:29:14,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 00:29:14,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:18,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:18,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:18,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:18,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:29:18,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:29:18,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:19,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:19,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:19,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:19,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:29:19,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:29:19,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:21,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:21,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:21,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:22,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 00:29:22,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 00:29:22,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:22,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:22,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:22,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:22,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:29:22,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:29:22,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:23,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:23,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:23,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:23,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:29:23,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:29:23,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:26,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:26,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:26,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:26,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:29:26,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:29:26,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:26,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:26,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:27,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:27,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:29:27,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:29:27,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:29,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:29,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:29,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:29,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 00:29:29,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 00:29:29,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:29,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:29,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:29,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:29,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:29:29,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:29:29,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:31,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:31,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:31,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:31,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:29:31,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:29:31,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:32,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:32,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:32,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:32,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:29:32,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:29:32,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:33,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:33,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:34,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:34,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:29:34,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:29:34,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:35,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:35,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:35,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:35,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:29:35,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:29:35,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:35,605 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:29:35,627 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:29:35,702 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.751 +2025-10-02 00:29:35,702 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 00:29:35,702 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 00:29:36,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:36,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:36,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:36,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:29:36,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:29:36,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:37,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:37,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:37,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:37,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 00:29:37,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 00:29:37,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:39,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:39,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:39,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:39,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:29:39,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:29:39,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:40,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:40,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:40,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:40,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:29:40,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:29:40,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:41,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:41,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:41,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:41,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:29:41,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:29:41,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:42,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:42,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:42,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:42,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 00:29:42,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 00:29:42,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:43,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:43,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:43,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:43,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:29:43,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:29:43,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:44,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:44,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:44,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:44,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 00:29:44,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 00:29:44,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:44,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:44,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:45,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:45,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:29:45,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:29:45,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:46,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:46,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:46,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:46,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:29:46,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:29:46,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:48,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:48,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:48,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:48,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-02 00:29:48,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-02 00:29:48,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:50,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:50,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:50,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:50,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:29:50,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:29:50,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:53,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:53,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:53,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:53,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:29:53,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:29:53,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:55,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:55,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:55,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:55,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:29:55,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:29:55,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:56,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:56,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:56,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:56,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:29:56,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:29:56,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:57,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:57,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:29:57,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:29:57,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:29:57,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:29:57,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:29:59,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:29:59,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:00,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:00,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:30:00,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:30:00,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:02,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:02,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:02,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:02,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:30:02,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:30:02,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:05,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:05,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:05,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:05,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:30:05,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:30:05,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:07,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:07,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:07,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:07,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:30:07,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:30:07,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:07,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:07,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:07,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:07,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 00:30:07,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 00:30:07,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:14,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:14,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:14,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:14,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:30:14,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:30:14,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:19,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:19,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:19,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:19,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:30:19,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:30:19,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:20,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:20,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:20,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:20,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:30:20,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:30:20,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:20,579 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:30:20,602 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:30:20,680 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.876 +2025-10-02 00:30:20,680 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:30:20,680 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:30:21,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:21,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:21,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:22,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:30:22,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:30:22,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:26,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:26,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:26,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:26,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:30:26,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:30:26,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:27,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:27,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:27,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:28,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:30:28,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:30:28,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:31,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:31,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:31,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:31,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:30:31,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:30:31,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:31,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:31,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:31,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:31,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:30:31,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:30:31,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:33,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:33,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:33,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:33,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:30:33,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:30:33,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:35,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:35,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:35,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:35,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:30:35,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:30:35,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:37,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:37,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:37,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:37,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:30:37,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:30:37,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:44,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:44,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:44,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:44,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:30:44,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:30:44,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:44,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:44,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:44,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:45,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:30:45,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:30:45,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:49,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:49,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:49,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:49,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:30:49,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:30:49,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:49,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:49,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:50,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:50,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:30:50,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:30:50,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:51,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:51,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:51,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:51,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:30:51,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:30:51,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:55,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:55,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:55,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:55,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:30:55,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:30:55,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:57,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:57,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:57,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:57,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:30:57,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:30:57,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:30:59,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:30:59,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:30:59,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:30:59,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:30:59,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:30:59,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:02,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:02,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:03,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:03,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:31:03,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:31:03,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:03,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:03,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:03,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:03,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:31:03,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:31:03,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:04,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:04,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:04,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:05,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:31:05,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:31:05,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:07,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:07,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:07,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:07,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:31:07,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:31:07,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:09,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:09,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:09,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:09,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:31:09,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:31:09,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:10,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:10,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:10,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:10,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:31:10,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:31:10,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:11,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:11,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:11,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:11,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:31:11,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:31:11,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:12,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:12,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:12,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:12,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:31:12,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:31:12,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:18,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:18,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:18,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:18,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:31:18,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:31:18,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:19,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:19,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:19,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:19,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:31:19,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:31:19,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:24,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:24,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:24,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:24,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:31:24,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:31:24,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:25,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:25,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:25,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:25,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:31:25,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:31:25,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:25,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:25,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:25,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:25,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:31:25,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:31:25,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:28,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:28,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:28,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:28,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:31:28,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:31:28,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:31,177 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:31:31,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:31:31,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:31:37,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 6.675s +2025-10-02 00:31:37,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 6.675s (avg: 3.337s/image) +2025-10-02 00:31:37,854 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:31:39,592 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:31:39,626 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:31:39,711 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.714 +2025-10-02 00:31:39,711 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 00:31:39,712 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 00:31:41,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:41,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:41,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:41,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:31:41,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:31:41,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:42,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:42,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:42,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:42,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:31:42,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:31:42,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:43,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:43,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:43,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:43,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:31:43,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:31:43,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:43,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:43,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:43,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:44,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:31:44,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:31:44,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:44,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:44,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:44,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:44,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:31:44,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:31:44,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:48,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:48,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:48,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:48,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:31:48,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:31:48,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:48,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:48,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:49,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:49,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 00:31:49,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 00:31:49,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:50,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:50,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:50,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:50,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:31:50,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:31:50,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:51,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:51,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:51,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:51,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:31:51,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:31:51,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:52,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:52,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:52,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:52,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:31:52,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:31:52,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:54,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:54,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:54,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:54,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:31:54,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:31:54,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:54,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:54,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:54,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:55,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:31:55,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:31:55,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:55,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:55,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:55,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:55,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:31:55,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:31:55,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:56,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:56,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:56,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:56,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:31:56,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:31:56,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:56,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:57,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:57,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:57,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:31:57,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:31:57,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:31:57,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:31:57,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:31:57,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:31:57,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:31:57,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:31:57,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:00,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:00,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:00,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:00,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:32:00,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:32:00,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:00,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:00,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:00,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:00,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:32:00,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:32:00,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:01,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:01,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:01,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:01,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:32:01,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:32:01,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:01,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:01,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:01,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:01,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:32:01,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:32:01,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:03,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:03,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:03,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:03,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:32:03,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:32:03,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:04,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:04,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:04,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:04,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:32:04,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:32:04,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:05,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:05,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:05,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:06,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:32:06,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:32:06,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:06,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:06,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:06,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:06,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:32:06,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:32:06,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:12,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:12,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:12,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:12,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:32:12,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:32:12,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:12,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:12,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:12,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:12,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:32:12,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:32:12,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:13,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:13,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:13,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:13,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:32:13,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:32:13,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:15,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:15,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:15,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:15,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:32:15,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:32:15,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:15,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:15,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:15,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:15,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:32:15,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:32:15,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:16,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:16,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:16,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:17,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:32:17,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:32:17,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:19,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:19,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:19,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:19,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:32:19,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:32:19,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:20,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:20,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:20,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:20,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:32:20,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:32:20,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:21,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:21,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:21,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:21,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:32:21,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:32:21,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:21,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:21,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:21,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:21,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:32:21,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:32:21,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:22,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:22,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:22,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:22,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 00:32:22,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 00:32:22,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:24,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:24,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:24,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:24,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:32:24,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:32:24,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:25,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:25,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:25,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:25,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:32:25,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:32:25,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:29,856 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:32:29,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:32:29,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:32:30,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 00:32:30,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 00:32:30,158 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:32:30,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:30,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:30,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:30,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 00:32:30,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 00:32:30,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:31,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:31,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:31,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:31,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:32:31,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:32:31,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:31,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:31,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:31,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:32,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:32:32,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:32:32,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:36,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:36,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:36,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:36,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:32:36,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:32:36,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:37,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:37,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:37,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:37,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:32:37,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:32:37,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:39,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:39,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:39,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:39,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:32:39,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:32:39,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:42,929 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:32:42,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:32:42,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:32:43,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +2025-10-02 00:32:43,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +2025-10-02 00:32:43,191 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:32:44,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:44,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:44,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:44,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:32:44,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:32:44,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:48,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:48,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:48,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:48,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:32:48,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:32:48,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:54,136 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:32:54,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:32:54,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:32:54,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 00:32:54,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 00:32:54,422 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:32:56,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:56,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:56,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:32:56,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:32:56,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:32:56,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:32:59,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:32:59,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:32:59,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:00,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:33:00,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:33:00,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:01,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:01,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:01,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:01,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:33:01,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:33:01,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:02,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:02,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:02,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:02,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:33:02,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:33:02,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:06,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:06,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:06,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:06,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:33:06,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:33:06,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:08,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:08,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:08,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:08,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:33:08,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:33:08,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:08,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:08,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:09,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:09,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:33:09,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:33:09,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:12,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:12,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:12,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:13,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:33:13,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:33:13,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:14,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:14,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:14,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:14,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:33:14,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:33:14,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:25,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:25,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:25,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:25,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 00:33:25,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 00:33:25,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:31,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:31,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:31,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:32,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:33:32,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:33:32,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:35,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:35,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:35,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:35,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:33:35,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:33:35,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:38,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:38,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:38,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:38,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:33:38,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:33:38,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:39,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:39,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:39,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:39,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:33:39,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:33:39,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:40,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:40,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:40,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:40,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 00:33:40,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 00:33:40,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:42,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:42,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:42,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:43,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:33:43,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:33:43,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:44,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:44,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:44,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:44,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:33:44,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:33:44,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:45,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:45,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:45,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:45,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:33:45,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:33:45,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:48,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:48,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:48,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:48,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:33:48,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:33:48,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:48,630 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:33:48,652 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:33:48,742 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.721 +2025-10-02 00:33:48,742 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 00:33:48,742 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 00:33:52,194 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:33:52,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:33:52,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:33:52,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 00:33:52,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 00:33:52,481 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:33:52,860 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:33:52,877 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:33:52,949 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.183 +2025-10-02 00:33:52,949 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-02 00:33:52,949 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 00:33:52,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:52,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:53,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:53,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:33:53,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:33:53,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:56,269 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:33:56,295 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:33:56,376 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.789 +2025-10-02 00:33:56,377 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 00:33:56,378 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:33:56,792 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:33:56,823 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:33:56,916 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.425 +2025-10-02 00:33:56,916 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 00:33:56,916 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 00:33:57,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:57,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:57,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:57,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:33:57,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:33:57,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:33:59,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:33:59,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:33:59,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:33:59,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:33:59,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:33:59,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:02,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:02,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:02,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:02,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:34:02,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:34:02,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:04,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:04,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:04,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:04,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:34:04,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:34:04,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:07,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:07,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:07,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:07,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:34:07,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:34:07,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:08,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:08,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:08,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:08,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:34:08,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:34:08,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:10,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:10,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:10,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:10,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:34:10,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:34:10,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:10,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:10,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:10,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:10,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:34:10,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:34:10,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:13,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:13,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:13,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:13,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:34:13,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:34:13,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:13,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:13,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:13,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:13,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:34:13,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:34:13,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:15,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:15,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:15,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:15,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:34:15,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:34:15,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:16,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:16,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:16,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:16,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:34:16,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:34:16,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:18,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:18,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:18,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:18,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:34:18,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:34:18,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:18,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:18,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:18,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:18,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 00:34:18,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 00:34:18,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:20,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:20,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:20,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:21,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:34:21,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:34:21,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:21,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:21,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:21,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:21,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:34:21,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:34:21,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:22,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:22,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:23,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:23,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 00:34:23,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 00:34:23,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:23,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:23,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:23,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:23,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:34:23,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:34:23,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:24,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:24,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:24,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:24,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:34:24,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:34:24,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:24,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:24,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:24,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:24,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 00:34:24,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 00:34:24,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:25,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:25,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:25,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:25,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:34:25,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:34:25,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:27,116 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:34:27,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:34:27,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:34:27,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 00:34:27,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 00:34:27,404 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:34:27,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:27,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:27,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:28,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 00:34:28,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 00:34:28,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:32,831 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:34:32,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:34:32,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:34:33,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.328s +2025-10-02 00:34:33,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.328s (avg: 0.164s/image) +2025-10-02 00:34:33,160 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:34:34,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:34,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:34,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:34,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:34:34,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:34:34,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:35,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:35,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:35,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:36,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:34:36,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:34:36,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:39,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:39,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:39,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:39,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:34:39,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:34:39,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:39,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:39,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:39,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:39,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:34:39,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:34:39,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:43,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:43,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:43,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:43,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:34:43,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:34:43,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:44,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:44,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:44,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:44,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:34:44,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:34:44,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:46,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:46,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:46,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:46,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:34:46,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:34:46,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:47,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:47,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:47,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:47,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:34:47,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:34:47,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:50,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:50,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:50,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:51,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:34:51,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:34:51,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:51,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:51,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:51,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:51,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:34:51,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:34:51,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:51,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:51,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:52,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:52,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:34:52,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:34:52,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:57,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:57,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:57,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:57,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:34:57,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:34:57,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:58,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:34:58,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:34:58,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:34:58,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:34:58,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:34:58,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:34:59,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:34:59,549 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:34:59,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.112 +2025-10-02 00:34:59,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 00:34:59,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:35:00,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:00,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:00,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:00,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:35:00,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:35:00,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:01,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:01,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:01,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:01,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:35:01,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:35:01,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:03,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:03,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:04,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:04,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:35:04,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:35:04,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:05,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:05,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:05,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:06,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:35:06,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:35:06,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:06,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:06,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:06,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:06,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:35:06,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:35:06,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:08,971 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:35:08,997 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:35:09,071 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.710 +2025-10-02 00:35:09,071 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 00:35:09,071 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 00:35:09,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:09,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:09,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:09,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:35:09,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:35:09,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:11,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:11,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:11,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:11,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:35:11,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:35:11,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:12,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:12,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:12,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:12,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:35:12,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:35:12,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:17,714 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:35:17,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:35:17,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:35:18,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-02 00:35:18,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +2025-10-02 00:35:18,036 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:35:18,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:18,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:19,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:19,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:35:19,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:35:19,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:20,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:20,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:21,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:21,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:35:21,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:35:21,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:25,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:25,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:25,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:25,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:35:25,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:35:25,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:28,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:28,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:28,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:28,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:35:28,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:35:28,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:31,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:31,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:31,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:31,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 00:35:31,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 00:35:31,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:31,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:31,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:31,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:31,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:35:31,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:35:31,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:34,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:34,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:34,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:34,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:35:34,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:35:34,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:39,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:39,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:39,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:40,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:35:40,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:35:40,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:40,540 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:35:40,558 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:35:40,636 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.162 +2025-10-02 00:35:40,637 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:35:40,637 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:35:41,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:41,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:41,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:41,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 00:35:41,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 00:35:41,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:45,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:45,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:45,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:45,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:35:45,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:35:45,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:52,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:52,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:52,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:53,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 00:35:53,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 00:35:53,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:53,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:53,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:53,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:53,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:35:53,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:35:53,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:55,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:55,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:55,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:55,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:35:55,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:35:55,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:56,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:56,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:56,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:56,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:35:56,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:35:56,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:58,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:58,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:35:58,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:35:58,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:35:58,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:35:58,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:35:59,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:35:59,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:00,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:00,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:36:00,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:36:00,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:01,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:01,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:01,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:01,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:36:01,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:36:01,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:03,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:03,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:03,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:03,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:36:03,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:36:03,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:06,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:06,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:06,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:06,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:36:06,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:36:06,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:08,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:08,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:08,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:08,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:36:08,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:36:08,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:11,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:11,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:11,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:11,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:36:11,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:36:11,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:13,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:13,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:13,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:14,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:36:14,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:36:14,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:18,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:18,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:18,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:18,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:36:18,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:36:18,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:19,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:19,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:19,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:19,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:36:19,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:36:19,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:19,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:19,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:19,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:19,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:36:19,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:36:19,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:22,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:22,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:22,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:23,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:36:23,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:36:23,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:24,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:24,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:24,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:25,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:36:25,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:36:25,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:25,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:25,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:25,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:25,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:36:25,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:36:25,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:27,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:27,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:27,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:27,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:36:27,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:36:27,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:29,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:29,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:29,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:29,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 00:36:29,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 00:36:29,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:32,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:32,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:32,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:32,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:36:32,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:36:32,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:32,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:32,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:32,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:32,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:36:32,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:36:32,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:33,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:33,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:33,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:33,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:36:33,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:36:33,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:36,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:36,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:36,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:36,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:36:36,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:36:36,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:37,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:37,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:37,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:37,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:36:37,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:36:37,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:39,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:39,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:39,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:39,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:36:39,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:36:39,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:41,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:41,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:41,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:42,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:36:42,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:36:42,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:42,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:42,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:42,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:42,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:36:42,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:36:42,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:44,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:44,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:44,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:44,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:36:44,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:36:44,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:45,685 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:36:45,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:36:45,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:36:45,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 00:36:45,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 00:36:45,967 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:36:47,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:47,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:47,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:47,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:36:47,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:36:47,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:49,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:49,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:49,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:49,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:36:49,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:36:49,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:50,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:50,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:50,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:50,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 00:36:50,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 00:36:50,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:52,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:52,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:52,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:52,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:36:52,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:36:52,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:53,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:53,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:53,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:53,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:36:53,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:36:53,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:53,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:53,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:53,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:53,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:36:53,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:36:53,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:36:59,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:36:59,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:36:59,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:36:59,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 00:36:59,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 00:36:59,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:02,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:02,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:02,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:02,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:37:02,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:37:02,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:05,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:05,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:05,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:05,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:37:05,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:37:05,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:06,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:06,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:06,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:06,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:37:06,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:37:06,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:06,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:06,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:06,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:06,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:37:06,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:37:06,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:07,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:07,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:07,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:07,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:37:07,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:37:07,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:08,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:08,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:08,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:08,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:37:08,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:37:08,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:12,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:12,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:12,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:12,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:37:12,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:37:12,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:13,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:13,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:13,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:13,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:37:13,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:37:13,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:14,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:14,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:14,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:14,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 00:37:14,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 00:37:14,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:19,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:19,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:19,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:19,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:37:19,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:37:19,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:20,688 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:37:20,706 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:37:20,782 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.547 +2025-10-02 00:37:20,782 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 00:37:20,782 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 00:37:20,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:20,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:20,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:20,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:37:20,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:37:20,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:24,690 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:37:24,721 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:37:24,803 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.974 +2025-10-02 00:37:24,804 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 00:37:24,804 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 00:37:25,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:25,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:25,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:25,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:37:25,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:37:25,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:26,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:26,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:26,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:26,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:37:26,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:37:26,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:28,802 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:37:28,840 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:37:28,943 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.168 +2025-10-02 00:37:28,944 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-02 00:37:28,944 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-02 00:37:30,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:30,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:30,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:30,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:37:30,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:37:30,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:31,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:31,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:31,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:32,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:37:32,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:37:32,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:38,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:38,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:38,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:38,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:37:38,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:37:38,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:39,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:39,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:39,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:39,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:37:39,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:37:39,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:42,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:42,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:42,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:43,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 00:37:43,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 00:37:43,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:55,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:55,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:55,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:55,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:37:55,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:37:55,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:57,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:37:57,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:37:57,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:37:57,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:37:57,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:37:57,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:37:58,231 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:37:58,254 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:37:58,330 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.851 +2025-10-02 00:37:58,330 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 00:37:58,330 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 00:38:04,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:04,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:04,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:05,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:38:05,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:38:05,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:05,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:05,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:05,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:05,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 00:38:05,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 00:38:05,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:07,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:07,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:07,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:07,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:38:07,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:38:07,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:07,775 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:38:07,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:38:07,891 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.563 +2025-10-02 00:38:07,891 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 00:38:07,892 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:38:08,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:08,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:08,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:08,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:38:08,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:38:08,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:11,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:11,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:12,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:12,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:38:12,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:38:12,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:14,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:14,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:14,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:14,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:38:14,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:38:14,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:16,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:16,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:16,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:16,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:38:16,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:38:16,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:18,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:18,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:18,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:19,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:38:19,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:38:19,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:20,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:20,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:20,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:20,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:38:20,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:38:20,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:21,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:21,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:21,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:21,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:38:21,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:38:21,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:22,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:22,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:22,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:22,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:38:22,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:38:22,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:25,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:25,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:25,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:25,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:38:25,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:38:25,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:26,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:26,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:26,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:26,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:38:26,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:38:26,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:27,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:27,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:27,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:27,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 00:38:27,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 00:38:27,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:30,802 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:38:30,825 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:38:30,914 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.919 +2025-10-02 00:38:30,915 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 00:38:30,915 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 00:38:31,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:31,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:31,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:31,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:38:31,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:38:31,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:35,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:35,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:35,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:35,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:38:35,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:38:35,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:36,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:36,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:36,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:36,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:38:36,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:38:36,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:40,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:40,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:40,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:40,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:38:40,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:38:40,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:40,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:40,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:40,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:40,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:38:40,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:38:40,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:43,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:43,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:43,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:43,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:38:43,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:38:43,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:46,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:46,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:46,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:46,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:38:46,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:38:46,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:46,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:46,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:46,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:47,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:38:47,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:38:47,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:48,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:48,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:48,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:48,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:38:48,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:38:48,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:49,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:49,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:49,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:49,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 00:38:49,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 00:38:49,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:51,582 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:38:51,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:38:51,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:38:51,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 00:38:51,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-02 00:38:51,876 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:38:52,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:52,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:52,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:52,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:38:52,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:38:52,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:56,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:56,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:56,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:56,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:38:56,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:38:56,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:56,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:56,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:56,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:56,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:38:56,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:38:56,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:38:57,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:38:57,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:38:57,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:38:57,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:38:57,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:38:57,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:01,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:01,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:01,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:01,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:39:01,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:39:01,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:03,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:03,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:03,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:03,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:39:03,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:39:03,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:04,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:04,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:04,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:04,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:39:04,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:39:04,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:07,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:07,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:07,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:08,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 00:39:08,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 00:39:08,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:08,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:08,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:08,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:08,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:39:08,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:39:08,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:08,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:08,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:08,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:08,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:39:08,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:39:08,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:09,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:09,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:09,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:09,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 00:39:09,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 00:39:09,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:10,735 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:39:10,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:39:10,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:39:11,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 00:39:11,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 00:39:11,020 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:39:12,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:12,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:12,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:13,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 00:39:13,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 00:39:13,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:13,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:13,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:13,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:13,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:39:13,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:39:13,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:13,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:13,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:13,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:13,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 00:39:13,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 00:39:13,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:14,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:14,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:14,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:14,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:39:14,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:39:14,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:15,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:15,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:15,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:15,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:39:15,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:39:15,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:15,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:15,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:15,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:16,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:39:16,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:39:16,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:18,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:18,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:18,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:18,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:39:18,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:39:18,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:23,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:23,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:23,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:23,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:39:23,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:39:23,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:23,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:23,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:23,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:23,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:39:23,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:39:23,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:33,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:33,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:33,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:33,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:39:33,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:39:33,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:35,896 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:39:35,938 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:39:36,028 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.746 +2025-10-02 00:39:36,028 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 00:39:36,028 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 00:39:36,817 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:39:36,850 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:39:36,931 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.515 +2025-10-02 00:39:36,931 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 00:39:36,932 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 00:39:37,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:37,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:37,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:37,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:39:37,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:39:37,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:41,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:41,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:41,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:41,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:39:41,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:39:41,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:43,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:43,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:43,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:44,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:39:44,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:39:44,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:48,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:48,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:48,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:48,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:39:48,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:39:48,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:49,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:49,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:49,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:49,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:39:49,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:39:49,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:52,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:52,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:52,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:52,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:39:52,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:39:52,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:53,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:53,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:53,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:53,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:39:53,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:39:53,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:55,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:55,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:55,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:55,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:39:55,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:39:55,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:39:55,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:39:55,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:39:55,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:39:56,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:39:56,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:39:56,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:00,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:00,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:00,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:00,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:40:00,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:40:00,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:01,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:01,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:01,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:02,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:40:02,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:40:02,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:02,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:02,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:02,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:02,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 00:40:02,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 00:40:02,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:04,569 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:40:04,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:40:04,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:40:04,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 00:40:04,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-02 00:40:04,844 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:40:07,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:07,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:07,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:07,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:40:07,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:40:07,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:12,385 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:40:12,407 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:40:12,491 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.219 +2025-10-02 00:40:12,491 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 00:40:12,492 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 00:40:13,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:13,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:13,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:13,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 00:40:13,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 00:40:13,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:13,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:13,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:13,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:13,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:40:13,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:40:13,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:15,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:15,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:15,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:15,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 00:40:15,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 00:40:15,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:16,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:16,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:16,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:16,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:40:16,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:40:16,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:16,862 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:40:16,884 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:40:16,959 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.721 +2025-10-02 00:40:16,960 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 00:40:16,960 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 00:40:19,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:19,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:19,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:19,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:40:19,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:40:19,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:21,290 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:40:21,326 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:40:21,406 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.237 +2025-10-02 00:40:21,407 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 00:40:21,407 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 00:40:23,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:23,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:23,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:24,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:40:24,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:40:24,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:25,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:25,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:25,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:25,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:40:25,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:40:25,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:27,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:27,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:27,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:27,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:40:27,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:40:27,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:29,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:29,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:29,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:29,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:40:29,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:40:29,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:31,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:31,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:31,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:32,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:40:32,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:40:32,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:32,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:32,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:32,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:32,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:40:32,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:40:32,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:38,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:38,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:38,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:38,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:40:38,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:40:38,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:39,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:39,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:39,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:39,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:40:39,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:40:39,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:39,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:39,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:39,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:40,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:40:40,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:40:40,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:44,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:44,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:44,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:44,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:40:44,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:40:44,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:44,682 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:40:44,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:40:44,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:40:44,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-02 00:40:44,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-02 00:40:44,953 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:40:45,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:45,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:45,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:45,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:40:45,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:40:45,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:51,262 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:40:51,288 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:40:51,369 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=213.947 +2025-10-02 00:40:51,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 00:40:51,370 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 00:40:52,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:52,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:52,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:52,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 00:40:52,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 00:40:52,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:55,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:55,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:55,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:55,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:40:55,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:40:55,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:57,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:57,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:57,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:57,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:40:57,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:40:57,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:57,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:57,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:40:57,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:40:57,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:40:57,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:40:57,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:40:59,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:40:59,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:00,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:00,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 00:41:00,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 00:41:00,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:05,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:05,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:05,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:05,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:41:05,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:41:05,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:06,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:06,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:06,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:06,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:41:06,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:41:06,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:06,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:06,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:06,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:06,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 00:41:06,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 00:41:06,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:09,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:09,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:09,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:09,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-02 00:41:09,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-02 00:41:09,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:12,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:12,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:12,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:12,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:41:12,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:41:12,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:12,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:12,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:13,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:13,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:41:13,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:41:13,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:13,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:13,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:13,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:13,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:41:13,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:41:13,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:16,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:16,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:16,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:16,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s +2025-10-02 00:41:16,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image) +2025-10-02 00:41:16,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:17,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:17,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:17,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:17,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:41:17,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:41:17,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:17,807 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:41:17,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:41:17,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:41:18,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 00:41:18,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 00:41:18,094 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:41:18,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:18,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:18,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:18,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:41:18,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:41:18,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:18,792 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:41:18,825 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:41:18,918 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.215 +2025-10-02 00:41:18,918 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 00:41:18,921 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 00:41:20,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:20,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:20,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:20,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:41:20,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:41:20,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:21,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:21,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:21,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:21,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:41:21,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:41:21,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:25,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:25,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:25,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:25,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:41:25,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:41:25,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:27,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:27,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:27,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:27,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:41:27,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:41:27,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:27,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:27,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:27,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:27,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:41:27,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:41:27,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:31,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:31,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:31,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:31,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:41:31,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:41:31,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:32,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:32,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:32,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:32,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:41:32,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:41:32,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:32,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:32,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:32,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:32,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:41:32,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:41:32,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:32,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:32,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:32,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:32,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:41:32,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:41:32,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:35,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:35,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:35,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:35,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:41:35,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:41:35,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:35,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:35,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:35,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:35,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:41:35,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:41:35,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:37,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:37,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:37,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:37,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:41:37,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:41:37,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:38,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:38,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:38,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:38,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:41:38,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:41:38,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:39,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:39,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:39,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:39,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:41:39,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:41:39,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:39,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:39,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:39,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:40,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:41:40,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:41:40,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:40,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:40,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:40,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:40,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:41:40,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:41:40,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:40,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:40,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:40,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:40,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:41:40,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:41:40,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:41,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:41,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:41,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:41,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:41:41,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:41:41,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:41,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:41,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:41,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:41,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:41:41,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:41:41,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:44,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:44,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:44,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:44,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:41:44,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:41:44,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:45,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:45,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:45,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:45,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:41:45,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:41:45,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:46,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:46,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:46,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:46,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:41:46,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:41:46,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:47,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:47,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:47,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:47,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:41:47,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:41:47,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:47,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:47,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:47,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:47,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 00:41:47,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 00:41:47,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:48,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:48,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:48,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:48,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:41:48,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:41:48,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:48,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:48,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:48,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:48,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:41:48,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:41:48,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:49,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:49,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:49,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:49,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:41:49,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:41:49,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:50,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:50,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:50,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:50,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:41:50,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:41:50,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:53,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:53,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:53,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:53,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:41:53,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:41:53,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:54,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:54,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:54,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:54,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:41:54,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:41:54,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:55,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:55,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:55,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:55,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:41:55,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:41:55,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:41:58,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:41:58,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:41:58,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:41:59,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:41:59,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:41:59,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:01,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:01,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:01,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:01,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:42:01,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:42:01,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:03,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:03,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:03,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:03,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:42:03,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:42:03,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:07,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:07,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:07,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:07,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:42:07,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:42:07,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:08,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:08,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:08,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:08,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:42:08,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:42:08,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:08,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:08,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:08,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:08,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:42:08,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:42:08,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:09,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:09,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:09,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:09,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:42:09,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:42:09,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:12,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:12,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:12,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:12,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:42:12,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:42:12,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:20,858 - main - INFO - 🚀 인페인팅 서버 시작 중... +2025-10-02 00:42:20,858 - main - INFO - ✅ 공유 객체를 app.state에 저장 완료 +2025-10-02 00:42:20,858 - main - INFO - 🔄 상태 저장 백그라운드 작업 생성 중... +2025-10-02 00:42:20,858 - main - INFO - ✅ 상태 저장 백그라운드 작업 생성 완료 +2025-10-02 00:42:20,858 - main - INFO - 🚀 세션 풀 초기화 (CUDA 자동 감지) +2025-10-02 00:42:20,858 - app.core.session_pool - INFO - Initializing dynamic session pools... +2025-10-02 00:42:20,858 - app.core.session_pool - INFO - Pre-loading 4 sessions for simple_lama +2025-10-02 00:42:20,858 - main - INFO - 🔄 상태 저장 백그라운드 작업 시작됨 +2025-10-02 00:42:20,859 - app.core.session_pool - INFO - Creating new session simple_lama_0 for simple_lama... +2025-10-02 00:42:22,402 - app.core.session_pool - INFO - Creating new session simple_lama_1 for simple_lama... +2025-10-02 00:42:22,403 - app.core.session_pool - INFO - Creating new session simple_lama_2 for simple_lama... +2025-10-02 00:42:22,403 - app.core.session_pool - INFO - Creating new session simple_lama_3 for simple_lama... +2025-10-02 00:42:22,403 - app.models.simple_lama - INFO - Loading Simple LAMA model... +2025-10-02 00:42:23,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +2025-10-02 00:42:23,410 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +2025-10-02 00:42:23,410 - app.models.simple_lama - INFO - Loading Simple LAMA model... +2025-10-02 00:42:24,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +2025-10-02 00:42:24,170 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +2025-10-02 00:42:24,171 - app.models.simple_lama - INFO - Loading Simple LAMA model... +2025-10-02 00:42:25,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +2025-10-02 00:42:25,022 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +2025-10-02 00:42:25,022 - app.models.simple_lama - INFO - Loading Simple LAMA model... +2025-10-02 00:42:25,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +2025-10-02 00:42:25,799 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +2025-10-02 00:42:25,800 - app.core.session_pool - INFO - Successfully created session simple_lama_0 +2025-10-02 00:42:25,800 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +2025-10-02 00:42:25,800 - app.core.session_pool - INFO - Successfully created session simple_lama_1 +2025-10-02 00:42:25,801 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +2025-10-02 00:42:25,801 - app.core.session_pool - INFO - Successfully created session simple_lama_2 +2025-10-02 00:42:25,801 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +2025-10-02 00:42:25,801 - app.core.session_pool - INFO - Successfully created session simple_lama_3 +2025-10-02 00:42:25,801 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +2025-10-02 00:42:25,802 - app.core.session_pool - INFO - Pre-loading 1 sessions for migan +2025-10-02 00:42:25,802 - app.core.session_pool - INFO - Creating new session migan_0 for migan... +2025-10-02 00:42:25,842 - app.models.migan - INFO - Loading MIGAN ONNX model... +2025-10-02 00:42:25,843 - app.models.migan - INFO - MIGAN ONNX 런타임 세션 생성 시도... +2025-10-02 00:42:25,843 - app.models.migan - INFO - MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider'] +2025-10-02 00:42:26,114 - app.models.migan - INFO - MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] +2025-10-02 00:42:26,115 - app.models.migan - INFO - MIGAN ONNX model loaded successfully +2025-10-02 00:42:26,115 - app.core.session_pool - INFO - Successfully created session migan_0 +2025-10-02 00:42:26,115 - app.core.session_pool - INFO - ➕ Session Created (migan). Status -> simple_lama: 4, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (11.0%) +2025-10-02 00:42:26,116 - app.core.session_pool - INFO - Pre-loading 1 sessions for rembg +2025-10-02 00:42:26,116 - app.core.session_pool - INFO - Creating new session rembg_0 for rembg... +2025-10-02 00:42:26,117 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료 +2025-10-02 00:42:26,117 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx +2025-10-02 00:42:26,512 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output +2025-10-02 00:42:26,512 - app.core.session_pool - INFO - Successfully created session rembg_0 +2025-10-02 00:42:26,513 - app.core.session_pool - INFO - ➕ Session Created (rembg). Status -> simple_lama: 4, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (12.2%) +2025-10-02 00:42:26,513 - app.core.session_pool - INFO - Session pools initialized successfully +2025-10-02 00:42:26,513 - main - INFO - ✅ 세션 풀 초기화 완료 +2025-10-02 00:42:26,513 - app.core.worker_manager - INFO - Starting worker manager... +2025-10-02 00:42:26,513 - app.core.worker_manager - INFO - Worker manager started with 6 workers +2025-10-02 00:42:26,513 - main - INFO - ✅ 워커 매니저 시작 완료 +2025-10-02 00:42:26,514 - app.core.batch_manager - INFO - Starting BatchManager... +2025-10-02 00:42:26,514 - app.core.batch_manager - INFO - BatchManager started successfully. +2025-10-02 00:42:26,514 - main - INFO - ✅ 배치 관리자 시작 완료 +2025-10-02 00:42:26,514 - main - INFO - 🎉 인페인팅 서버 시작 완료! +2025-10-02 00:42:26,514 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다. +2025-10-02 00:42:26,514 - app.core.session_pool - INFO - Idle session reaper started. Timeout: 1800s, Check Interval: 60s +2025-10-02 00:42:27,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:27,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:27,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:28,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 1.304s +2025-10-02 00:42:28,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 1.304s (avg: 1.304s/image) +2025-10-02 00:42:28,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:28,588 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 00:42:28,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 00:42:28,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 00:42:35,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 7.058s +2025-10-02 00:42:35,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 7.058s (avg: 2.353s/image) +2025-10-02 00:42:35,647 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 00:42:42,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:42,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:42,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:42,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:42:42,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:42:42,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:43,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:43,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:43,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:43,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:42:43,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:42:43,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:44,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:44,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:44,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:44,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:42:44,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:42:44,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:45,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:45,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:45,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:45,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 00:42:45,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 00:42:45,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:48,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:48,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:48,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:48,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:42:48,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:42:48,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:53,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:53,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:53,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:53,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:42:53,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:42:53,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:53,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:53,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:53,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:53,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:42:53,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:42:53,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:54,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:54,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:54,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:54,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:42:54,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:42:54,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:58,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:58,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:58,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:58,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:42:58,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:42:58,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:42:59,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:42:59,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:59,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:59,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:42:59,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:42:59,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:02,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:02,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:02,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:03,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:43:03,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:43:03,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:04,367 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:43:04,389 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:43:12,238 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.356 +2025-10-02 00:43:12,239 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 7.848s +2025-10-02 00:43:12,239 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 7.850s +2025-10-02 00:43:17,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:17,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:17,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:17,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:43:17,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:43:17,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:18,360 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:43:18,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:43:18,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:43:25,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 6.752s +2025-10-02 00:43:25,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 6.752s (avg: 3.376s/image) +2025-10-02 00:43:25,114 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:43:29,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:29,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:29,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:29,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:43:29,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:43:29,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:31,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:31,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:31,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:32,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:43:32,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:43:32,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:32,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:32,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:32,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:32,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:43:32,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:43:32,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:33,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:33,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:33,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:33,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:43:33,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:43:33,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:35,429 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:43:35,453 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:43:35,540 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.984 +2025-10-02 00:43:35,540 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 00:43:35,540 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 00:43:37,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:37,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:37,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:37,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:43:37,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:43:37,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:38,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:38,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:38,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:38,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 00:43:38,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 00:43:38,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:39,450 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:43:39,484 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:43:39,561 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.941 +2025-10-02 00:43:39,562 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 00:43:39,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:43:41,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:41,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:41,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:41,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:43:41,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:43:41,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:42,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:42,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:42,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:42,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:43:42,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:43:42,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:43,839 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:43:43,872 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:43:43,957 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.581 +2025-10-02 00:43:43,958 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 00:43:43,958 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 00:43:44,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:44,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:44,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:44,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:43:44,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:43:44,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:45,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:45,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:45,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:45,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:43:45,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:43:45,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:47,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:47,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:47,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:47,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:43:47,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:43:47,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:49,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:49,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:49,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:49,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:43:49,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:43:49,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:51,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:51,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:51,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:51,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:43:51,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:43:51,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:53,373 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:43:53,398 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:43:53,481 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.338 +2025-10-02 00:43:53,481 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 00:43:53,481 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 00:43:54,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:43:54,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:54,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:54,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:43:54,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:43:54,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:43:54,852 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:43:54,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:43:54,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:44:02,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 7.812s +2025-10-02 00:44:02,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 7.812s (avg: 3.906s/image) +2025-10-02 00:44:02,666 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:44:05,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:05,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:05,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:06,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:44:06,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:44:06,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:06,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:06,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:06,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:06,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:44:06,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:44:06,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:09,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:09,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:09,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:09,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:44:09,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:44:09,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:10,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:10,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:10,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:10,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:44:10,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:44:10,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:10,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:10,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:10,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:11,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:44:11,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:44:11,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:11,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:11,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:11,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:11,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:44:11,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:44:11,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:14,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:14,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:14,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:15,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:44:15,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:44:15,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:15,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:15,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:15,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:15,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:44:15,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:44:15,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:19,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:19,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:19,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:19,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:44:19,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:44:19,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:22,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:22,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:22,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:22,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:44:22,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:44:22,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:22,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:22,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:22,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:22,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:44:22,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:44:22,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:23,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:23,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:23,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:23,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:44:23,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:44:23,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:23,820 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:44:23,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:44:23,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:44:24,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 00:44:24,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 00:44:24,118 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:44:25,592 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:44:25,623 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:44:25,710 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.112 +2025-10-02 00:44:25,710 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 00:44:25,710 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 00:44:27,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:27,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:27,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:27,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:44:27,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:44:27,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:27,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:27,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:27,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:27,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:44:27,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:44:27,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:27,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:27,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:27,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:27,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:44:27,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:44:27,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:31,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:31,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:31,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:31,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:44:31,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:44:31,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:31,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:31,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:31,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:31,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:44:31,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:44:31,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:32,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:32,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:32,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:32,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:44:32,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:44:32,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:36,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:36,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:36,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:36,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:44:36,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:44:36,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:36,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:36,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:36,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:36,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:44:36,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:44:36,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:38,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:38,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:38,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:38,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-02 00:44:38,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-02 00:44:38,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:39,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:39,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:39,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:40,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:44:40,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:44:40,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:40,786 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:44:40,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:44:40,910 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.853 +2025-10-02 00:44:40,910 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 00:44:40,912 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 00:44:43,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:43,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:44,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:44,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:44:44,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:44:44,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:44,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:44,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:44,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:44,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:44:44,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:44:44,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:45,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:45,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:45,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:45,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:44:45,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:44:45,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:47,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:47,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:47,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:47,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:44:47,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:44:47,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:48,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:48,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:48,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:48,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:44:48,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:44:48,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:48,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:48,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:48,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:49,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:44:49,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:44:49,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:44:52,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:44:52,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:52,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:52,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:44:52,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:44:52,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:00,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:00,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:00,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:00,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:45:00,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:45:00,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:01,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:01,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:01,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:01,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 00:45:01,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 00:45:01,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:05,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:05,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:05,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:05,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:45:05,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:45:05,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:06,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:06,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:06,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:06,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:45:06,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:45:06,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:06,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:06,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:06,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:06,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.123s +2025-10-02 00:45:06,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.123s (avg: 0.123s/image) +2025-10-02 00:45:06,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:09,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:09,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:09,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:09,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 00:45:09,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 00:45:09,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:10,641 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:45:10,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:45:10,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:45:10,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 00:45:10,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-02 00:45:10,943 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:45:11,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:11,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:11,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:12,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:45:12,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:45:12,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:12,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:12,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:12,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:12,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:45:12,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:45:12,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:14,747 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:45:14,774 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:45:14,865 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=182.898 +2025-10-02 00:45:14,865 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 00:45:14,868 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 00:45:15,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:15,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:15,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:15,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:45:15,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:45:15,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:16,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:16,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:16,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:16,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:45:16,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:45:16,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:18,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:18,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:18,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:18,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:45:18,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:45:18,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:20,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:20,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:20,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:20,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 00:45:20,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 00:45:20,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:20,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:20,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:20,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:21,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:45:21,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:45:21,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:21,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:21,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:21,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:21,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 00:45:21,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 00:45:21,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:22,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:22,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:22,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:22,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:45:22,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:45:22,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:24,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:24,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:24,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:24,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:45:24,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:45:24,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:25,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:25,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:25,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:25,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:45:25,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:45:25,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:28,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:28,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:28,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:28,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:45:28,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:45:28,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:29,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:29,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:29,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:29,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:45:29,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:45:29,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:30,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:30,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:30,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:30,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:45:30,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:45:30,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:31,632 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:45:31,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:45:31,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:45:31,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 00:45:31,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 00:45:31,925 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:45:33,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:33,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:33,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:33,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:45:33,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:45:33,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:34,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:34,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:34,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:34,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:45:34,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:45:34,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:35,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:35,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:35,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:35,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:45:35,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:45:35,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:35,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:35,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:35,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:35,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:45:35,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:45:35,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:37,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:37,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:37,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:37,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:45:37,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:45:37,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:39,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:39,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:39,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:39,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:45:39,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:45:39,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:41,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:41,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:41,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:41,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:45:41,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:45:41,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:41,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:41,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:41,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:42,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:45:42,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:45:42,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:42,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:42,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:42,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:42,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:45:42,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:45:42,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:44,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:44,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:44,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:44,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:45:44,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:45:44,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:47,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:47,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:47,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:47,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:45:47,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:45:47,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:52,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:52,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:52,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:52,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:45:52,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:45:52,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:52,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:52,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:52,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:53,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:45:53,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:45:53,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:54,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:54,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:54,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:54,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:45:54,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:45:54,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:45:59,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:45:59,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:59,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:59,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:45:59,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:45:59,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:03,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:03,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:04,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:04,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:46:04,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:46:04,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:05,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:05,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:05,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:05,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:46:05,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:46:05,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:10,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:10,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:10,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:10,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:46:10,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:46:10,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:13,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:13,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:13,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:13,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:46:13,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:46:13,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:14,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:14,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:14,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:14,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:46:14,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:46:14,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:24,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:24,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:24,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:24,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:46:24,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:46:24,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:29,013 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:46:29,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:46:29,131 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.974 +2025-10-02 00:46:29,131 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 00:46:29,131 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 00:46:29,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:29,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:29,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:30,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:46:30,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:46:30,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:33,642 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:46:33,674 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:46:33,749 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.285 +2025-10-02 00:46:33,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 00:46:33,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 00:46:37,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:46:37,634 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:46:37,711 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=208.846 +2025-10-02 00:46:37,712 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:46:37,712 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:46:42,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:42,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:42,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:42,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:46:42,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:46:42,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:42,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:42,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:42,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:42,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:46:42,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:46:42,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:46,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:46,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:46,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:46,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:46:46,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:46:46,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:47,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:47,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:47,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:47,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:46:47,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:46:47,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:50,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:50,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:50,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:50,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:46:50,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:46:50,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:57,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:57,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:57,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:57,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:46:57,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:46:57,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:46:58,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:46:58,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:58,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:58,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:46:58,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:46:58,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:02,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:47:03,007 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:47:03,097 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.391 +2025-10-02 00:47:03,098 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 00:47:03,098 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 00:47:03,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:03,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:03,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:03,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:47:03,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:47:03,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:07,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:07,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:07,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:08,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:47:08,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:47:08,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:12,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:12,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:12,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:12,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:47:12,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:47:12,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:14,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:14,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:14,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:15,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:47:15,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:47:15,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:17,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:17,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:17,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:17,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:47:17,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:47:17,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:18,794 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:47:18,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:47:18,898 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.216 +2025-10-02 00:47:18,898 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 00:47:18,899 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:47:22,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:22,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:22,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:22,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:47:22,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:47:22,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:24,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:24,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:24,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:24,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:47:24,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:47:24,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:25,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:25,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:25,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:25,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:47:25,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:47:25,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:27,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:27,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:27,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:27,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:47:27,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:47:27,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:29,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:29,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:29,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:29,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:47:29,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:47:29,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:33,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:33,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:33,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:33,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:47:33,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:47:33,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:34,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:34,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:34,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:34,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:47:34,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:47:34,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:35,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:35,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:35,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:35,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:47:35,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:47:35,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:37,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:37,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:37,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:37,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:47:37,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:47:37,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:41,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:41,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:41,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:41,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:47:41,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:47:41,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:42,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:42,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:42,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:42,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 00:47:42,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 00:47:42,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:45,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:45,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:45,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:45,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:47:45,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:47:45,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:47,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:47,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:47,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:47,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:47:47,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:47:47,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:49,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:49,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:49,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:49,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:47:49,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:47:49,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:51,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:51,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:51,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:52,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:47:52,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:47:52,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:57,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:57,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:57,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:57,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 00:47:57,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 00:47:57,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:47:59,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:47:59,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:59,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:59,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:47:59,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:47:59,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:02,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:02,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:02,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:02,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-02 00:48:02,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-02 00:48:02,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:13,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:13,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:13,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:13,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 00:48:13,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 00:48:13,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:13,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:13,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:13,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:13,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:48:13,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:48:13,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:20,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:20,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:20,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:20,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:48:20,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:48:20,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:22,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:22,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:22,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:22,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:48:22,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:48:22,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:23,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:23,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:23,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:24,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:48:24,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:48:24,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:24,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:24,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:25,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:25,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:48:25,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:48:25,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:30,002 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:48:30,030 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:48:30,124 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.371 +2025-10-02 00:48:30,125 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 00:48:30,127 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 00:48:32,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:32,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:32,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:32,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.206s +2025-10-02 00:48:32,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.206s (avg: 0.206s/image) +2025-10-02 00:48:32,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:35,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:35,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:35,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:35,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:48:35,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:48:35,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:36,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:36,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:36,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:36,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:48:36,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:48:36,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:36,957 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:48:36,994 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:48:37,092 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.606 +2025-10-02 00:48:37,093 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-02 00:48:37,095 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-02 00:48:37,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:37,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:37,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:37,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:48:37,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:48:37,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:38,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:38,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:38,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:38,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:48:38,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:48:38,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:40,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:40,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:40,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:40,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:48:40,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:48:40,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:42,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:42,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:42,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:43,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:48:43,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:48:43,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:43,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:43,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:43,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:44,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 00:48:44,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 00:48:44,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:44,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:44,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:44,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:44,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:48:44,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:48:44,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:46,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:46,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:46,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:46,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:48:46,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:48:46,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:46,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:46,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:46,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:46,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:48:46,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:48:46,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:47,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:47,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:47,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:47,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 00:48:47,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 00:48:47,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:54,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:54,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:54,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:55,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:48:55,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:48:55,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:55,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:55,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:55,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:55,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:48:55,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:48:55,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:55,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:55,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:56,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:56,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:48:56,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:48:56,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:59,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:59,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:59,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:59,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:48:59,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:48:59,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:48:59,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:48:59,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:59,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:00,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:49:00,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:49:00,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:02,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:02,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:02,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:02,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:49:02,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:49:02,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:02,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:02,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:02,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:02,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:49:02,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:49:02,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:05,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:05,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:05,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:05,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:49:05,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:49:05,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:09,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:09,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:09,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:09,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:49:09,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:49:09,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:10,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:10,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:10,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:10,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:49:10,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:49:10,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:12,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:12,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:12,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:12,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:49:12,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:49:12,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:17,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:17,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:17,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:17,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:49:17,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:49:17,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:21,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:21,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:21,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:21,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:49:21,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:49:21,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:23,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:23,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:23,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:23,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:49:23,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:49:23,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:23,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:23,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:23,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:23,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:49:23,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:49:23,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:23,846 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:49:23,861 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:49:23,955 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.657 +2025-10-02 00:49:23,955 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 00:49:23,956 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 00:49:25,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:25,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:25,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:25,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:49:25,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:49:25,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:30,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:30,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:30,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:30,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:49:30,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:49:30,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:32,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:32,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:32,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:33,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:49:33,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:49:33,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:33,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:33,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:33,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:33,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:49:33,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:49:33,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:36,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:36,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:36,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:36,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:49:36,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:49:36,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:37,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:37,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:37,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:37,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:49:37,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:49:37,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:39,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:39,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:39,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:40,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:49:40,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:49:40,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:40,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:40,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:40,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:40,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:49:40,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:49:40,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:43,879 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:49:43,919 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:49:44,008 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=232.475 +2025-10-02 00:49:44,008 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 00:49:44,008 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 00:49:44,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:44,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:44,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:44,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:49:44,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:49:44,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:45,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:45,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:45,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:46,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 00:49:46,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 00:49:46,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:48,785 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:49:48,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:49:48,879 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.389 +2025-10-02 00:49:48,880 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-02 00:49:48,880 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-02 00:49:49,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:49,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:49,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:49,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:49:49,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:49:49,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:52,611 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:49:52,636 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:49:52,718 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.008 +2025-10-02 00:49:52,719 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 00:49:52,719 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:49:53,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:53,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:53,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:53,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:49:53,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:49:53,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:53,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:53,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:54,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:54,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:49:54,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:49:54,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:56,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:56,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:56,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:56,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:49:56,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:49:56,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:59,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:59,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:59,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:59,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:49:59,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:49:59,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:49:59,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:49:59,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:00,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:00,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:50:00,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:50:00,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:02,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:02,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:02,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:02,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:50:02,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:50:02,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:02,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:02,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:02,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:02,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:50:02,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:50:02,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:03,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:03,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:03,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:03,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:50:03,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:50:03,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:07,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:07,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:07,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:07,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:50:07,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:50:07,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:08,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:08,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:08,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:08,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:50:08,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:50:08,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:11,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:11,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:11,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:11,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:50:11,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:50:11,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:12,433 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:50:12,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:50:12,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:50:12,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 00:50:12,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 00:50:12,726 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:50:13,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:13,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:13,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:13,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:50:13,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:50:13,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:16,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:16,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:16,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:16,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:50:16,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:50:16,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:16,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:16,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:16,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:16,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:50:16,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:50:16,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:20,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:20,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:20,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:20,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:50:20,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:50:20,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:21,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:21,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:21,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:21,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:50:21,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:50:21,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:21,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:21,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:21,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:22,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:50:22,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:50:22,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:22,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:22,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:22,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:23,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:50:23,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:50:23,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:23,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:23,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:23,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:23,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:50:23,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:50:23,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:26,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:26,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:26,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:26,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:50:26,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:50:26,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:26,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:26,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:26,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:26,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:50:26,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:50:26,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:27,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:27,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:27,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:27,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:50:27,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:50:27,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:31,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:31,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:31,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:31,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:50:31,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:50:31,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:32,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:32,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:32,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:32,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:50:32,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:50:32,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:35,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:35,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:35,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:35,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:50:35,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:50:35,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:37,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:37,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:37,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:37,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:50:37,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:50:37,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:38,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:38,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:38,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:38,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:50:38,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:50:38,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:38,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:38,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:38,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:38,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:50:38,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:50:38,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:42,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:42,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:42,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:42,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:50:42,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:50:42,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:44,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:44,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:44,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:44,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:50:44,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:50:44,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:45,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:45,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:45,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:45,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:50:45,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:50:45,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:48,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:48,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:48,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:48,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:50:48,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:50:48,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:50,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:50,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:50,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:50,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:50:50,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:50:50,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:50,670 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:50:50,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:50:50,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:50:50,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 00:50:50,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 00:50:50,958 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:50:55,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:55,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:55,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:56,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:50:56,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:50:56,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:56,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:56,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:56,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:56,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:50:56,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:50:56,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:58,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:58,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:58,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:58,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:50:58,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:50:58,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:50:59,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:50:59,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:59,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:59,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:50:59,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:50:59,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:03,560 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:51:03,611 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:51:03,704 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.065 +2025-10-02 00:51:03,704 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 00:51:03,706 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 00:51:04,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:04,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:04,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:04,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:51:04,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:51:04,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:04,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:04,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:04,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:04,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 00:51:04,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 00:51:04,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:04,544 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:51:04,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:51:04,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:51:04,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-02 00:51:04,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-02 00:51:04,855 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:51:05,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:05,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:05,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:05,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:51:05,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:51:05,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:08,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:08,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:08,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:08,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:51:08,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:51:08,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:08,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:08,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:08,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:09,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:51:09,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:51:09,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:09,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:09,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:09,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:09,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:51:09,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:51:09,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:12,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:12,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:12,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:13,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:51:13,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:51:13,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:13,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:13,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:13,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:13,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:51:13,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:51:13,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:16,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:16,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:16,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:16,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:51:16,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:51:16,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:16,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:16,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:16,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:16,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:51:16,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:51:16,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:17,036 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:51:17,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:51:17,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:51:17,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 00:51:17,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 00:51:17,313 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:51:21,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:21,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:21,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:21,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:51:21,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:51:21,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:21,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:21,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:21,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:21,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:51:21,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:51:21,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:23,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:23,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:23,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:23,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:51:23,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:51:23,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:28,847 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:51:28,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:51:28,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:51:29,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 00:51:29,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 00:51:29,140 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:51:29,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:29,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:29,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:29,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:51:29,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:51:29,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:33,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:33,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:33,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:33,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:51:33,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:51:33,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:33,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:33,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:33,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:34,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:51:34,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:51:34,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:34,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:34,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:34,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:35,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:51:35,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:51:35,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:37,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:37,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:37,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:37,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:51:37,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:51:37,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:48,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:48,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:48,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:48,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:51:48,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:51:48,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:49,951 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:51:49,970 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(743, 743, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:51:50,047 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.734 +2025-10-02 00:51:50,048 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:51:50,048 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:51:53,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:53,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:53,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:53,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:51:53,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:51:53,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:53,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:53,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:53,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:53,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:51:53,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:51:53,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:55,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:55,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:55,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:55,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:51:55,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:51:55,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:51:57,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:51:57,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:57,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:57,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:51:57,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:51:57,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:00,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:00,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:00,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:00,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:52:00,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:52:00,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:01,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:01,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:01,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:02,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:52:02,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:52:02,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:02,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:02,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:02,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:02,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:52:02,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:52:02,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:07,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:07,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:07,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:07,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:52:07,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:52:07,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:11,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:11,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:11,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:11,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:52:11,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:52:11,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:12,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:12,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:12,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:12,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:52:12,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:52:12,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:12,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:12,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:12,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:12,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:52:12,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:52:12,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:15,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:15,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:15,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:15,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:52:15,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:52:15,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:19,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:19,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:20,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:20,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:52:20,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:52:20,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:23,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:23,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:23,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:23,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:52:23,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:52:23,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:25,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:25,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:25,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:25,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:52:25,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:52:25,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:25,555 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:52:25,576 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:52:25,659 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.347 +2025-10-02 00:52:25,659 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 00:52:25,659 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:52:29,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:29,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:29,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:29,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:52:29,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:52:29,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:30,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:30,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:30,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:30,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:52:30,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:52:30,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:31,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:31,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:31,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:31,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:52:31,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:52:31,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:33,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:33,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:33,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:33,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:52:33,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:52:33,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:39,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:39,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:39,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:39,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:52:39,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:52:39,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:42,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:42,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:42,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:42,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:52:42,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:52:42,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:43,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:43,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:43,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:43,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:52:43,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:52:43,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:45,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:45,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:45,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:45,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:52:45,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:52:45,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:51,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:51,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:51,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:51,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:52:51,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:52:51,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:52:54,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:52:54,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:54,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:54,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:52:54,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:52:54,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:00,029 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:53:00,055 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:53:00,147 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.162 +2025-10-02 00:53:00,148 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 00:53:00,149 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 00:53:01,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:01,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:01,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:01,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:53:01,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:53:01,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:05,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:05,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:05,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:06,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:53:06,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:53:06,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:06,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:06,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:06,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:06,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:53:06,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:53:06,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:07,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:07,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:07,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:07,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:53:07,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:53:07,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:12,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:12,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:12,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:12,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:53:12,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:53:12,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:17,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:17,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:17,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:17,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:53:17,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:53:17,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:24,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:24,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:24,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:24,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:53:24,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:53:24,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:25,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:25,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:25,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:25,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:53:25,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:53:25,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:27,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:27,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:27,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:27,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:53:27,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:53:27,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:31,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:31,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:31,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:31,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:53:31,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:53:31,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:33,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:33,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:33,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:33,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:53:33,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:53:33,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:33,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:33,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:33,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:34,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:53:34,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:53:34,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:34,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:34,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:34,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:35,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:53:35,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:53:35,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:38,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:38,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:38,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:38,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:53:38,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:53:38,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:40,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:40,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:40,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:40,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 00:53:40,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 00:53:40,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:42,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:42,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:42,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:42,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:53:42,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:53:42,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:46,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:53:46,723 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:53:46,816 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.824 +2025-10-02 00:53:46,817 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 00:53:46,817 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 00:53:47,387 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:53:47,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:53:47,499 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.131 +2025-10-02 00:53:47,499 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 00:53:47,501 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 00:53:50,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:50,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:50,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:50,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:53:50,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:53:50,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:52,696 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:53:52,718 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:53:52,804 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.616 +2025-10-02 00:53:52,805 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 00:53:52,805 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 00:53:55,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:55,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:55,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:55,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:53:55,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:53:55,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:55,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:55,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:55,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:55,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:53:55,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:53:55,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:55,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:55,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:55,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:56,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:53:56,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:53:56,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:56,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:56,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:56,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:56,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:53:56,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:53:56,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:57,062 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:53:57,094 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:53:57,186 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.697 +2025-10-02 00:53:57,186 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 00:53:57,186 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 00:53:58,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:58,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:58,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:58,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:53:58,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:53:58,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:53:59,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:53:59,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:59,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:59,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:53:59,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:53:59,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:00,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:54:00,999 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:54:01,076 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.381 +2025-10-02 00:54:01,076 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 00:54:01,077 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:54:02,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:02,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:02,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:02,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:54:02,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:54:02,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:02,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:02,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:02,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:02,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:54:02,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:54:02,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:03,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:03,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:03,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:03,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:54:03,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:54:03,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:03,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:03,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:03,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:03,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:54:03,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:54:03,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:06,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:06,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:06,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:06,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:54:06,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:54:06,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:09,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:09,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:09,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:09,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:54:09,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:54:09,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:10,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:10,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:10,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:10,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:54:10,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:54:10,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:13,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:13,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:13,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:13,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:54:13,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:54:13,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:13,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:13,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:14,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:14,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:54:14,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:54:14,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:15,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:15,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:15,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:15,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:54:15,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:54:15,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:17,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:17,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:17,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:17,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:54:17,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:54:17,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:18,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:18,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:18,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:18,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:54:18,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:54:18,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:18,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:18,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:19,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:19,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 00:54:19,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 00:54:19,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:19,451 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:54:19,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:54:19,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:54:19,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 00:54:19,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 00:54:19,739 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:54:21,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:21,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:21,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:21,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:54:21,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:54:21,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:24,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:24,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:24,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:24,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:54:24,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:54:24,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:26,530 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:54:26,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:54:26,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:54:26,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +2025-10-02 00:54:26,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +2025-10-02 00:54:26,792 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:54:28,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:28,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:28,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:28,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:54:28,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:54:28,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:31,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:31,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:31,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:31,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:54:31,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:54:31,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:32,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:32,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:32,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:32,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:54:32,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:54:32,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:35,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:35,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:35,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:35,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:54:35,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:54:35,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:35,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:35,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:35,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:36,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:54:36,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:54:36,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:36,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:36,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:36,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:36,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:54:36,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:54:36,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:40,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:40,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:40,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:40,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:54:40,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:54:40,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:41,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:41,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:41,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:41,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:54:41,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:54:41,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:42,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:42,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:42,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:43,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:54:43,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:54:43,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:44,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:44,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:44,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:44,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:54:44,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:54:44,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:45,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:45,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:45,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:45,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 00:54:45,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 00:54:45,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:46,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:46,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:46,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:46,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:54:46,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:54:46,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:48,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:48,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:48,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:48,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:54:48,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:54:48,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:48,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:48,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:48,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:48,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:54:48,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:54:48,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:50,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:50,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:50,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:50,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:54:50,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:54:50,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:51,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:51,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:51,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:51,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:54:51,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:54:51,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:52,725 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:54:52,752 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:54:52,842 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.574 +2025-10-02 00:54:52,843 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 00:54:52,845 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 00:54:54,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:54,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:54,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:54,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:54:54,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:54:54,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:55,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:55,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:55,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:55,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:54:55,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:54:55,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:55,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:55,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:56,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:56,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:54:56,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:54:56,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:56,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:56,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:56,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:56,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:54:56,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:54:56,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:58,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:54:58,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:58,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:58,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 00:54:58,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 00:54:58,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:54:59,349 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:54:59,371 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(786, 786, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:54:59,455 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.110 +2025-10-02 00:54:59,455 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 00:54:59,456 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 00:55:01,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:01,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:01,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:01,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:55:01,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:55:01,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:01,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:01,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:01,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:02,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:55:02,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:55:02,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:02,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:02,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:02,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:02,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:55:02,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:55:02,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:06,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:06,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:06,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:06,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:55:06,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:55:06,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:08,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:08,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:08,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:08,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:55:08,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:55:08,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:09,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:09,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:09,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:09,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:55:09,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:55:09,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:09,642 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:55:09,670 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:55:09,751 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.121 +2025-10-02 00:55:09,751 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 00:55:09,752 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 00:55:12,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:12,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:12,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:12,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:55:12,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:55:12,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:12,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:12,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:12,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:12,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:55:12,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:55:12,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:14,295 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:55:14,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:55:14,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:55:14,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 00:55:14,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +2025-10-02 00:55:14,611 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:55:15,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:15,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:15,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:15,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:55:15,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:55:15,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:16,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:16,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:16,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:16,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:55:16,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:55:16,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:19,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:19,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:19,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:19,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:55:19,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:55:19,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:21,782 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:55:21,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:55:21,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:55:22,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 00:55:22,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 00:55:22,084 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:55:23,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:23,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:23,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:23,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:55:23,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:55:23,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:23,588 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:55:23,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:55:23,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:55:23,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 00:55:23,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 00:55:23,865 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:55:25,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:25,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:25,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:25,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:55:25,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:55:25,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:26,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:26,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:26,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:27,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:55:27,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:55:27,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:27,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:27,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:27,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:27,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:55:27,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:55:27,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:29,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:29,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:29,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:29,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:55:29,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:55:29,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:31,177 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:55:31,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:55:31,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:55:31,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 00:55:31,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-02 00:55:31,483 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:55:31,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:31,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:31,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:31,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:55:31,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:55:31,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:32,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:32,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:32,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:32,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:55:32,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:55:32,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:33,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:33,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:33,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:33,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 00:55:33,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 00:55:33,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:35,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:35,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:35,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:35,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:55:35,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:55:35,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:36,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:36,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:36,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:36,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:55:36,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:55:36,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:37,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:37,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:37,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:37,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:55:37,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:55:37,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:37,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:37,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:37,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:37,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:55:37,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:55:37,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:38,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:38,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:38,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:38,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 00:55:38,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 00:55:38,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:38,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:38,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:38,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:38,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:55:38,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:55:38,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:41,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:41,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:41,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:41,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:55:41,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:55:41,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:42,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:42,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:42,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:42,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:55:42,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:55:42,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:43,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:43,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:43,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:43,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:55:43,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:55:43,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:47,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:47,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:47,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:47,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:55:47,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:55:47,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:53,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:53,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:53,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:53,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:55:53,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:55:53,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:55,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:55,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:55,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:55,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:55:55,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:55:55,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:56,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:56,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:56,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:57,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:55:57,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:55:57,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:57,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:55:57,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:57,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:57,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:55:57,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:55:57,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:55:59,141 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:55:59,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:55:59,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:55:59,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 00:55:59,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 00:55:59,440 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:56:01,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:01,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:01,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:01,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:56:01,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:56:01,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:02,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:02,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:02,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:02,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:56:02,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:56:02,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:03,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:03,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:04,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:04,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:56:04,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:56:04,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:06,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:06,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:06,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:06,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:56:06,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:56:06,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:06,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:06,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:06,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:07,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:56:07,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:56:07,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:09,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:09,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:09,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:09,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:56:09,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:56:09,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:10,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:10,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:10,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:10,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:56:10,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:56:10,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:12,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:12,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:12,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:12,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:56:12,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:56:12,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:12,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:12,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:12,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:12,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:56:12,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:56:12,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:13,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:13,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:13,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:14,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:56:14,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:56:14,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:16,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:16,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:16,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:16,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:56:16,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:56:16,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:17,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:17,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:17,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:17,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 00:56:17,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 00:56:17,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:19,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:19,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:19,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:19,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:56:19,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:56:19,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:21,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:21,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:21,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:21,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:56:21,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:56:21,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:22,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:22,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:22,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:22,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:56:22,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:56:22,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:23,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:23,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:23,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:23,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:56:23,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:56:23,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:24,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:24,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:24,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:24,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:56:24,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:56:24,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:25,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:25,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:25,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:25,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:56:25,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:56:25,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:25,811 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:56:25,839 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:56:25,924 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.895 +2025-10-02 00:56:25,924 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 00:56:25,928 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 00:56:26,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:26,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:26,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:26,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:56:26,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:56:26,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:26,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:26,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:26,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:26,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:56:26,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:56:26,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:29,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:29,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:29,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:29,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:56:29,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:56:29,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:30,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:30,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:30,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:30,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:56:30,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:56:30,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:31,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:31,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:31,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:31,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:56:31,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:56:31,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:32,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:32,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:32,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:32,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:56:32,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:56:32,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:33,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:33,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:33,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:33,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:56:33,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:56:33,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:34,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:34,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:34,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:34,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:56:34,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:56:34,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:35,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:35,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:35,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:35,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:56:35,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:56:35,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:38,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:38,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:38,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:38,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:56:38,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:56:38,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:39,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:39,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:39,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:39,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 00:56:39,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 00:56:39,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:39,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:39,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:39,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:39,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 00:56:39,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 00:56:39,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:42,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:42,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:43,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:43,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:56:43,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:56:43,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:43,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:43,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:43,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:44,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:56:44,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:56:44,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:46,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:46,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:46,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:46,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:56:46,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:56:46,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:47,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:47,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:48,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:48,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:56:48,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:56:48,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:48,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:48,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:48,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:48,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:56:48,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:56:48,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:49,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:49,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:50,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:50,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:56:50,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:56:50,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:51,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:51,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:51,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:51,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:56:51,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:56:51,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:52,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:52,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:52,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:52,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:56:52,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:56:52,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:53,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:53,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:53,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:53,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:56:53,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:56:53,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:55,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:55,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:55,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:55,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:56:55,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:56:55,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:57,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:57,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:57,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:57,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:56:57,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:56:57,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:56:57,716 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:56:57,728 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:56:57,817 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.401 +2025-10-02 00:56:57,817 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 00:56:57,817 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 00:56:58,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:56:58,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:58,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:59,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:56:59,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:56:59,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:01,354 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:57:01,377 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:57:01,459 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.600 +2025-10-02 00:57:01,460 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 00:57:01,460 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:57:02,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:02,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:02,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:02,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:57:02,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:57:02,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:04,869 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:57:04,892 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:57:04,989 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.234 +2025-10-02 00:57:04,989 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-02 00:57:04,990 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 00:57:16,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:16,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:16,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:16,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 00:57:16,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 00:57:16,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:16,948 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:57:16,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:57:17,062 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.487 +2025-10-02 00:57:17,063 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 00:57:17,063 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 00:57:21,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:21,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:21,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:21,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:57:21,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:57:21,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:22,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:22,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:22,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:22,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:57:22,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:57:22,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:23,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:23,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:23,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:23,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:57:23,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:57:23,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:26,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:26,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:26,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:26,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 00:57:26,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 00:57:26,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:27,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:27,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:27,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:27,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:57:27,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:57:27,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:28,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:28,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:28,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:28,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:57:28,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:57:28,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:31,995 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:57:32,024 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 902, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:57:32,121 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.541 +2025-10-02 00:57:32,121 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-02 00:57:32,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-02 00:57:32,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:32,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:32,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:33,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:57:33,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:57:33,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:34,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:34,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:34,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:34,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:57:34,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:57:34,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:35,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:35,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:35,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:35,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:57:35,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:57:35,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:38,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:38,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:38,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:38,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:57:38,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:57:38,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:40,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:40,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:40,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:40,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:57:40,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:57:40,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:41,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:41,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:41,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:42,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:57:42,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:57:42,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:42,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:42,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:42,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:42,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:57:42,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:57:42,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:48,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:48,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:48,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:48,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:57:48,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:57:48,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:52,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:52,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:52,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:52,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:57:52,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:57:52,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:54,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:54,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:54,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:54,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:57:54,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:57:54,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:57:55,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:57:55,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:55,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:55,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:57:55,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:57:55,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:01,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:01,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:01,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:01,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:58:01,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:58:01,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:02,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:02,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:02,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:02,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:58:02,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:58:02,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:02,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:02,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:02,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:02,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:58:02,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:58:02,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:03,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:03,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:03,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:03,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:58:03,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:58:03,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:03,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:03,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:03,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:04,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:58:04,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:58:04,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:08,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:08,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:08,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:08,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:58:08,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:58:08,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:09,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:09,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:10,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:10,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:58:10,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:58:10,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:10,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:10,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:10,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:10,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:58:10,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:58:10,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:13,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:13,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:13,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:13,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:58:13,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:58:13,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:14,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:14,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:14,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:14,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:58:14,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:58:14,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:15,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:15,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:16,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:16,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:58:16,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:58:16,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:19,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:19,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:19,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:19,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:58:19,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:58:19,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:20,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:20,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:20,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:20,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:58:20,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:58:20,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:21,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:21,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:22,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:22,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:58:22,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:58:22,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:22,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:22,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:22,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:22,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:58:22,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:58:22,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:23,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:23,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:23,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:23,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:58:23,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:58:23,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:24,117 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:58:24,141 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:58:24,226 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.328 +2025-10-02 00:58:24,226 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 00:58:24,228 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 00:58:24,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:24,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:24,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:24,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 00:58:24,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 00:58:24,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:26,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:26,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:26,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:26,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:58:26,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:58:26,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:28,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:28,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:28,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:28,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:58:28,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:58:28,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:29,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:29,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:29,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:29,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:58:29,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:58:29,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:30,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:30,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:30,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:30,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:58:30,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:58:30,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:37,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:37,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:37,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:37,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:58:37,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:58:37,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:38,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:38,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:38,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:38,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:58:38,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:58:38,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:43,289 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:58:43,314 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:58:43,402 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.136 +2025-10-02 00:58:43,402 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 00:58:43,402 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 00:58:43,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:43,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:43,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:43,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:58:43,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:58:43,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:46,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:46,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:46,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:46,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-02 00:58:46,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-02 00:58:46,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:51,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:51,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:51,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:51,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:58:51,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:58:51,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:52,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:52,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:52,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:52,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:58:52,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:58:52,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:53,480 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:58:53,510 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:58:53,607 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.972 +2025-10-02 00:58:53,607 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-02 00:58:53,609 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-02 00:58:54,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:58:54,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:54,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:55,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 00:58:55,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 00:58:55,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:58:56,169 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:58:56,191 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:58:56,275 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.053 +2025-10-02 00:58:56,276 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 00:58:56,276 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 00:58:58,540 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:58:58,578 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:58:58,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.507 +2025-10-02 00:58:58,675 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-02 00:58:58,677 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-02 00:59:03,198 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:59:03,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:59:03,317 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.506 +2025-10-02 00:59:03,317 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-02 00:59:03,318 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 00:59:05,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:05,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:05,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:05,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:59:05,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:59:05,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:06,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:06,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:06,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:06,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:59:06,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:59:06,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:07,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:07,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:07,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:07,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:59:07,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:59:07,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:11,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:11,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:11,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:11,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:59:11,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:59:11,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:13,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:13,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:13,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:13,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:59:13,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:59:13,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:14,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:14,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:14,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:14,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:59:14,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:59:14,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:15,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:15,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:15,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:15,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:59:15,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:59:15,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:17,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:17,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:17,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:17,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:59:17,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:59:17,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:19,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:19,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:19,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:19,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:59:19,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:59:19,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:19,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:19,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:20,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:20,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:59:20,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:59:20,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:20,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:20,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:20,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:20,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:59:20,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:59:20,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:22,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:22,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:22,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:22,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:59:22,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:59:22,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:23,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:23,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:23,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:23,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:59:23,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:59:23,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:24,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:24,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:24,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:24,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:59:24,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:59:24,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:27,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:27,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:27,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:27,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:59:27,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:59:27,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:29,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:29,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:29,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:29,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:59:29,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:59:29,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:29,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:29,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:29,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:29,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:59:29,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:59:29,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:29,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:29,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:29,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:29,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 00:59:29,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 00:59:29,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:30,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:30,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:30,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:30,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:59:30,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:59:30,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:32,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:32,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:32,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:32,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:59:32,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:59:32,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:34,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:34,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:34,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:34,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:59:34,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:59:34,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:35,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:35,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:35,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:35,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:59:35,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:59:35,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:38,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:38,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:38,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:39,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:59:39,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:59:39,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:39,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:39,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:39,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:39,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:59:39,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:59:39,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:40,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:40,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:40,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:40,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:59:40,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:59:40,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:40,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:40,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:40,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:41,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:59:41,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:59:41,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:41,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:41,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:41,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:41,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:59:41,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:59:41,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:43,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:43,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:43,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:43,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:59:43,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:59:43,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:44,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:44,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:44,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:44,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:59:44,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:59:44,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:45,739 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:59:45,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:59:45,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:59:46,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 00:59:46,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 00:59:46,024 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:59:46,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:46,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:46,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:46,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:59:46,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:59:46,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:47,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:47,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:47,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:47,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:59:47,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:59:47,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:47,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:47,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:47,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:47,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:59:47,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:59:47,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:48,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:48,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:48,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:48,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:59:48,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:59:48,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:49,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:49,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:49,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:49,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:59:49,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:59:49,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:52,630 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 00:59:52,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:59:52,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:59:52,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.330s +2025-10-02 00:59:52,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.330s (avg: 0.165s/image) +2025-10-02 00:59:52,962 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 00:59:53,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:53,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:53,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:53,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:59:53,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:59:53,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:55,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:55,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:55,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:55,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:59:55,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:59:55,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:56,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:56,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:56,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:56,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:59:56,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:59:56,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:57,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:57,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:57,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:57,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:59:57,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:59:57,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:58,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:58,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:58,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:58,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:59:58,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:59:58,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 00:59:58,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 00:59:58,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:58,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:59,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:59:59,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:59:59,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:01,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:01,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:01,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:01,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:00:01,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:00:01,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:02,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:02,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:02,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:02,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:00:02,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:00:02,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:03,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:03,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:03,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:04,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:00:04,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:00:04,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:04,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:04,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:04,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:04,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:00:04,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:00:04,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:07,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:07,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:07,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:07,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:00:07,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:00:07,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:07,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:07,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:07,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:07,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:00:07,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:00:07,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:09,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:09,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:09,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:09,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:00:09,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:00:09,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:09,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:09,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:09,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:10,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:00:10,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:00:10,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:11,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:11,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:11,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:11,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:00:11,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:00:11,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:13,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:13,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:13,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:13,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:00:13,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:00:13,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:14,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:14,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:14,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:14,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:00:14,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:00:14,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:15,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:15,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:15,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:15,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:00:15,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:00:15,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:16,720 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:00:16,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:00:16,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:00:17,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-02 01:00:17,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-02 01:00:17,036 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:00:17,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:17,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:18,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:18,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:00:18,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:00:18,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:18,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:18,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:18,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:18,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:00:18,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:00:18,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:19,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:19,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:19,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:19,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:00:19,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:00:19,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:21,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:21,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:21,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:21,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:00:21,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:00:21,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:22,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:22,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:22,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:22,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:00:22,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:00:22,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:22,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:22,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:22,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:22,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:00:22,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:00:22,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:23,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:23,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:23,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:23,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:00:23,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:00:23,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:28,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:28,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:28,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:28,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:00:28,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:00:28,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:28,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:28,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:28,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:28,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:00:28,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:00:28,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:29,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:29,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:29,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:30,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:00:30,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:00:30,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:31,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:31,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:31,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:31,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:00:31,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:00:31,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:33,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:33,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:33,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:33,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:00:33,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:00:33,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:35,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:35,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:35,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:35,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:00:35,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:00:35,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:36,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:36,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:36,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:36,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:00:36,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:00:36,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:38,334 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:00:38,365 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:00:38,462 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.422 +2025-10-02 01:00:38,462 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-02 01:00:38,462 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 01:00:39,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:39,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:39,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:39,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:00:39,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:00:39,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:41,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:41,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:41,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:41,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:00:41,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:00:41,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:43,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:43,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:43,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:43,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:00:43,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:00:43,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:46,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:46,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:46,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:46,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:00:46,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:00:46,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:49,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:49,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:49,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:49,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:00:49,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:00:49,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:52,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:52,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:52,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:52,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:00:52,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:00:52,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:54,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:54,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:54,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:54,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:00:54,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:00:54,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:57,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:57,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:57,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:57,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:00:57,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:00:57,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:58,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:58,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:58,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:58,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:00:58,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:00:58,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:00:58,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:00:58,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:58,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:59,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:00:59,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:00:59,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:02,593 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:01:02,614 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:01:02,700 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.861 +2025-10-02 01:01:02,700 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 01:01:02,700 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:01:04,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:04,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:04,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:04,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:01:04,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:01:04,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:05,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:05,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:05,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:05,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:01:05,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:01:05,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:06,923 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:01:06,947 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:01:07,022 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.939 +2025-10-02 01:01:07,022 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 01:01:07,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 01:01:10,577 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:01:10,600 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:01:10,674 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.484 +2025-10-02 01:01:10,674 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 01:01:10,674 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 01:01:10,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:10,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:10,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:11,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:01:11,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:01:11,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:11,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:11,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:11,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:12,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:01:12,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:01:12,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:16,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:16,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:16,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:16,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:01:16,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:01:16,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:17,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:17,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:17,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:17,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:01:17,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:01:17,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:22,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:22,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:22,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:22,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:01:22,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:01:22,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:25,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:25,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:25,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:25,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:01:25,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:01:25,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:26,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:26,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:26,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:27,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:01:27,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:01:27,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:29,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:29,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:29,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:29,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:01:29,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:01:29,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:30,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:30,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:30,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:30,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:01:30,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:01:30,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:33,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:33,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:33,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:33,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:01:33,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:01:33,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:33,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:33,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:33,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:33,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:01:33,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:01:33,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:34,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:34,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:34,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:34,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:01:34,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:01:34,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:35,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:35,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:35,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:35,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:01:35,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:01:35,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:38,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:38,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:38,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:38,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:01:38,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:01:38,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:39,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:39,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:39,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:39,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:01:39,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:01:39,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:40,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:40,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:40,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:40,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:01:40,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:01:40,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:41,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:41,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:41,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:41,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:01:41,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:01:41,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:43,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:43,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:43,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:43,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:01:43,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:01:43,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:43,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:43,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:43,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:44,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:01:44,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:01:44,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:44,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:44,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:44,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:44,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:01:44,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:01:44,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:47,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:47,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:47,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:47,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:01:47,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:01:47,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:49,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:49,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:49,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:49,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:01:49,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:01:49,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:50,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:50,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:50,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:50,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:01:50,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:01:50,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:53,382 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:01:53,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:01:53,532 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.243 +2025-10-02 01:01:53,532 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.116s +2025-10-02 01:01:53,532 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.117s +2025-10-02 01:01:54,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:54,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:54,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:54,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:01:54,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:01:54,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:55,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:55,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:55,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:55,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:01:55,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:01:55,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:57,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:57,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:57,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:57,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:01:57,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:01:57,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:57,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:57,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:57,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:58,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:01:58,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:01:58,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:58,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:58,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:58,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:58,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:01:58,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:01:58,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:01:59,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:01:59,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:59,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:59,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:01:59,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:01:59,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:02,089 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:02:02,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:02:02,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:02:02,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.322s +2025-10-02 01:02:02,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.322s (avg: 0.161s/image) +2025-10-02 01:02:02,413 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:02:04,840 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:02:04,867 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:02:04,954 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.527 +2025-10-02 01:02:04,954 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 01:02:04,954 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 01:02:05,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:05,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:05,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:05,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:02:05,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:02:05,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:08,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:08,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:08,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:08,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:02:08,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:02:08,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:12,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:12,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:12,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:12,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:02:12,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:02:12,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:13,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:13,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:13,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:13,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:02:13,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:02:13,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:14,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:14,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:14,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:14,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:02:14,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:02:14,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:17,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:17,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:17,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:17,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:02:17,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:02:17,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:18,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:18,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:18,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:18,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:02:18,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:02:18,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:19,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:19,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:19,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:19,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:02:19,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:02:19,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:21,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:21,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:21,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:21,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 01:02:21,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 01:02:21,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:21,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:21,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:21,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:21,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:02:21,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:02:21,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:26,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:26,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:26,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:26,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:02:26,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:02:26,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:29,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:29,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:29,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:29,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:02:29,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:02:29,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:30,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:30,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:30,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:30,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:02:30,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:02:30,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:31,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:31,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:31,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:31,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:02:31,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:02:31,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:36,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:36,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:36,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:36,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:02:36,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:02:36,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:39,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:39,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:39,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:39,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 01:02:39,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 01:02:39,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:41,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:41,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:41,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:41,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:02:41,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:02:41,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:44,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:44,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:44,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:44,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 01:02:44,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 01:02:44,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:46,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:46,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:46,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:46,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:02:46,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:02:46,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:49,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:49,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:49,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:49,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:02:49,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:02:49,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:50,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:50,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:50,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:50,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:02:50,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:02:50,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:51,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:51,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:51,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:51,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:02:51,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:02:51,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:54,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:54,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:54,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:54,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:02:54,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:02:54,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:58,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:58,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:59,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:59,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:02:59,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:02:59,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:02:59,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:02:59,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:59,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:59,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:02:59,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:02:59,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:02,635 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:02,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:02,760 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.221 +2025-10-02 01:03:02,760 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-02 01:03:02,761 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-02 01:03:03,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:03,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:03,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:03,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:03:03,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:03:03,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:03,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:03,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:03,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:04,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:03:04,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:03:04,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:05,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:05,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:05,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:05,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:03:05,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:03:05,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:08,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:08,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:08,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:08,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:03:08,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:03:08,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:09,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:09,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:09,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:09,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:03:09,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:03:09,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:10,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:10,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:10,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:10,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:03:10,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:03:10,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:10,808 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:10,832 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:10,905 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=192.804 +2025-10-02 01:03:10,906 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 01:03:10,906 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 01:03:11,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:11,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:11,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:11,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:03:11,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:03:11,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:12,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:12,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:12,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:12,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:03:12,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:03:12,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:12,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:12,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:12,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:13,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:03:13,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:03:13,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:14,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:14,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:14,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:14,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:03:14,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:03:14,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:16,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:16,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:16,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:16,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:03:16,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:03:16,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:17,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:17,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:17,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:17,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:03:17,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:03:17,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:18,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:18,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:18,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:18,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:03:18,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:03:18,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:18,918 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:18,940 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:19,037 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.612 +2025-10-02 01:03:19,038 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-02 01:03:19,038 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 01:03:20,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:20,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:20,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:20,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:03:20,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:03:20,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:21,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:21,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:21,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:21,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:03:21,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:03:21,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:23,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:23,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:23,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:23,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:03:23,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:03:23,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:23,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:23,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:23,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:23,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:03:23,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:03:23,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:26,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:26,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:26,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:26,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:03:26,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:03:26,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:27,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:27,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:27,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:27,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:03:27,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:03:27,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:29,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:29,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:29,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:29,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:03:29,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:03:29,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:30,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:30,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:30,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:30,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:03:30,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:03:30,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:30,830 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:03:30,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:03:30,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:03:31,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 01:03:31,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-02 01:03:31,098 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:03:31,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:31,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:31,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:31,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:03:31,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:03:31,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:33,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:33,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:33,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:34,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:03:34,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:03:34,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:35,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:35,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:35,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:35,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:03:35,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:03:35,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:36,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:36,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:36,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:36,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:03:36,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:03:36,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:37,049 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:37,074 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:37,158 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.047 +2025-10-02 01:03:37,159 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 01:03:37,159 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:03:37,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:37,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:37,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:37,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:03:37,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:03:37,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:37,898 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:37,923 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:38,001 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.313 +2025-10-02 01:03:38,002 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 01:03:38,004 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 01:03:39,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:39,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:39,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:39,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:03:39,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:03:39,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:39,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:39,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:39,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:40,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:03:40,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:03:40,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:41,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:41,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:41,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:41,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:03:41,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:03:41,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:42,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:42,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:42,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.936 +2025-10-02 01:03:42,595 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 01:03:42,595 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:03:45,286 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:03:45,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:03:45,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:03:45,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:03:45,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 01:03:45,579 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:03:45,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:45,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:46,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:46,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:03:46,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:03:46,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:46,985 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:47,013 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:47,098 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=170.513 +2025-10-02 01:03:47,099 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 01:03:47,099 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:03:47,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:47,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:47,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:47,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:03:47,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:03:47,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:48,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:48,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:48,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:48,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:03:48,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:03:48,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:51,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:51,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:51,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:51,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:03:51,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:03:51,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:52,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:52,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:52,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:53,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:03:53,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:03:53,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:54,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:54,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:54,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:54,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:03:54,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:03:54,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:54,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:54,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:54,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:55,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:03:55,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:03:55,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:56,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:56,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:56,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:56,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:03:56,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:03:56,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:58,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:58,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:58,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:58,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:03:58,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:03:58,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:03:59,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:03:59,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:59,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:59,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:03:59,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:03:59,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:01,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:01,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:01,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:01,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:04:01,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:04:01,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:02,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:02,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:02,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:02,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-02 01:04:02,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-02 01:04:02,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:02,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:02,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:02,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:02,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:04:02,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:04:02,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:03,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:03,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:03,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:03,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:04:03,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:04:03,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:05,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:05,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:05,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:05,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:04:05,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:04:05,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:05,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:05,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:05,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:05,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:04:05,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:04:05,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:06,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:06,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:06,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:06,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:04:06,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:04:06,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:07,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:07,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:07,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:07,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:04:07,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:04:07,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:08,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:08,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:08,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:08,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:04:08,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:04:08,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:10,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:10,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:10,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:10,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:04:10,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:04:10,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:10,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:10,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:10,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:10,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 01:04:10,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 01:04:10,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:12,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:12,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:12,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:13,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:04:13,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:04:13,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:13,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:13,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:13,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:13,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:04:13,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:04:13,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:13,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:13,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:13,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:13,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:04:13,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:04:13,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:14,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:14,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:14,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:14,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:04:14,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:04:14,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:15,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:15,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:15,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:15,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:04:15,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:04:15,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:16,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:16,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:16,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:16,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:04:16,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:04:16,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:17,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:17,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:17,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:17,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:04:17,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:04:17,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:18,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:18,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:18,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:18,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:04:18,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:04:18,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:19,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:19,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:19,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:19,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:04:19,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:04:19,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:21,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:21,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:21,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:21,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:04:21,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:04:21,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:22,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:22,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:22,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:22,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:04:22,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:04:22,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:23,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:23,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:23,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:23,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:04:23,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:04:23,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:24,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:24,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:24,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:24,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:04:24,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:04:24,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:27,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:27,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:27,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:27,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:04:27,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:04:27,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:28,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:28,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:28,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:28,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:04:28,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:04:28,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:29,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:29,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:29,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:29,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:04:29,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:04:29,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:30,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:30,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:30,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:30,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:04:30,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:04:30,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:30,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:30,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:30,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:30,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:04:30,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:04:30,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:31,199 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:04:31,222 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:04:31,304 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.921 +2025-10-02 01:04:31,304 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 01:04:31,304 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:04:31,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:31,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:31,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:31,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:04:31,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:04:31,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:33,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:33,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:33,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:33,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:04:33,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:04:33,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:34,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:34,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:34,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:35,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:04:35,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:04:35,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:36,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:36,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:36,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:36,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:04:36,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:04:36,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:36,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:36,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:36,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:36,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:04:36,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:04:36,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:36,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:36,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:37,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:37,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:04:37,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:04:37,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:38,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:38,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:38,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:39,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:04:39,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:04:39,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:39,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:39,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:39,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:39,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:04:39,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:04:39,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:40,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:40,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:40,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:40,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:04:40,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:04:40,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:40,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:40,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:41,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:41,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:04:41,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:04:41,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:42,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:42,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:42,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:42,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:04:42,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:04:42,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:43,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:43,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:43,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:43,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:04:43,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:04:43,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:44,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:44,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:44,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:44,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:04:44,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:04:44,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:46,071 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:04:46,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:04:46,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:04:46,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 01:04:46,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-02 01:04:46,368 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:04:46,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:46,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:46,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:46,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:04:46,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:04:46,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:47,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:47,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:47,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:48,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:04:48,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:04:48,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:48,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:48,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:48,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:48,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:04:48,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:04:48,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:48,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:48,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:48,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:48,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:04:48,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:04:48,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:49,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:49,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:49,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:49,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:04:49,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:04:49,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:51,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:51,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:51,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:51,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:04:51,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:04:51,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:51,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:51,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:51,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:51,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:04:51,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:04:51,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:52,029 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:04:52,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:04:52,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:04:52,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 01:04:52,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 01:04:52,311 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:04:54,352 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:04:54,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:04:54,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:04:54,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +2025-10-02 01:04:54,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.159s/image) +2025-10-02 01:04:54,671 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:04:55,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:55,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:55,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:55,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:04:55,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:04:55,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:55,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:55,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:55,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:55,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:04:55,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:04:55,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:57,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:57,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:57,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:57,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:04:57,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:04:57,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:57,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:57,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:57,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:57,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:04:57,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:04:57,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:04:59,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:04:59,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:59,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:59,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:04:59,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:04:59,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:00,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:00,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:00,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:00,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:05:00,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:05:00,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:01,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:01,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:01,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:01,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:05:01,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:05:01,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:01,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:01,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:01,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:02,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:05:02,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:05:02,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:03,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:03,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:03,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:03,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:05:03,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:05:03,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:03,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:03,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:03,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:03,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:05:03,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:05:03,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:04,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:04,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:04,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:04,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:05:04,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:05:04,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:04,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:04,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:04,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:04,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:05:04,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:05:04,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:05,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:05,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:05,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:05,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:05:05,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:05:05,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:07,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:07,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:07,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:07,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:05:07,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:05:07,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:08,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:08,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:08,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:08,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:05:08,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:05:08,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:09,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:09,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:09,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:09,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:05:09,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:05:09,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:09,890 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:05:09,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:05:09,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:05:10,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 01:05:10,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 01:05:10,169 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:05:10,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:10,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:10,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:10,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:05:10,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:05:10,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:11,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:11,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:11,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:12,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:05:12,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:05:12,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:12,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:12,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:12,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:12,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:05:12,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:05:12,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:13,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:13,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:13,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:13,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:05:13,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:05:13,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:15,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:15,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:15,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:15,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:05:15,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:05:15,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:16,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:16,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:16,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:16,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:05:16,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:05:16,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:17,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:17,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:17,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:17,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:05:17,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:05:17,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:18,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:18,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:18,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:18,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:05:18,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:05:18,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:19,294 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:05:19,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:05:19,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:05:19,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 01:05:19,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 01:05:19,589 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:05:21,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:21,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:21,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:21,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:05:21,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:05:21,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:22,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:22,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:22,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:22,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:05:22,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:05:22,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:23,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:23,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:23,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:23,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:05:23,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:05:23,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:23,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:23,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:23,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:24,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:05:24,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:05:24,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:25,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:25,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:25,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:25,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:05:25,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:05:25,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:25,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:25,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:25,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:25,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:05:25,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:05:25,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:26,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:26,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:26,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:27,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:05:27,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:05:27,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:27,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:27,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:27,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:27,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:05:27,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:05:27,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:28,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:28,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:28,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:28,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:05:28,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:05:28,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:28,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:28,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:29,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:29,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:05:29,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:05:29,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:30,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:30,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:30,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:30,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:05:30,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:05:30,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:30,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:30,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:30,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:31,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:05:31,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:05:31,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:32,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:32,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:32,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:32,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:05:32,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:05:32,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:34,020 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:05:34,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:05:34,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:05:34,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 01:05:34,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-02 01:05:34,323 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:05:34,497 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:05:34,515 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:05:34,592 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.920 +2025-10-02 01:05:34,592 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 01:05:34,593 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 01:05:34,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:34,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:34,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:35,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:05:35,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:05:35,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:38,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:38,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:38,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:38,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:05:38,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:05:38,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:40,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:40,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:40,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:40,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:05:40,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:05:40,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:40,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:40,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:40,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:40,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:05:40,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:05:40,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:41,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:41,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:41,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:41,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:05:41,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:05:41,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:41,358 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:05:41,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:05:41,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:05:41,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.331s +2025-10-02 01:05:41,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.331s (avg: 0.166s/image) +2025-10-02 01:05:41,690 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:05:45,133 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:05:45,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:05:45,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:05:45,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 01:05:45,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 01:05:45,434 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:05:46,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:46,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:46,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:46,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:05:46,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:05:46,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:47,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:47,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:47,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:47,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:05:47,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:05:47,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:48,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:48,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:48,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:48,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:05:48,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:05:48,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:48,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:48,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:48,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:48,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:05:48,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:05:48,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:50,105 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:05:50,129 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:05:50,215 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.751 +2025-10-02 01:05:50,215 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 01:05:50,215 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:05:50,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:50,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:50,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:50,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:05:50,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:05:50,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:51,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:51,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:51,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:51,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:05:51,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:05:51,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:53,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:53,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:53,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:53,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:05:53,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:05:53,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:54,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:54,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:54,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:54,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:05:54,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:05:54,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:55,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:55,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:55,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:55,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:05:55,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:05:55,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:56,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:56,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:57,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:57,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:05:57,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:05:57,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:57,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:57,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:57,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:57,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:05:57,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:05:57,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:58,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:58,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:58,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:58,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:05:58,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:05:58,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:59,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:59,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:59,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:59,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:05:59,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:05:59,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:05:59,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:05:59,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:59,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:59,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:05:59,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:05:59,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:01,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:01,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:01,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:01,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:06:01,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:06:01,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:02,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:02,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:02,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:02,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:06:02,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:06:02,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:02,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:02,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:02,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:02,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:06:02,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:06:02,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:06,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:06,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:06,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:06,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:06:06,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:06:06,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:06,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:06,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:06,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:06,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:06:06,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:06:06,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:08,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:08,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:08,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:08,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:06:08,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:06:08,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:10,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:10,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:10,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:10,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:06:10,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:06:10,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:14,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:14,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:14,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:14,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:06:14,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:06:14,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:14,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:14,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:14,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:15,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:06:15,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:06:15,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:15,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:15,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:15,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:15,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:06:15,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:06:15,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:15,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:15,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:15,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:15,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:06:15,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:06:15,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:19,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:19,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:19,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:19,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:06:19,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:06:19,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:20,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:20,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:20,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:20,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:06:20,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:06:20,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:22,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:22,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:22,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:22,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:06:22,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:06:22,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:24,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:24,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:24,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:24,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:06:24,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:06:24,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:29,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:29,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:29,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:29,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:06:29,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:06:29,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:30,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:30,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:30,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:30,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:06:30,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:06:30,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:35,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:35,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:35,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:35,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 01:06:35,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 01:06:35,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:37,585 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:06:37,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:06:37,712 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.908 +2025-10-02 01:06:37,713 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 01:06:37,713 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:06:38,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:38,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:38,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:39,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:06:39,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:06:39,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:39,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:39,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:39,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:39,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:06:39,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:06:39,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:42,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:42,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:42,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:43,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:06:43,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:06:43,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:47,522 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:06:47,568 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:06:47,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.532 +2025-10-02 01:06:47,669 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-02 01:06:47,671 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 01:06:47,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:47,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:47,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:48,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:06:48,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:06:48,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:48,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:48,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:49,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:49,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:06:49,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:06:49,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:53,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:53,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:53,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:53,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:06:53,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:06:53,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:53,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:53,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:53,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:53,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:06:53,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:06:53,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:58,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:58,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:58,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:58,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:06:58,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:06:58,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:06:58,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:06:58,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:58,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:58,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:06:58,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:06:58,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:03,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:03,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:03,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:03,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:07:03,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:07:03,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:03,896 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:07:03,925 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:07:04,012 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.284 +2025-10-02 01:07:04,013 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 01:07:04,013 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:07:09,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:09,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:09,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:09,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:07:09,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:07:09,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:09,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:09,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:09,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:09,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:07:09,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:07:09,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:10,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:10,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:10,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:10,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:07:10,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:07:10,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:12,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:12,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:12,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:12,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:07:12,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:07:12,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:14,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:14,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:14,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:14,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:07:14,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:07:14,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:16,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:16,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:16,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:16,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:07:16,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:07:16,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:17,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:17,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:17,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:17,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:07:17,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:07:17,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:19,576 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:07:19,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:07:19,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:07:19,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 01:07:19,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 01:07:19,864 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:07:20,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:20,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:20,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:20,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:07:20,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:07:20,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:22,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:22,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:22,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:22,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:07:22,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:07:22,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:26,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:26,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:26,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:26,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:07:26,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:07:26,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:26,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:26,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:26,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:27,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:07:27,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:07:27,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:27,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:27,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:27,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:27,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 01:07:27,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 01:07:27,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:27,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:27,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:27,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:27,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:07:27,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:07:27,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:30,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:30,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:30,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:30,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:07:30,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:07:30,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:32,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:32,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:32,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:32,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:07:32,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:07:32,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:32,268 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:07:32,298 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:07:32,397 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.291 +2025-10-02 01:07:32,397 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-02 01:07:32,399 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 01:07:34,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:34,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:35,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:35,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:07:35,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:07:35,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:35,579 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:07:35,599 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:07:35,681 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.835 +2025-10-02 01:07:35,681 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 01:07:35,681 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:07:36,854 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:07:36,889 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:07:36,982 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.692 +2025-10-02 01:07:36,982 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 01:07:36,984 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 01:07:38,881 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:07:38,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:07:38,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:07:39,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 01:07:39,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 01:07:39,175 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:07:41,453 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:07:41,485 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:07:41,577 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.745 +2025-10-02 01:07:41,578 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 01:07:41,579 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 01:07:42,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:42,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:42,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:42,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:07:42,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:07:42,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:42,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:42,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:42,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:42,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:07:42,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:07:42,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:42,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:42,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:43,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:43,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:07:43,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:07:43,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:43,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:43,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:43,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:43,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:07:43,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:07:43,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:49,145 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:07:49,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:07:49,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:07:49,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 01:07:49,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 01:07:49,449 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:07:49,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:49,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:49,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:49,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:07:49,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:07:49,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:51,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:51,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:51,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:51,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:07:51,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:07:51,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:54,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:54,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:54,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:54,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:07:54,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:07:54,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:54,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:54,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:54,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:55,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:07:55,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:07:55,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:55,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:55,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:55,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:55,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:07:55,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:07:55,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:56,098 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:07:56,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:07:56,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:07:56,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 01:07:56,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-02 01:07:56,394 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:07:58,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:58,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:58,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:58,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:07:58,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:07:58,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:07:59,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:07:59,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:59,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:59,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:07:59,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:07:59,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:00,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:00,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:00,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:00,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:08:00,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:08:00,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:00,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:00,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:00,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:00,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:08:00,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:08:00,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:01,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:01,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:01,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:01,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:08:01,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:08:01,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:02,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:02,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:02,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:02,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:08:02,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:08:02,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:03,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:03,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:03,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:03,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:08:03,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:08:03,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:04,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:04,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:04,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:04,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:08:04,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:08:04,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:07,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:07,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:07,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:07,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:08:07,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:08:07,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:08,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:08,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:08,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:08,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:08:08,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:08:08,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:08,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:08,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:09,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:09,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:08:09,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:08:09,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:18,926 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:08:18,972 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:08:19,066 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.816 +2025-10-02 01:08:19,067 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 01:08:19,067 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 01:08:21,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:21,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:21,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:21,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:08:21,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:08:21,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:21,858 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:08:21,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:08:21,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:08:22,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 01:08:22,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-02 01:08:22,155 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:08:22,344 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:08:22,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:08:22,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:08:22,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +2025-10-02 01:08:22,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +2025-10-02 01:08:22,605 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:08:22,735 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:08:22,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:08:22,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:08:22,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.254s +2025-10-02 01:08:22,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.254s (avg: 0.127s/image) +2025-10-02 01:08:22,990 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:08:29,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:29,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:29,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:29,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-02 01:08:29,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-02 01:08:29,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:29,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:29,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:29,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:29,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:08:29,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:08:29,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:29,819 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:08:29,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:08:29,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:08:30,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-02 01:08:30,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-02 01:08:30,092 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:08:30,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:30,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:30,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:30,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:08:30,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:08:30,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:33,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:33,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:34,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:34,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:08:34,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:08:34,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:34,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:34,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:34,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:34,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 01:08:34,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 01:08:34,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:35,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:35,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:35,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:35,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:08:35,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:08:35,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:36,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:36,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:36,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:36,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:08:36,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:08:36,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:38,777 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:08:38,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:08:38,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:08:39,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 01:08:39,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-02 01:08:39,046 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:08:43,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:43,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:43,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:43,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:08:43,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:08:43,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:43,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:43,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:43,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:43,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:08:43,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:08:43,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:43,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:43,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:43,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:44,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:08:44,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:08:44,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:44,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:44,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:44,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:44,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:08:44,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:08:44,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:46,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:46,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:46,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:47,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:08:47,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:08:47,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:48,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:48,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:48,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:48,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:08:48,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:08:48,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:49,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:49,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:49,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:49,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:08:49,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:08:49,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:49,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:49,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:49,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:50,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:08:50,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:08:50,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:51,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:51,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:51,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:51,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:08:51,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:08:51,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:52,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:52,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:52,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:52,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:08:52,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:08:52,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:52,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:52,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:52,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:53,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 01:08:53,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 01:08:53,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:55,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:55,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:55,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:55,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:08:55,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:08:55,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:56,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:56,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:56,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:56,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:08:56,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:08:56,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:57,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:57,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:57,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:57,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:08:57,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:08:57,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:08:59,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:08:59,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:59,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:59,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:08:59,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:08:59,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:05,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:05,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:05,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:05,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:09:05,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:09:05,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:05,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:05,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:05,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:05,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:09:05,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:09:05,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:09,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:09,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:10,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:10,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 01:09:10,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 01:09:10,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:13,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:13,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:13,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:13,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:09:13,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:09:13,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:15,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:15,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:15,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:15,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:09:15,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:09:15,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:15,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:15,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:15,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:15,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:09:15,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:09:15,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:16,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:16,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:16,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:16,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:09:16,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:09:16,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:19,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:19,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:19,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:19,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:09:19,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:09:19,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:20,395 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:09:20,423 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:09:20,524 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.342 +2025-10-02 01:09:20,524 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-02 01:09:20,526 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-02 01:09:22,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:22,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:22,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:22,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:09:22,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:09:22,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:22,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:22,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:22,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:22,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:09:22,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:09:22,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:24,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:24,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:24,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:24,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:09:24,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:09:24,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:25,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:25,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:25,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:25,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:09:25,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:09:25,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:26,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:26,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:26,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:26,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:09:26,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:09:26,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:27,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:27,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:27,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:27,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:09:27,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:09:27,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:28,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:28,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:28,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:28,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:09:28,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:09:28,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:31,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:31,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:31,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:31,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:09:31,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:09:31,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:33,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:33,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:33,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:33,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:09:33,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:09:33,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:36,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:36,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:36,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:36,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:09:36,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:09:36,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:38,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:38,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:38,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:38,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:09:38,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:09:38,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:39,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:39,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:39,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:39,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:09:39,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:09:39,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:41,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:41,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:41,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:41,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:09:41,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:09:41,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:42,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:42,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:42,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:42,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:09:42,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:09:42,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:44,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:44,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:44,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:45,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:09:45,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:09:45,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:46,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:46,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:46,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:46,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:09:46,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:09:46,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:47,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:47,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:47,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:47,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:09:47,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:09:47,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:48,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:48,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:48,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:48,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:09:48,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:09:48,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:48,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:48,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:48,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:48,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:09:48,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:09:48,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:48,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:48,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:48,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:49,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:09:49,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:09:49,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:49,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:49,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:49,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:49,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:09:49,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:09:49,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:49,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:49,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:49,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:50,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:09:50,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:09:50,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:50,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:50,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:50,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:50,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:09:50,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:09:50,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:52,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:52,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:52,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:52,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:09:52,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:09:52,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:53,257 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:09:53,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:09:53,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:09:53,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 01:09:53,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 01:09:53,561 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:09:54,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:54,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:54,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:54,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:09:54,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:09:54,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:57,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:57,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:57,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:57,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:09:57,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:09:57,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:58,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:58,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:58,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:58,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:09:58,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:09:58,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:58,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:58,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:58,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:58,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:09:58,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:09:58,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:09:58,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:09:58,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:58,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:59,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:09:59,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:09:59,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:01,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:01,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:01,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:01,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:10:01,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:10:01,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:03,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:03,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:03,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:03,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 01:10:03,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 01:10:03,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:04,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:04,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:04,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:04,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:10:04,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:10:04,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:06,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:06,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:06,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:06,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:10:06,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:10:06,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:08,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:08,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:08,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:08,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:10:08,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:10:08,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:09,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:09,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:09,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:09,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:10:09,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:10:09,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:10,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:10,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:10,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:10,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:10:10,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:10:10,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:10,994 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:11,008 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:11,092 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.590 +2025-10-02 01:10:11,092 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 01:10:11,092 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:10:13,598 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:13,620 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:13,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.993 +2025-10-02 01:10:13,696 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 01:10:13,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 01:10:13,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:13,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:13,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:13,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:10:13,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:10:13,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:14,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:14,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:14,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:14,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:10:14,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:10:14,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:16,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:16,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:16,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:16,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:10:16,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:10:16,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:17,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:17,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:17,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:17,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:10:17,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:10:17,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:17,456 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:17,480 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:17,561 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.938 +2025-10-02 01:10:17,562 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 01:10:17,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:10:18,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:18,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:18,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:18,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:10:18,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:10:18,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:21,261 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:21,286 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:21,362 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.231 +2025-10-02 01:10:21,362 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 01:10:21,362 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 01:10:22,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:22,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:22,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:23,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:10:23,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:10:23,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:23,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:23,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:23,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:23,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:10:23,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:10:23,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:23,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:23,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:23,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:23,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:10:23,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:10:23,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:25,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:25,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:25,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:25,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:10:25,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:10:25,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:25,637 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:25,657 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:25,739 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.481 +2025-10-02 01:10:25,740 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 01:10:25,741 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:10:28,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:28,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:28,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:28,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:10:28,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:10:28,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:29,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:29,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:29,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:29,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:10:29,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:10:29,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:29,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:29,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:29,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:30,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:10:30,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:10:30,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:31,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:31,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:31,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:31,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:10:31,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:10:31,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:32,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:32,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:32,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:32,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:10:32,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:10:32,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:33,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:33,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:33,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:33,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:10:33,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:10:33,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:35,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:35,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:35,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:35,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:10:35,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:10:35,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:36,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:36,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:36,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:37,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:10:37,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:10:37,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:37,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:37,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:37,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:37,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:10:37,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:10:37,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:39,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:39,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:39,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:39,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:10:39,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:10:39,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:39,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:39,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:39,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:39,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:10:39,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:10:39,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:41,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:41,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:41,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:41,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:10:41,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:10:41,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:41,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:41,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:41,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:41,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:10:41,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:10:41,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:45,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:45,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:45,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:46,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:10:46,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:10:46,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:46,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:46,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:46,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:46,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:10:46,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:10:46,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:49,426 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:49,450 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:49,544 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.864 +2025-10-02 01:10:49,544 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 01:10:49,545 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 01:10:50,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:50,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:50,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:50,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:10:50,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:10:50,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:52,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:52,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:52,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:52,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:10:52,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:10:52,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:53,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:53,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:53,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:53,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:10:53,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:10:53,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:10:57,892 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:57,914 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:57,997 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.166 +2025-10-02 01:10:57,997 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 01:10:57,997 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:10:58,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:10:58,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:58,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:58,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:10:58,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:10:58,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:00,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:00,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:00,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:00,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:11:00,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:11:00,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:01,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:01,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:01,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:01,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:11:01,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:11:01,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:03,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:03,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:03,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:03,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:11:03,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:11:03,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:05,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:05,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:05,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:05,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:11:05,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:11:05,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:07,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:07,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:07,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:07,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:11:07,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:11:07,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:07,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:07,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:08,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:08,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:11:08,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:11:08,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:12,527 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:11:12,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:11:12,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:11:12,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 01:11:12,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 01:11:12,830 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:11:14,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:14,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:15,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:15,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:11:15,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:11:15,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:16,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:16,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:16,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:16,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:11:16,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:11:16,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:17,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:17,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:17,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:17,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:11:17,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:11:17,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:18,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:18,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:18,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:18,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 01:11:18,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 01:11:18,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:18,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:18,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:19,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:19,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:11:19,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:11:19,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:19,370 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:11:19,406 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:11:19,489 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.025 +2025-10-02 01:11:19,489 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 01:11:19,489 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:11:23,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:23,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:23,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:23,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:11:23,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:11:23,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:26,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:26,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:26,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:26,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:11:26,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:11:26,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:28,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:28,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:28,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:28,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:11:28,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:11:28,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:33,861 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:11:33,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:11:33,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:11:34,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.330s +2025-10-02 01:11:34,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.330s (avg: 0.165s/image) +2025-10-02 01:11:34,193 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:11:34,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:34,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:34,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:34,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:11:34,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:11:34,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:35,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:35,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:35,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:35,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:11:35,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:11:35,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:37,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:37,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:37,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:38,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:11:38,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:11:38,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:39,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:39,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:39,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:39,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:11:39,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:11:39,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:39,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:39,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:39,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:39,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:11:39,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:11:39,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:41,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:41,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:41,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:41,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:11:41,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:11:41,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:43,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:43,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:43,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:43,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:11:43,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:11:43,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:44,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:44,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:44,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:44,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:11:44,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:11:44,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:45,066 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:11:45,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:11:45,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:11:45,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 01:11:45,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-02 01:11:45,349 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:11:45,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:45,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:45,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:45,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:11:45,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:11:45,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:49,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:49,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:49,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:49,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:11:49,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:11:49,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:49,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:49,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:49,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:49,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:11:49,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:11:49,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:51,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:51,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:51,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:51,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:11:51,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:11:51,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:53,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:53,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:53,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:54,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:11:54,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:11:54,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:55,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:55,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:55,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:56,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:11:56,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:11:56,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:11:57,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:11:57,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:57,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:57,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:11:57,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:11:57,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:07,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:07,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:07,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:07,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:12:07,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:12:07,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:07,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:07,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:07,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:07,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:12:07,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:12:07,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:08,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:08,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:08,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:08,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:12:08,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:12:08,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:10,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:10,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:10,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:10,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:12:10,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:12:10,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:11,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:11,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:11,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:11,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:12:11,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:12:11,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:12,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:12,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:12,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:12,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:12:12,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:12:12,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:14,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:14,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:14,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:14,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:12:14,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:12:14,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:16,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:16,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:16,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:17,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:12:17,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:12:17,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:17,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:17,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:17,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:17,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:12:17,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:12:17,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:18,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:18,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:18,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:18,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:12:18,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:12:18,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:20,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:20,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:20,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:20,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:12:20,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:12:20,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:24,285 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:12:24,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:12:24,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:12:24,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 01:12:24,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 01:12:24,585 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:12:26,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:26,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:26,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:26,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:12:26,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:12:26,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:28,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:28,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:28,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:28,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:12:28,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:12:28,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:29,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:29,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:29,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:30,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:12:30,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:12:30,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:31,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:31,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:31,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:31,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:12:31,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:12:31,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:32,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:32,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:32,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:32,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:12:32,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:12:32,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:36,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:36,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:36,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:36,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:12:36,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:12:36,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:36,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:36,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:36,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:36,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:12:36,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:12:36,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:38,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:38,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:38,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:38,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:12:38,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:12:38,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:39,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:39,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:39,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:39,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:12:39,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:12:39,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:39,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:39,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:39,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:40,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:12:40,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:12:40,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:41,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:41,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:41,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:41,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:12:41,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:12:41,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:42,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:42,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:42,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:42,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:12:42,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:12:42,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:42,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:42,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:42,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:42,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:12:42,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:12:42,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:43,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:43,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:43,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:43,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:12:43,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:12:43,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:45,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:45,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:45,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:45,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:12:45,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:12:45,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:47,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:47,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:47,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:47,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:12:47,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:12:47,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:50,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:50,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:50,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:50,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:12:50,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:12:50,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:51,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:51,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:51,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:51,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:12:51,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:12:51,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:52,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:52,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:52,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:52,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:12:52,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:12:52,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:53,677 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:12:53,699 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:12:53,786 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.635 +2025-10-02 01:12:53,787 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 01:12:53,787 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:12:54,022 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:12:54,063 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:12:54,141 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.776 +2025-10-02 01:12:54,142 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 01:12:54,142 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:12:55,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:55,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:56,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:56,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:12:56,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:12:56,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:56,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:12:56,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:56,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:56,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:12:56,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:12:56,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:12:58,699 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:12:58,730 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:12:58,809 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.010 +2025-10-02 01:12:58,810 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 01:12:58,810 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 01:13:02,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:02,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:02,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:02,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:13:02,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:13:02,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:02,860 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:13:02,878 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:13:02,962 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.998 +2025-10-02 01:13:02,962 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 01:13:02,962 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:13:03,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:03,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:03,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:03,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:13:03,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:13:03,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:04,417 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:13:04,461 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:13:04,543 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.929 +2025-10-02 01:13:04,543 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 01:13:04,544 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:13:07,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:07,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:07,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:07,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:13:07,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:13:07,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:08,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:08,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:08,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:08,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:13:08,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:13:08,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:11,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:11,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:11,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:11,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:13:11,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:13:11,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:11,886 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:13:11,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:13:11,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:13:12,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 01:13:12,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 01:13:12,175 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:13:13,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:13,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:13,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:13,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:13:13,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:13:13,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:16,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:16,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:17,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:17,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:13:17,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:13:17,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:19,037 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:13:19,067 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:13:19,160 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.397 +2025-10-02 01:13:19,160 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 01:13:19,162 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 01:13:21,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:21,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:21,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:21,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:13:21,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:13:21,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:21,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:21,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:21,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:21,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:13:21,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:13:21,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:22,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:22,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:22,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:22,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:13:22,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:13:22,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:26,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:26,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:26,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:26,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:13:26,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:13:26,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:28,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:28,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:28,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:28,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:13:28,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:13:28,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:28,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:28,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:28,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:28,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:13:28,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:13:28,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:30,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:30,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:30,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:30,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:13:30,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:13:30,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:35,623 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:13:35,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:13:35,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:13:35,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 01:13:35,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-02 01:13:35,920 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:13:42,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:42,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:42,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:42,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:13:42,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:13:42,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:43,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:43,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:43,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:43,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:13:43,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:13:43,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:46,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:46,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:46,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:46,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:13:46,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:13:46,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:47,718 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:13:47,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:13:47,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:13:47,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 01:13:47,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-02 01:13:47,987 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:13:48,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:48,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:48,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:48,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:13:48,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:13:48,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:49,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:49,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:49,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:49,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:13:49,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:13:49,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:50,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:50,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:50,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:50,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:13:50,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:13:50,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:52,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:52,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:52,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:52,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:13:52,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:13:52,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:52,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:52,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:52,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:53,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:13:53,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:13:53,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:53,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:53,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:53,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:53,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:13:53,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:13:53,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:56,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:56,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:56,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:56,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 01:13:56,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 01:13:56,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:57,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:57,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:57,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:57,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:13:57,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:13:57,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:57,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:57,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:57,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:57,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:13:57,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:13:57,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:13:57,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:13:57,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:57,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:57,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:13:57,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:13:57,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:01,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:01,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:01,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:01,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:14:01,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:14:01,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:03,407 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:14:03,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:14:03,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:14:03,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 01:14:03,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 01:14:03,687 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:14:03,925 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:14:03,944 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:14:04,029 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.682 +2025-10-02 01:14:04,029 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 01:14:04,029 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:14:06,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:06,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:06,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:06,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:14:06,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:14:06,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:07,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:07,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:07,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:07,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:14:07,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:14:07,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:08,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:08,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:08,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:09,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:14:09,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:14:09,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:09,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:09,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:09,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:10,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:14:10,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:14:10,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:11,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:11,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:11,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:11,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:14:11,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:14:11,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:12,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:12,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:12,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:12,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:14:12,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:14:12,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:13,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:13,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:13,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:13,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:14:13,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:14:13,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:14,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:14,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:14,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:14,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:14:14,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:14:14,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:15,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:15,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:15,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:16,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:14:16,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:14:16,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:16,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:16,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:16,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:16,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:14:16,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:14:16,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:16,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:16,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:16,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:17,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:14:17,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:14:17,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:17,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:17,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:17,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:17,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:14:17,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:14:17,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:20,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:20,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:20,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:20,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:14:20,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:14:20,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:21,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:21,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:21,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:21,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:14:21,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:14:21,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:22,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:22,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:22,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:22,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:14:22,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:14:22,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:23,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:23,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:23,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:24,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:14:24,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:14:24,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:24,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:24,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:24,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:24,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:14:24,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:14:24,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:25,210 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:14:25,235 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:14:25,313 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.097 +2025-10-02 01:14:25,313 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 01:14:25,315 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 01:14:26,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:26,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:26,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:26,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:14:26,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:14:26,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:28,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:28,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:28,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:28,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:14:28,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:14:28,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:29,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:29,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:29,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:29,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:14:29,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:14:29,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:30,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:30,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:30,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:30,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:14:30,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:14:30,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:31,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:31,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:31,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:31,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:14:31,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:14:31,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:31,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:31,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:31,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:31,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:14:31,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:14:31,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:32,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:32,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:32,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:32,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:14:32,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:14:32,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:36,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:36,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:36,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:36,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:14:36,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:14:36,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:36,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:36,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:36,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:36,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:14:36,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:14:36,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:38,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:38,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:38,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:38,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:14:38,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:14:38,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:38,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:38,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:38,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:38,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:14:38,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:14:38,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:39,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:39,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:39,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:39,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:14:39,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:14:39,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:43,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:43,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:43,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:43,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:14:43,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:14:43,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:44,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:44,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:45,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:45,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:14:45,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:14:45,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:45,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:45,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:45,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:46,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:14:46,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:14:46,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:47,595 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:14:47,630 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:14:47,714 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.777 +2025-10-02 01:14:47,714 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 01:14:47,715 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:14:48,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:48,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:48,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:49,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:14:49,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:14:49,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:49,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:49,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:49,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:49,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:14:49,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:14:49,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:51,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:51,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:51,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:51,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:14:51,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:14:51,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:52,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:52,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:52,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:52,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:14:52,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:14:52,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:53,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:53,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:53,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:53,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:14:53,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:14:53,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:55,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:55,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:55,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:55,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:14:55,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:14:55,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:14:58,650 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:14:58,678 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 799, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:14:58,759 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.000 +2025-10-02 01:14:58,760 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 01:14:58,760 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:14:58,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:14:58,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:59,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:59,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:14:59,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:14:59,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:00,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:00,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:00,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:00,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:15:00,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:15:00,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:01,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:01,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:01,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:02,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:15:02,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:15:02,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:02,159 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:15:02,180 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:15:02,253 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.281 +2025-10-02 01:15:02,254 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 01:15:02,254 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 01:15:02,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:02,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:02,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:02,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:15:02,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:15:02,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:05,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:05,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:05,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:05,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:15:05,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:15:05,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:05,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:05,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:05,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:05,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:15:05,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:15:05,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:06,285 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:15:06,310 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:15:06,392 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.584 +2025-10-02 01:15:06,393 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 01:15:06,393 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:15:07,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:07,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:07,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:07,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:15:07,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:15:07,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:08,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:08,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:08,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:08,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:15:08,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:15:08,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:09,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:09,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:09,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:09,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:15:09,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:15:09,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:10,924 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:15:10,949 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:15:11,024 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.528 +2025-10-02 01:15:11,024 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 01:15:11,024 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 01:15:13,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:13,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:13,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:13,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:15:13,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:15:13,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:14,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:14,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:14,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:15,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:15:15,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:15:15,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:16,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:16,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:16,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:17,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:15:17,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:15:17,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:17,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:17,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:17,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:17,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:15:17,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:15:17,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:18,008 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:15:18,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:15:18,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:15:18,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 01:15:18,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-02 01:15:18,278 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:15:18,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:18,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:18,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:18,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:15:18,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:15:18,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:22,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:22,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:22,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:23,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:15:23,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:15:23,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:27,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:27,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:27,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:27,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:15:27,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:15:27,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:28,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:28,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:28,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:28,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:15:28,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:15:28,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:28,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:28,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:28,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:28,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:15:28,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:15:28,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:30,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:30,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:30,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:30,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:15:30,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:15:30,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:32,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:32,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:32,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:32,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:15:32,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:15:32,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:32,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:32,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:33,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:33,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:15:33,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:15:33,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:33,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:33,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:33,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:33,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:15:33,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:15:33,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:34,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:34,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:34,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:34,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:15:34,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:15:34,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:35,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:35,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:35,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:35,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:15:35,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:15:35,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:35,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:35,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:35,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:35,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:15:35,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:15:35,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:36,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:36,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:36,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:36,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:15:36,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:15:36,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:36,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:36,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:36,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:36,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:15:36,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:15:36,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:37,049 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:15:37,067 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:15:37,151 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.212 +2025-10-02 01:15:37,151 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 01:15:37,151 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:15:37,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:37,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:37,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:37,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:15:37,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:15:37,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:38,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:38,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:38,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:38,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:15:38,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:15:38,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:40,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:40,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:40,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:40,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:15:40,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:15:40,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:42,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:42,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:43,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:43,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:15:43,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:15:43,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:43,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:43,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:43,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:43,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:15:43,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:15:43,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:43,591 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:15:43,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:15:43,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:15:43,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 01:15:43,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-02 01:15:43,870 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:15:44,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:44,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:44,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:44,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:15:44,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:15:44,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:44,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:44,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:44,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:44,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:15:44,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:15:44,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:46,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:46,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:47,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:47,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:15:47,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:15:47,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:48,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:48,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:48,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:48,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:15:48,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:15:48,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:49,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:49,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:49,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:49,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:15:49,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:15:49,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:49,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:49,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:49,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:50,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:15:50,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:15:50,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:51,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:51,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:51,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:51,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:15:51,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:15:51,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:51,603 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:15:51,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:15:51,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:15:51,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-02 01:15:51,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-02 01:15:51,871 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:15:52,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:52,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:52,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:53,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:15:53,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:15:53,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:55,365 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:15:55,393 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:15:55,479 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.188 +2025-10-02 01:15:55,479 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 01:15:55,479 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:15:56,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:56,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:56,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:56,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:15:56,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:15:56,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:57,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:57,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:57,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:57,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:15:57,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:15:57,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:57,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:57,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:57,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:57,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:15:57,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:15:57,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:58,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:58,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:58,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:58,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:15:58,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:15:58,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:15:58,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:15:58,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:58,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:58,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:15:58,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:15:58,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:02,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:02,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:03,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:03,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:16:03,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:16:03,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:04,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:04,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:04,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:04,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:16:04,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:16:04,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:05,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:05,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:05,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:05,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:16:05,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:16:05,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:06,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:06,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:06,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:06,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:16:06,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:16:06,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:08,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:08,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:09,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:09,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:16:09,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:16:09,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:12,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:12,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:12,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:12,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:16:12,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:16:12,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:12,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:12,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:12,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:12,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:16:12,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:16:12,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:13,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:13,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:13,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:13,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:16:13,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:16:13,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:18,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:18,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:18,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:18,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:16:18,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:16:18,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:20,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:20,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:20,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:20,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:16:20,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:16:20,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:21,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:21,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:21,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:21,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:16:21,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:16:21,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:24,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:24,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:24,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:24,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:16:24,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:16:24,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:27,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:27,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:27,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:27,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:16:27,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:16:27,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:29,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:29,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:29,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:29,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:16:29,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:16:29,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:29,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:29,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:29,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:29,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:16:29,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:16:29,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:30,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:30,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:30,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:30,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:16:30,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:16:30,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:31,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:31,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:31,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:31,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:16:31,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:16:31,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:33,168 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:16:33,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:16:33,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:16:33,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 01:16:33,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +2025-10-02 01:16:33,485 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:16:33,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:33,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:33,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:33,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:16:33,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:16:33,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:34,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:34,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:34,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:34,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:16:34,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:16:34,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:35,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:35,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:35,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:36,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:16:36,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:16:36,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:37,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:37,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:37,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:37,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:16:37,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:16:37,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:37,803 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:16:37,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:16:37,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:16:38,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 01:16:38,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 01:16:38,089 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:16:39,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:39,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:39,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:39,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:16:39,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:16:39,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:41,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:41,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:41,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:41,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:16:41,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:16:41,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:42,259 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:16:42,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:16:42,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:16:42,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 01:16:42,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 01:16:42,540 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:16:42,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:42,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:42,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:42,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:16:42,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:16:42,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:44,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:44,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:44,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:44,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:16:44,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:16:44,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:45,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:45,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:45,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:45,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:16:45,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:16:45,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:46,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:46,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:46,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:46,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:16:46,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:16:46,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:47,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:47,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:47,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:47,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:16:47,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:16:47,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:48,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:48,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:48,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:48,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:16:48,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:16:48,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:49,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:49,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:49,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:49,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:16:49,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:16:49,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:52,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:52,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:52,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:52,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:16:52,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:16:52,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:53,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:53,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:53,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:53,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:16:53,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:16:53,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:53,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:53,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:53,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:53,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 01:16:53,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 01:16:53,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:54,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:54,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:54,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:54,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:16:54,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:16:54,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:55,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:55,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:55,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:55,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:16:55,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:16:55,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:56,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:56,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:56,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:56,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:16:56,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:16:56,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:56,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:56,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:56,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:56,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:16:56,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:16:56,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:57,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:57,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:57,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:57,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:16:57,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:16:57,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:16:58,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:16:58,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:58,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:58,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:16:58,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:16:58,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:00,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:00,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:00,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:00,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:17:00,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:17:00,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:01,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:01,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:01,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:01,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:17:01,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:17:01,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:02,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:02,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:02,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:02,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:17:02,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:17:02,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:03,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:03,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:03,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:03,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:03,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:03,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:04,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:04,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:04,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:05,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:17:05,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:17:05,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:05,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:05,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:05,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:05,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:17:05,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:17:05,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:06,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:06,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:06,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:06,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 01:17:06,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 01:17:06,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:07,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:07,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:07,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:07,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:17:07,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:17:07,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:08,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:08,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:08,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:08,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:17:08,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:17:08,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:08,973 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:17:08,996 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:17:09,078 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.084 +2025-10-02 01:17:09,079 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 01:17:09,079 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:17:09,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:09,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:09,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:09,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:09,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:09,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:10,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:10,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:10,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:10,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:17:10,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:17:10,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:14,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:14,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:14,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:14,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 01:17:14,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 01:17:14,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:14,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:14,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:14,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:15,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:17:15,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:17:15,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:15,256 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:17:15,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:17:15,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:17:15,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:17:15,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:17:15,547 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:17:16,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:16,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:16,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:16,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:17:16,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:17:16,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:19,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:19,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:19,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:19,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:17:19,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:17:19,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:20,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:20,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:20,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:20,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 01:17:20,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 01:17:20,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:21,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:21,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:21,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:21,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:17:21,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:17:21,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:22,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:22,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:22,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:22,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:22,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:22,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:24,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:24,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:24,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:24,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:17:24,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:17:24,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:24,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:24,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:24,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:25,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:17:25,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:17:25,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:29,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:29,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:29,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:29,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:17:29,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:17:29,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:29,632 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:17:29,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:17:29,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:17:29,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-02 01:17:29,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-02 01:17:29,941 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:17:30,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:30,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:30,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:30,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:17:30,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:17:30,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:33,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:33,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:33,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:33,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:17:33,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:17:33,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:33,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:33,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:33,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:33,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:33,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:33,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:33,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:33,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:33,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:34,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:17:34,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:17:34,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:35,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:35,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:35,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:35,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:17:35,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:17:35,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:35,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:35,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:35,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:35,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:17:35,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:17:35,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:37,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:37,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:37,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:37,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:17:37,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:17:37,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:38,418 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:17:38,450 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:17:38,536 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.317 +2025-10-02 01:17:38,536 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 01:17:38,536 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:17:39,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:39,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:39,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:40,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:17:40,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:17:40,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:40,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:40,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:40,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:40,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:17:40,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:17:40,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:41,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:41,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:41,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:41,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:17:41,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:17:41,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:41,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:41,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:41,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:41,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:41,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:41,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:42,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:42,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:42,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:43,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:17:43,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:17:43,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:45,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:45,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:45,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:45,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:17:45,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:17:45,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:46,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:46,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:46,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:46,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:17:46,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:17:46,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:46,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:46,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:46,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:47,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:47,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:47,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:47,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:47,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:47,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:47,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:47,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:47,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:48,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:48,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:48,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:48,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:17:48,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:17:48,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:50,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:50,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:50,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:50,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:17:50,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:17:50,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:50,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:50,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:50,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:51,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:17:51,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:17:51,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:51,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:51,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:51,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:51,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:17:51,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:17:51,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:52,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:52,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:52,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:52,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:17:52,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:17:52,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:53,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:53,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:53,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:53,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:17:53,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:17:53,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:53,740 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:17:53,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:17:53,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:17:54,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 01:17:54,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-02 01:17:54,046 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:17:54,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:54,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:54,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:55,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:17:55,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:17:55,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:55,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:55,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:55,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:55,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:17:55,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:17:55,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:57,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:57,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:57,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:57,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:17:57,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:17:57,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:58,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:58,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:58,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:58,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:17:58,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:17:58,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:58,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:58,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:59,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:59,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:17:59,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:17:59,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:59,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:17:59,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:59,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:59,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:17:59,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:17:59,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:17:59,583 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:17:59,606 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:17:59,684 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.572 +2025-10-02 01:17:59,684 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 01:17:59,684 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:18:00,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:00,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:00,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:00,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:18:00,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:18:00,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:01,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:01,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:01,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:01,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:18:01,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:18:01,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:02,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:02,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:02,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:02,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:18:02,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:18:02,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:02,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:02,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:02,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:02,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:18:02,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:18:02,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:02,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:02,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:02,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:02,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:18:02,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:18:02,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:03,807 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:18:03,839 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:18:03,915 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.032 +2025-10-02 01:18:03,915 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 01:18:03,915 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 01:18:05,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:05,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:05,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:05,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:18:05,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:18:05,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:05,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:05,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:05,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:05,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:18:05,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:18:05,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:06,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:06,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:06,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:06,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:18:06,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:18:06,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:07,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:07,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:07,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:07,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:18:07,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:18:07,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:08,511 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:18:08,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:18:08,604 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.933 +2025-10-02 01:18:08,605 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-02 01:18:08,605 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 01:18:08,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:08,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:08,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:09,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:18:09,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:18:09,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:09,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:09,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:09,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:09,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:18:09,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:18:09,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:10,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:10,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:10,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:10,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:18:10,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:18:10,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:10,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:10,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:10,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:10,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:18:10,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:18:10,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:11,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:11,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:11,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:11,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:18:11,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:18:11,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:12,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:12,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:12,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:12,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:18:12,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:18:12,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:12,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:12,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:12,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:12,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:18:12,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:18:12,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:15,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:15,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:15,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:15,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:18:15,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:18:15,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:15,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:15,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:15,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:15,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:18:15,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:18:15,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:18,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:18,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:18,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:18,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:18:18,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:18:18,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:18,727 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:18:18,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:18:18,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:18:19,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-02 01:18:19,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-02 01:18:19,042 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:18:19,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:19,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:19,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:19,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:18:19,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:18:19,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:19,995 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:18:20,016 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:18:20,098 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.031 +2025-10-02 01:18:20,099 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 01:18:20,099 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:18:20,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:20,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:20,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:20,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:18:20,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:18:20,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:20,503 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:18:20,521 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:18:20,604 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.317 +2025-10-02 01:18:20,604 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 01:18:20,604 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:18:21,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:21,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:21,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:21,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:18:21,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:18:21,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:22,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:22,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:22,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:22,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:18:22,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:18:22,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:24,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:24,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:24,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:25,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:18:25,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:18:25,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:25,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:25,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:25,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:25,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:18:25,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:18:25,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:25,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:25,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:26,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:26,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:18:26,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:18:26,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:27,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:27,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:27,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:27,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:18:27,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:18:27,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:27,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:27,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:27,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:27,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:18:27,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:18:27,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:29,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:29,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:29,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:29,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:18:29,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:18:29,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:30,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:30,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:30,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:30,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:18:30,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:18:30,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:31,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:31,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:31,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:31,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:18:31,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:18:31,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:31,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:31,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:31,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:32,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:18:32,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:18:32,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:32,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:32,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:32,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:32,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:18:32,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:18:32,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:32,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:32,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:32,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:33,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:18:33,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:18:33,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:34,915 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:18:34,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:18:34,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:18:35,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-02 01:18:35,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.156s/image) +2025-10-02 01:18:35,228 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:18:35,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:35,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:35,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:35,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:18:35,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:18:35,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:35,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:35,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:35,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:36,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:18:36,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:18:36,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:37,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:37,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:37,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:37,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:18:37,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:18:37,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:37,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:37,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:37,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:37,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:18:37,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:18:37,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:38,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:38,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:38,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:38,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:18:38,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:18:38,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:39,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:39,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:39,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:39,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:18:39,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:18:39,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:40,002 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:18:40,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:18:40,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:18:40,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:18:40,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:18:40,293 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:18:40,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:40,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:40,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:41,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:18:41,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:18:41,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:41,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:41,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:41,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:41,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:18:41,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:18:41,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:42,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:42,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:42,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:42,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:18:42,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:18:42,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:43,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:43,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:43,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:43,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:18:43,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:18:43,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:44,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:44,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:44,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:44,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:18:44,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:18:44,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:44,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:44,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:44,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:45,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:18:45,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:18:45,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:45,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:45,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:45,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:45,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:18:45,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:18:45,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:45,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:45,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:45,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:45,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:18:45,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:18:45,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:47,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:47,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:47,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:47,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:18:47,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:18:47,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:48,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:48,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:48,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:48,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:18:48,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:18:48,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:50,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:50,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:50,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:50,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:18:50,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:18:50,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:51,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:51,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:51,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:51,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:18:51,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:18:51,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:51,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:51,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:51,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:51,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:18:51,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:18:51,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:51,865 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:18:51,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:18:51,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:18:52,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-02 01:18:52,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-02 01:18:52,175 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:18:54,875 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:18:54,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:18:54,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:18:55,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +2025-10-02 01:18:55,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.158s/image) +2025-10-02 01:18:55,193 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:18:58,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:58,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:58,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:58,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:18:58,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:18:58,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:18:59,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:18:59,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:59,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:59,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:18:59,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:18:59,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:00,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:00,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:00,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:00,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:19:00,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:19:00,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:01,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:01,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:01,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:01,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:19:01,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:19:01,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:01,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:01,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:01,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:01,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:19:01,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:19:01,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:02,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:02,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:02,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:02,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:19:02,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:19:02,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:04,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:04,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:04,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:04,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 01:19:04,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 01:19:04,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:05,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:05,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:05,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:05,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 01:19:05,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 01:19:05,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:05,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:05,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:05,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:05,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:19:05,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:19:05,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:05,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:05,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:06,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:06,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:19:06,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:19:06,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:06,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:06,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:06,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:07,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:19:07,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:19:07,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:07,977 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:19:08,002 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:19:08,093 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.781 +2025-10-02 01:19:08,094 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 01:19:08,094 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 01:19:08,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:08,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:08,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:08,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:19:08,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:19:08,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:08,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:08,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:08,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:08,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:19:08,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:19:08,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:09,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:09,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:09,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:09,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:19:09,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:19:09,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:10,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:10,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:10,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:10,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:19:10,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:19:10,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:10,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:10,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:10,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:10,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:19:10,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:19:10,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:12,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:12,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:12,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:12,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:19:12,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:19:12,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:12,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:12,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:12,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:12,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:19:12,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:19:12,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:13,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:13,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:13,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:13,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:19:13,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:19:13,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:14,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:14,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:14,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:14,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:19:14,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:19:14,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:14,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:14,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:14,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:14,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:19:14,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:19:14,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:15,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:15,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:15,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:15,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:19:15,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:19:15,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:16,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:16,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:16,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:17,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:19:17,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:19:17,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:17,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:17,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:17,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:17,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:19:17,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:19:17,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:18,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:18,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:18,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:18,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:19:18,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:19:18,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:19,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:19,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:19,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:19,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:19:19,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:19:19,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:22,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:22,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:22,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:22,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:19:22,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:19:22,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:22,395 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:19:22,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:19:22,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:19:22,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:19:22,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 01:19:22,688 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:19:24,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:24,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:24,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:24,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:19:24,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:19:24,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:25,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:25,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:25,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:26,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:19:26,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:19:26,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:26,702 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:19:26,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:19:26,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:19:27,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-02 01:19:27,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-02 01:19:27,011 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:19:27,969 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:19:27,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:19:28,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:19:28,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 01:19:28,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 01:19:28,259 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:19:29,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:29,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:29,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:29,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:19:29,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:19:29,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:30,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:30,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:30,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:30,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:19:30,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:19:30,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:32,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:32,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:32,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:32,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:19:32,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:19:32,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:33,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:33,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:33,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:33,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:19:33,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:19:33,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:33,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:33,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:34,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:34,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:19:34,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:19:34,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:34,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:34,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:34,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:35,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:19:35,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:19:35,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:37,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:37,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:37,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:37,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:19:37,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:19:37,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:39,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:39,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:39,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:39,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:19:39,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:19:39,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:40,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:40,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:40,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:40,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:19:40,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:19:40,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:41,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:41,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:41,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:41,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:19:41,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:19:41,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:41,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:41,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:41,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:41,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:19:41,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:19:41,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:43,297 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:19:43,321 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:19:43,414 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.141 +2025-10-02 01:19:43,414 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 01:19:43,416 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 01:19:43,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:43,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:43,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:43,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:19:43,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:19:43,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:45,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:45,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:45,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:45,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:19:45,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:19:45,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:47,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:47,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:47,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:47,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:19:47,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:19:47,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:49,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:49,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:49,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:49,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:19:49,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:19:49,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:54,283 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:19:54,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:19:54,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:19:54,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:19:54,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 01:19:54,568 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:19:55,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:55,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:55,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:55,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:19:55,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:19:55,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:56,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:56,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:56,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:56,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:19:56,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:19:56,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:19:57,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:19:57,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:57,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:57,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:19:57,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:19:57,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:03,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:03,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:03,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:03,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:20:03,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:20:03,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:03,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:03,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:03,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:03,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:20:03,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:20:03,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:05,378 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:20:05,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:20:05,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:20:05,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:20:05,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 01:20:05,662 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:20:06,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:06,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:06,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:06,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:20:06,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:20:06,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:07,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:07,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:07,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:07,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:20:07,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:20:07,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:11,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:11,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:11,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:11,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:20:11,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:20:11,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:13,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:13,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:13,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:13,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:20:13,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:20:13,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:14,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:14,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:14,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:14,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:20:14,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:20:14,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:19,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:19,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:19,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:19,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:20:19,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:20:19,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:20,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:20,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:20,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:21,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:20:21,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:20:21,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:24,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:24,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:24,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:24,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:20:24,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:20:24,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:25,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:25,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:25,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:25,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:20:25,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:20:25,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:27,795 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:20:27,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:20:27,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:20:28,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:20:28,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 01:20:28,088 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:20:28,479 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:20:28,504 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:20:28,589 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.437 +2025-10-02 01:20:28,589 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 01:20:28,589 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:20:29,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:29,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:29,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:29,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:20:29,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:20:29,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:29,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:29,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:29,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:30,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:20:30,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:20:30,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:32,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:32,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:32,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:32,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:20:32,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:20:32,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:32,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:32,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:32,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:32,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:20:32,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:20:32,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:33,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:33,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:33,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:34,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:20:34,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:20:34,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:34,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:34,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:34,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:34,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:20:34,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:20:34,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:34,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:34,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:34,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:35,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:20:35,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:20:35,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:35,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:35,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:35,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:36,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:20:36,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:20:36,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:39,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:39,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:39,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:39,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:20:39,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:20:39,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:40,104 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:20:40,130 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:20:40,201 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.417 +2025-10-02 01:20:40,201 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-02 01:20:40,201 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-02 01:20:40,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:40,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:41,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:41,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:20:41,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:20:41,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:42,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:42,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:42,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:42,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:20:42,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:20:42,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:43,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:43,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:43,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:43,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:20:43,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:20:43,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:46,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:46,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:46,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:46,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:20:46,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:20:46,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:47,443 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:20:47,474 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:20:47,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.371 +2025-10-02 01:20:47,549 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 01:20:47,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 01:20:48,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:48,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:48,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:48,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:20:48,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:20:48,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:52,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:52,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:52,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:52,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:20:52,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:20:52,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:55,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:55,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:55,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:56,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:20:56,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:20:56,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:20:56,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:20:56,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:56,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:56,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:20:56,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:20:56,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:00,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:00,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:00,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:00,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:21:00,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:21:00,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:00,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:00,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:00,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:00,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:21:00,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:21:00,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:01,589 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:21:01,615 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:21:01,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.275 +2025-10-02 01:21:01,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 01:21:01,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 01:21:04,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:04,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:04,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:04,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:21:04,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:21:04,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:04,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:04,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:04,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:05,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:21:05,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:21:05,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:05,888 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:21:05,921 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:21:06,002 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.280 +2025-10-02 01:21:06,003 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 01:21:06,003 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:21:07,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:07,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:07,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:07,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:21:07,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:21:07,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:08,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:08,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:08,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:08,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:21:08,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:21:08,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:08,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:08,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:08,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:08,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:21:08,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:21:08,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:09,485 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:21:09,516 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:21:09,601 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.765 +2025-10-02 01:21:09,601 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 01:21:09,601 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:21:10,139 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:21:10,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:21:10,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:21:10,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-02 01:21:10,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-02 01:21:10,449 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:21:11,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:11,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:11,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:11,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:21:11,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:21:11,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:14,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:14,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:14,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:14,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:21:14,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:21:14,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:18,558 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:21:18,589 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:21:18,665 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.289 +2025-10-02 01:21:18,665 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 01:21:18,666 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 01:21:19,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:19,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:19,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:19,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:21:19,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:21:19,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:19,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:19,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:19,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:19,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:21:19,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:21:19,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:19,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:19,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:19,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:20,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:21:20,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:21:20,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:24,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:24,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:24,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:24,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:21:24,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:21:24,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:30,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:30,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:30,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:30,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:21:30,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:21:30,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:34,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:34,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:34,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:34,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:21:34,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:21:34,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:36,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:36,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:36,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:36,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:21:36,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:21:36,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:36,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:36,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:36,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:36,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:21:36,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:21:36,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:41,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:41,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:41,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:41,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:21:41,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:21:41,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:41,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:41,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:41,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:41,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:21:41,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:21:41,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:46,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:46,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:46,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:46,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:21:46,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:21:46,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:46,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:46,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:46,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:46,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:21:46,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:21:46,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:47,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:47,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:47,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:47,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:21:47,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:21:47,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:48,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:48,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:48,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:48,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:21:48,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:21:48,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:49,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:49,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:49,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:49,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:21:49,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:21:49,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:52,666 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:21:52,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:21:52,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:21:53,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.335s +2025-10-02 01:21:53,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.335s (avg: 0.167s/image) +2025-10-02 01:21:53,002 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:21:53,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:53,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:53,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:53,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:21:53,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:21:53,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:54,107 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:21:54,130 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:21:54,210 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.362 +2025-10-02 01:21:54,210 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 01:21:54,210 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 01:21:57,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:57,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:57,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:57,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:21:57,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:21:57,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:21:58,928 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:21:58,944 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:21:59,021 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.872 +2025-10-02 01:21:59,022 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 01:21:59,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:21:59,150 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:21:59,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:21:59,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:21:59,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 01:21:59,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 01:21:59,431 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:21:59,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:21:59,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:59,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:00,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:22:00,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:22:00,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:04,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:04,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:04,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:04,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:22:04,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:22:04,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:04,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:04,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:04,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:04,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:22:04,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:22:04,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:05,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:05,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:05,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:05,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:22:05,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:22:05,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:06,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:06,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:06,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:06,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:22:06,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:22:06,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:06,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:06,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:06,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:07,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:22:07,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:22:07,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:08,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:08,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:08,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:08,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:22:08,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:22:08,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:11,636 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:22:11,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:22:11,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:22:11,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:22:11,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:22:11,919 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:22:12,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:12,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:12,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:12,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:22:12,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:22:12,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:14,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:14,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:14,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:14,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:22:14,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:22:14,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:16,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:16,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:16,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:16,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:22:16,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:22:16,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:19,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:19,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:20,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:20,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:22:20,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:22:20,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:20,328 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:22:20,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:22:20,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:22:20,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 01:22:20,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 01:22:20,621 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:22:22,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:22,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:22,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:22,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:22:22,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:22:22,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:26,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:26,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:26,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:26,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:22:26,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:22:26,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:26,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:26,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:26,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:26,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:22:26,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:22:26,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:26,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:26,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:26,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:27,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:22:27,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:22:27,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:30,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:30,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:30,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:30,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:22:30,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:22:30,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:31,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:31,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:31,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:31,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:22:31,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:22:31,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:33,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:33,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:33,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:34,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:22:34,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:22:34,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:36,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:36,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:36,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:36,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:22:36,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:22:36,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:38,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:38,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:38,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:38,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:22:38,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:22:38,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:39,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:39,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:39,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:39,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:22:39,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:22:39,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:40,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:40,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:40,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:40,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:22:40,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:22:40,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:42,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:42,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:42,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:42,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:22:42,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:22:42,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:43,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:43,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:43,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:44,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:22:44,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:22:44,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:44,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:44,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:44,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:45,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:22:45,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:22:45,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:47,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:47,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:47,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:47,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:22:47,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:22:47,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:50,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:50,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:50,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:50,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:22:50,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:22:50,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:51,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:51,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:51,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:51,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:22:51,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:22:51,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:53,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:53,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:53,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:53,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:22:53,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:22:53,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:55,013 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:22:55,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:22:55,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:22:55,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-02 01:22:55,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-02 01:22:55,320 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:22:56,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:56,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:56,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:56,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:22:56,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:22:56,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:22:59,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:22:59,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:59,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:59,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:22:59,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:22:59,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:00,087 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:23:00,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:23:00,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:23:00,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 01:23:00,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 01:23:00,372 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:23:04,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:04,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:04,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:05,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:23:05,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:23:05,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:06,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:06,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:06,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:06,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:23:06,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:23:06,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:06,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:06,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:06,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:06,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:23:06,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:23:06,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:08,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:08,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:08,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:08,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:23:08,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:23:08,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:09,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:09,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:09,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:09,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:23:09,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:23:09,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:10,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:10,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:10,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:10,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:23:10,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:23:10,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:12,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:12,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:12,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:12,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:23:12,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:23:12,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:15,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:15,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:15,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:15,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:23:15,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:23:15,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:15,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:15,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:15,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:15,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:23:15,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:23:15,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:15,651 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:23:15,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:23:15,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:23:15,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-02 01:23:15,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-02 01:23:15,927 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:23:18,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:18,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:18,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:18,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:23:18,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:23:18,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:19,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:19,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:19,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:19,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:23:19,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:23:19,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:20,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:20,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:20,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:20,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:23:20,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:23:20,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:21,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:21,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:21,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:21,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:23:21,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:23:21,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:21,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:23:21,548 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:23:21,627 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.542 +2025-10-02 01:23:21,627 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 01:23:21,628 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:23:21,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:21,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:21,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:22,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:23:22,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:23:22,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:23,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:23,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:23,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:23,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:23:23,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:23:23,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:24,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:24,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:24,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:24,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:23:24,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:23:24,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:25,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:25,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:25,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:25,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:23:25,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:23:25,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:26,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:26,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:26,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:27,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:23:27,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:23:27,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:30,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:30,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:30,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:30,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:23:30,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:23:30,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:30,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:30,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:30,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:31,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:23:31,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:23:31,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:31,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:31,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:31,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:31,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:23:31,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:23:31,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:31,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:31,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:32,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:32,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:23:32,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:23:32,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:33,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:33,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:33,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:33,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:23:33,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:23:33,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:35,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:35,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:35,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:35,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:23:35,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:23:35,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:36,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:36,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:36,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:36,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:23:36,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:23:36,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:36,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:36,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:36,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:36,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:23:36,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:23:36,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:38,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:38,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:38,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:38,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:23:38,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:23:38,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:39,076 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:23:39,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:23:39,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:23:39,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 01:23:39,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 01:23:39,373 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:23:40,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:40,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:40,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:40,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:23:40,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:23:40,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:41,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:41,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:41,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:41,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:23:41,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:23:41,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:42,410 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:23:42,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:23:42,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:23:42,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 01:23:42,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 01:23:42,704 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:23:43,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:43,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:43,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:43,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:23:43,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:23:43,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:44,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:44,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:44,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:44,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:23:44,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:23:44,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:46,358 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:23:46,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:23:46,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:23:46,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 01:23:46,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 01:23:46,653 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:23:47,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:47,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:47,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:47,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:23:47,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:23:47,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:48,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:48,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:48,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:48,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:23:48,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:23:48,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:49,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:49,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:49,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:49,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:23:49,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:23:49,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:50,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:50,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:50,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:50,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:23:50,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:23:50,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:52,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:52,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:52,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:52,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:23:52,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:23:52,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:52,799 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:23:52,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:23:52,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:23:53,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:23:53,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 01:23:53,091 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:23:53,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:53,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:53,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:53,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:23:53,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:23:53,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:23:57,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:23:57,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:57,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:57,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:23:57,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:23:57,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:02,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:02,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:02,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:02,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:24:02,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:24:02,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:06,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:06,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:07,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:07,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:24:07,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:24:07,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:07,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:07,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:07,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:07,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:24:07,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:24:07,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:12,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:12,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:12,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:12,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:24:12,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:24:12,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:13,093 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:24:13,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:24:13,194 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.868 +2025-10-02 01:24:13,194 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 01:24:13,194 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 01:24:13,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:13,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:13,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:13,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:24:13,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:24:13,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:15,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:15,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:15,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:15,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:24:15,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:24:15,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:16,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:16,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:16,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:17,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:24:17,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:24:17,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:18,125 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:24:18,155 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:24:18,226 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.924 +2025-10-02 01:24:18,227 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-02 01:24:18,227 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 01:24:18,728 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:24:18,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:24:18,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:24:19,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 01:24:19,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 01:24:19,014 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:24:21,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:21,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:21,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:21,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:24:21,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:24:21,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:21,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:21,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:21,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:21,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:24:21,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:24:21,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:23,033 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:24:23,062 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:24:23,144 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.345 +2025-10-02 01:24:23,144 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 01:24:23,144 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:24:24,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:24,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:24,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:25,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:24:25,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:24:25,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:25,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:25,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:25,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:25,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:24:25,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:24:25,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:25,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:25,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:25,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:25,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:24:25,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:24:25,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:26,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:26,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:26,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:26,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:24:26,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:24:26,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:27,443 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:24:27,474 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:24:27,545 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.839 +2025-10-02 01:24:27,546 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-02 01:24:27,546 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 01:24:28,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:28,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:28,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:28,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:24:28,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:24:28,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:29,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:29,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:29,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:29,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:24:29,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:24:29,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:29,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:29,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:29,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:29,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:24:29,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:24:29,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:31,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:31,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:31,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:31,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:24:31,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:24:31,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:31,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:31,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:31,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:31,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 01:24:31,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 01:24:31,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:31,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:31,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:31,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:31,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:24:31,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:24:31,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:33,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:33,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:33,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:33,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:24:33,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:24:33,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:34,730 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:24:34,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:24:34,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:24:35,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-02 01:24:35,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.156s/image) +2025-10-02 01:24:35,043 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:24:35,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:35,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:35,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:35,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:24:35,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:24:35,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:36,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:36,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:36,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:36,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:24:36,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:24:36,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:37,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:37,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:37,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:37,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:24:37,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:24:37,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:39,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:39,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:39,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:39,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:24:39,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:24:39,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:40,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:40,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:40,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:40,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:24:40,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:24:40,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:41,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:41,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:41,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:41,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:24:41,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:24:41,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:43,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:43,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:43,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:43,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:24:43,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:24:43,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:43,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:43,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:43,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:43,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:24:43,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:24:43,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:44,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:44,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:44,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:44,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:24:44,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:24:44,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:44,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:44,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:44,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:44,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:24:44,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:24:44,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:45,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:45,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:45,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:45,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:24:45,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:24:45,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:47,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:47,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:47,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:47,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:24:47,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:24:47,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:48,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:48,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:48,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:48,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:24:48,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:24:48,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:50,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:50,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:50,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:50,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:24:50,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:24:50,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:50,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:50,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:50,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:50,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:24:50,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:24:50,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:50,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:50,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:50,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:50,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:24:50,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:24:50,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:51,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:51,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:51,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:51,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:24:51,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:24:51,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:52,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:52,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:52,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:52,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:24:52,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:24:52,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:52,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:52,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:52,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:52,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:24:52,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:24:52,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:54,397 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:24:54,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:24:54,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:24:54,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 01:24:54,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-02 01:24:54,692 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:24:57,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:57,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:57,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:57,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:24:57,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:24:57,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:57,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:57,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:57,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:57,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:24:57,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:24:57,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:58,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:58,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:58,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:58,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:24:58,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:24:58,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:24:59,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:24:59,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:59,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:59,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:24:59,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:24:59,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:02,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:02,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:02,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:02,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:25:02,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:25:02,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:03,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:03,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:03,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:03,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:25:03,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:25:03,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:07,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:07,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:07,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:08,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:25:08,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:25:08,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:08,320 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:25:08,338 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:25:08,424 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=1.518 +2025-10-02 01:25:08,424 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 01:25:08,424 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:25:08,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:08,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:08,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:08,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:25:08,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:25:08,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:09,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:09,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:09,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:09,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:25:09,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:25:09,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:14,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:14,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:15,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:15,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:25:15,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:25:15,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:15,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:15,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:15,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:15,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:25:15,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:25:15,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:17,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:17,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:17,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:17,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:25:17,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:25:17,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:17,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:17,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:17,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:17,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:25:17,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:25:17,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:19,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:19,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:19,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:19,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:25:19,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:25:19,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:19,334 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:25:19,351 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:25:19,435 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.188 +2025-10-02 01:25:19,435 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 01:25:19,437 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:25:22,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:22,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:22,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:22,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:25:22,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:25:22,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:23,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:23,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:23,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:23,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:25:23,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:25:23,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:24,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:24,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:24,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:24,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:25:24,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:25:24,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:25,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:25,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:25,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:25,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:25:25,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:25:25,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:27,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:27,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:27,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:27,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:25:27,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:25:27,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:28,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:28,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:28,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:29,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:25:29,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:25:29,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:29,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:29,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:29,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:30,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:25:30,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:25:30,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:31,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:31,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:31,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:31,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:25:31,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:25:31,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:32,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:32,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:32,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:33,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:25:33,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:25:33,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:33,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:33,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:33,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:33,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:25:33,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:25:33,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:35,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:35,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:35,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:36,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:25:36,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:25:36,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:37,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:37,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:37,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:37,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:25:37,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:25:37,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:37,942 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:25:37,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:25:37,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:25:38,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 01:25:38,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 01:25:38,222 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:25:40,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:40,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:40,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:40,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:25:40,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:25:40,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:41,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:41,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:41,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:41,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:25:41,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:25:41,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:42,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:42,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:42,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:42,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:25:42,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:25:42,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:42,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:42,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:42,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:42,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:25:42,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:25:42,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:43,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:43,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:43,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:43,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:25:43,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:25:43,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:44,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:44,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:44,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:44,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:25:44,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:25:44,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:45,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:45,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:45,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:45,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:25:45,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:25:45,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:46,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:46,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:46,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:46,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:25:46,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:25:46,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:47,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:47,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:47,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:48,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:25:48,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:25:48,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:49,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:49,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:49,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:49,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:25:49,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:25:49,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:49,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:49,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:49,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:50,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:25:50,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:25:50,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:50,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:50,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:50,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:50,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:25:50,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:25:50,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:51,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:51,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:52,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:52,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:25:52,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:25:52,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:52,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:52,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:52,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:52,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:25:52,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:25:52,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:53,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:53,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:53,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:53,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:25:53,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:25:53,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:53,926 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:25:53,946 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:25:54,056 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.958 +2025-10-02 01:25:54,056 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-02 01:25:54,058 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-02 01:25:54,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:54,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:54,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:55,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:25:55,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:25:55,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:25:55,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:25:55,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:55,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:55,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:25:55,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:25:55,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:00,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:00,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:00,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:01,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:26:01,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:26:01,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:01,242 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:26:01,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:26:01,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:26:01,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:26:01,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:26:01,526 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:26:01,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:01,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:01,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:01,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:26:01,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:26:01,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:02,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:02,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:02,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:02,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:26:02,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:26:02,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:03,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:03,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:03,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:03,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:26:03,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:26:03,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:06,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:06,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:06,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:06,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-02 01:26:06,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-02 01:26:06,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:07,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:07,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:07,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:07,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:26:07,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:26:07,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:10,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:10,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:10,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:10,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:26:10,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:26:10,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:10,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:10,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:10,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:10,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:26:10,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:26:10,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:11,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:11,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:11,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:11,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:26:11,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:26:11,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:11,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:11,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:11,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:11,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:26:11,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:26:11,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:12,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:12,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:12,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:12,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:26:12,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:26:12,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:13,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:13,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:13,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:13,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:26:13,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:26:13,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:14,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:14,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:14,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:14,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:26:14,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:26:14,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:18,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:18,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:18,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:18,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 01:26:18,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 01:26:18,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:18,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:18,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:18,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:18,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:26:18,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:26:18,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:18,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:18,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:18,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:19,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:26:19,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:26:19,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:19,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:19,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:19,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:19,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:26:19,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:26:19,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:20,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:20,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:20,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:20,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:26:20,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:26:20,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:20,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:20,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:20,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:20,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:26:20,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:26:20,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:23,140 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:26:23,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:26:23,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:26:23,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:26:23,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 01:26:23,432 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:26:23,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:23,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:23,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:23,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:26:23,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:26:23,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:25,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:25,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:25,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:25,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:26:25,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:26:25,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:26,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:26,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:26,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:26,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:26:26,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:26:26,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:27,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:27,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:27,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:28,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:26:28,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:26:28,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:28,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:28,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:28,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:28,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:26:28,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:26:28,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:32,698 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:26:32,723 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:26:32,812 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.188 +2025-10-02 01:26:32,813 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 01:26:32,815 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 01:26:33,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:33,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:33,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:33,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:26:33,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:26:33,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:33,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:33,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:33,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:33,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:26:33,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:26:33,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:34,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:34,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:34,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:34,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:26:34,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:26:34,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:34,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:34,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:34,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:35,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:26:35,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:26:35,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:38,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:38,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:38,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:38,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 01:26:38,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 01:26:38,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:38,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:38,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:38,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:38,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:26:38,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:26:38,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:39,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:39,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:39,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:39,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:26:39,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:26:39,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:43,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:43,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:43,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:43,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:26:43,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:26:43,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:43,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:43,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:43,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:43,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:26:43,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:26:43,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:44,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:44,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:44,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:44,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:26:44,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:26:44,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:47,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:47,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:47,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:47,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:26:47,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:26:47,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:51,964 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:26:51,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:26:52,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:26:52,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:26:52,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:26:52,255 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:26:52,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:52,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:52,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:52,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:26:52,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:26:52,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:53,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:53,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:53,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:53,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:26:53,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:26:53,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:26:56,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:26:56,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:56,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:56,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:26:56,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:26:56,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:02,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:02,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:02,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:02,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:27:02,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:27:02,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:05,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:05,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:05,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:05,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:27:05,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:27:05,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:06,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:06,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:06,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:06,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:27:06,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:27:06,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:07,020 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:27:07,039 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:27:07,117 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.014 +2025-10-02 01:27:07,117 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 01:27:07,117 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:27:09,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:09,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:09,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:09,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:27:09,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:27:09,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:10,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:10,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:10,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:10,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:27:10,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:27:10,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:13,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:13,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:13,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:14,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:27:14,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:27:14,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:14,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:14,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:14,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:15,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:27:15,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:27:15,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:18,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:18,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:18,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:18,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:27:18,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:27:18,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:19,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:19,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:19,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:19,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 01:27:19,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 01:27:19,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:21,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:21,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:21,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:21,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:27:21,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:27:21,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:25,314 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:27:25,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:27:25,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:27:25,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 01:27:25,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-02 01:27:25,613 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:27:25,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:25,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:25,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:25,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:27:25,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:27:25,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:28,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:28,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:28,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:28,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:27:28,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:27:28,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:29,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:29,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:30,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:30,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:27:30,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:27:30,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:30,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:30,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:30,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:30,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:27:30,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:27:30,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:34,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:34,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:34,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:34,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:27:34,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:27:34,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:39,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:39,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:39,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:39,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:27:39,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:27:39,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:39,905 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:27:39,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:27:39,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:27:40,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-02 01:27:40,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-02 01:27:40,177 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:27:42,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:42,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:42,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:42,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:27:42,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:27:42,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:42,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:42,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:42,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:43,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:27:43,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:27:43,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:44,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:44,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:44,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:44,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:27:44,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:27:44,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:45,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:45,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:45,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:45,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:27:45,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:27:45,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:46,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:46,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:46,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:46,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:27:46,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:27:46,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:49,626 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:27:49,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:27:49,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:27:49,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 01:27:49,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 01:27:49,916 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:27:53,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:53,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:53,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:53,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:27:53,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:27:53,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:54,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:54,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:54,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:54,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:27:54,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:27:54,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:56,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:56,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:56,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:56,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:27:56,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:27:56,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:59,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:59,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:59,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:59,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:27:59,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:27:59,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:27:59,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:27:59,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:59,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:00,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:28:00,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:28:00,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:02,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:02,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:02,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:02,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:28:02,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:28:02,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:04,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:04,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:05,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:05,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:28:05,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:28:05,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:07,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:07,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:07,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:07,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 01:28:07,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 01:28:07,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:08,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:08,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:08,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:08,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:28:08,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:28:08,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:10,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:10,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:10,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:10,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:28:10,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:28:10,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:13,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:13,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:13,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:13,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:28:13,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:28:13,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:14,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:14,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:14,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:14,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:28:14,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:28:14,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:14,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:14,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:14,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:15,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:28:15,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:28:15,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:18,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:18,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:18,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:18,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:28:18,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:28:18,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:18,448 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:28:18,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:28:18,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:28:18,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 01:28:18,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-02 01:28:18,716 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:28:19,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:19,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:19,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:19,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:28:19,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:28:19,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:20,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:20,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:20,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:21,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:28:21,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:28:21,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:21,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:21,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:21,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:21,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:28:21,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:28:21,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:22,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:22,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:22,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:22,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:28:22,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:28:22,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:23,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:23,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:24,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:24,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:28:24,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:28:24,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:25,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:25,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:25,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:25,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:28:25,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:28:25,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:28,198 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:28:28,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:28:28,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:28:28,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 01:28:28,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +2025-10-02 01:28:28,515 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:28:28,691 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:28:28,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:28:28,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:28:28,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 01:28:28,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-02 01:28:28,961 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:28:31,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:31,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:31,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:31,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:28:31,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:28:31,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:32,512 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:28:32,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:28:32,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:28:32,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 01:28:32,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-02 01:28:32,810 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:28:35,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:35,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:35,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:35,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:28:35,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:28:35,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:36,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:36,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:36,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:37,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:28:37,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:28:37,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:38,848 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:28:38,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:28:38,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:28:39,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 01:28:39,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 01:28:39,147 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:28:39,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:39,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:39,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:39,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:28:39,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:28:39,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:42,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:42,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:42,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:43,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:28:43,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:28:43,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:43,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:43,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:43,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:44,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:28:44,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:28:44,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:44,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:44,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:44,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:44,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:28:44,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:28:44,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:45,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:45,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:45,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:45,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:28:45,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:28:45,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:47,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:47,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:47,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:47,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:28:47,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:28:47,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:50,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:50,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:50,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:50,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:28:50,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:28:50,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:50,472 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:28:50,492 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:28:50,577 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.876 +2025-10-02 01:28:50,577 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 01:28:50,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:28:51,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:51,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:51,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:51,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:28:51,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:28:51,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:52,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:52,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:52,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:52,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:28:52,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:28:52,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:54,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:54,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:54,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:54,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:28:54,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:28:54,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:56,264 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:28:56,313 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:28:56,399 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.809 +2025-10-02 01:28:56,400 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 01:28:56,402 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 01:28:57,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:57,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:57,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:57,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:28:57,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:28:57,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:28:58,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:28:58,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:58,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:58,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:28:58,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:28:58,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:00,194 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:29:00,219 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:29:00,307 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.029 +2025-10-02 01:29:00,307 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 01:29:00,308 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 01:29:00,878 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:29:00,909 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:29:01,002 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.879 +2025-10-02 01:29:01,002 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 01:29:01,003 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 01:29:02,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:02,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:02,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:02,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:29:02,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:29:02,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:03,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:03,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:03,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:03,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:29:03,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:29:03,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:05,162 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:29:05,184 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:29:05,276 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.945 +2025-10-02 01:29:05,276 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 01:29:05,277 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 01:29:05,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:05,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:05,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:06,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:29:06,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:29:06,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:12,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:12,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:12,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:12,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:29:12,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:29:12,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:14,098 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:29:14,122 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:29:14,209 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=207.995 +2025-10-02 01:29:14,209 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 01:29:14,209 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:29:17,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:17,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:17,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:17,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:29:17,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:29:17,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:22,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:22,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:22,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:22,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:29:22,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:29:22,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:23,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:23,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:23,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:23,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:29:23,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:29:23,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:27,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:27,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:27,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:27,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:29:27,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:29:27,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:28,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:28,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:28,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:28,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:29:28,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:29:28,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:29,955 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:29:29,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:29:30,051 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.837 +2025-10-02 01:29:30,051 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 01:29:30,051 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 01:29:37,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:37,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:37,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:37,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:29:37,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:29:37,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:39,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:39,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:39,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:39,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:29:39,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:29:39,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:40,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:40,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:40,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:40,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:29:40,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:29:40,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:40,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:40,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:40,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:41,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:29:41,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:29:41,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:41,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:41,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:41,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:41,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:29:41,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:29:41,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:45,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:45,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:45,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:45,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:29:45,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:29:45,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:46,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:46,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:46,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:46,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:29:46,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:29:46,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:46,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:46,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:46,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:46,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:29:46,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:29:46,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:49,758 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:29:49,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:29:49,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:29:50,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s +2025-10-02 01:29:50,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.157s/image) +2025-10-02 01:29:50,073 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:29:51,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:51,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:51,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:51,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:29:51,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:29:51,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:51,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:51,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:51,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:51,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:29:51,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:29:51,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:51,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:51,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:51,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:51,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:29:51,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:29:51,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:53,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:53,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:53,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:53,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:29:53,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:29:53,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:55,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:55,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:55,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:55,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:29:55,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:29:55,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:57,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:57,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:57,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:57,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:29:57,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:29:57,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:58,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:29:58,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:58,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:58,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:29:58,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:29:58,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:29:59,865 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:29:59,890 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:29:59,975 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.139 +2025-10-02 01:29:59,975 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 01:29:59,976 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:30:00,387 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:30:00,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:30:00,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:30:00,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 01:30:00,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-02 01:30:00,681 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:30:02,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:02,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:02,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:02,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:30:02,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:30:02,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:04,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:04,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:04,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:04,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:30:04,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:30:04,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:05,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:05,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:05,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:05,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:30:05,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:30:05,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:06,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:06,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:06,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:06,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:30:06,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:30:06,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:06,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:06,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:06,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:06,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:30:06,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:30:06,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:07,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:07,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:07,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:07,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:30:07,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:30:07,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:09,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:09,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:09,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:09,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:30:09,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:30:09,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:09,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:09,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:09,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:09,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:30:09,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:30:09,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:10,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:10,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:10,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:10,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:30:10,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:30:10,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:10,952 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:30:10,974 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:30:11,052 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.026 +2025-10-02 01:30:11,053 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 01:30:11,053 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:30:11,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:11,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:11,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:11,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:30:11,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:30:11,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:14,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:14,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:14,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:14,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:30:14,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:30:14,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:16,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:16,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:16,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:16,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:30:16,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:30:16,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:16,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:16,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:16,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:17,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:30:17,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:30:17,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:17,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:17,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:17,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:17,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:30:17,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:30:17,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:18,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:18,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:18,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:18,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:30:18,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:30:18,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:19,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:19,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:19,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:19,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:30:19,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:30:19,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:19,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:19,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:19,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:19,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:30:19,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:30:19,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:21,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:21,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:21,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:21,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:30:21,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:30:21,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:21,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:21,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:21,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:21,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:30:21,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:30:21,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:24,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:24,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:24,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:24,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:30:24,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:30:24,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:24,830 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:30:24,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:30:24,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:30:25,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-02 01:30:25,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.128s/image) +2025-10-02 01:30:25,087 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:30:25,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:25,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:25,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:25,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:30:25,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:30:25,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:27,516 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:30:27,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:30:27,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:30:27,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 01:30:27,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-02 01:30:27,823 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:30:30,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:30,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:30,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:30,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:30:30,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:30:30,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:31,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:31,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:31,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:31,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:30:31,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:30:31,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:31,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:31,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:31,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:31,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:30:31,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:30:31,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:33,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:33,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:33,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:33,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:30:33,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:30:33,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:34,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:34,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:34,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:34,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:30:34,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:30:34,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:35,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:35,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:35,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:36,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:30:36,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:30:36,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:36,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:36,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:36,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:36,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:30:36,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:30:36,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:37,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:37,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:37,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:37,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:30:37,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:30:37,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:37,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:37,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:37,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:37,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:30:37,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:30:37,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:42,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:42,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:42,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:42,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:30:42,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:30:42,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:44,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:44,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:44,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:44,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:30:44,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:30:44,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:45,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:45,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:45,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:45,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:30:45,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:30:45,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:45,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:45,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:45,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:45,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:30:45,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:30:45,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:47,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:47,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:47,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:47,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:30:47,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:30:47,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:47,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:47,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:47,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:47,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:30:47,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:30:47,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:48,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:48,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:48,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:48,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:30:48,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:30:48,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:51,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:51,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:51,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:51,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:30:51,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:30:51,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:51,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:51,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:51,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:51,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:30:51,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:30:51,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:51,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:51,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:52,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:52,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:30:52,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:30:52,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:53,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:53,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:53,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:53,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:30:53,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:30:53,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:54,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:54,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:54,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:54,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:30:54,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:30:54,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:57,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:57,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:57,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:57,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:30:57,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:30:57,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:30:58,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:30:58,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:58,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:59,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:30:59,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:30:59,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:01,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:01,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:01,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:02,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:31:02,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:31:02,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:03,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:03,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:03,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:03,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:31:03,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:31:03,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:04,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:04,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:04,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:04,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:31:04,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:31:04,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:05,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:05,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:05,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:05,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:31:05,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:31:05,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:08,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:08,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:08,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:09,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:31:09,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:31:09,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:12,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:12,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:12,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:12,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:31:12,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:31:12,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:12,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:12,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:12,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:13,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:31:13,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:31:13,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:17,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:17,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:17,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:17,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:31:17,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:31:17,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:19,160 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:31:19,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:31:19,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:31:19,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 01:31:19,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 01:31:19,447 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:31:20,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:20,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:20,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:20,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:31:20,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:31:20,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:25,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:25,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:25,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:25,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:31:25,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:31:25,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:27,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:27,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:27,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:28,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:31:28,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:31:28,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:29,798 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:31:29,826 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:31:29,917 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.163 +2025-10-02 01:31:29,917 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 01:31:29,919 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 01:31:30,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:30,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:30,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:30,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:31:30,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:31:30,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:32,656 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:31:32,696 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:31:32,786 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.848 +2025-10-02 01:31:32,787 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 01:31:32,788 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 01:31:33,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:33,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:33,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:33,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:31:33,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:31:33,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:33,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:31:33,826 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:31:33,895 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=8.554 +2025-10-02 01:31:33,896 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-02 01:31:33,896 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-02 01:31:35,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:35,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:35,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:36,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:31:36,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:31:36,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:36,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:36,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:36,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:36,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:31:36,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:31:36,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:36,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:36,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:36,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:36,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:31:36,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:31:36,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:39,732 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:31:39,780 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:31:39,876 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.004 +2025-10-02 01:31:39,877 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-02 01:31:39,878 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 01:31:40,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:40,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:40,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:40,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:31:40,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:31:40,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:41,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:41,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:41,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:42,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:31:42,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:31:42,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:44,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:44,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:44,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:44,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:31:44,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:31:44,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:46,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:46,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:46,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:47,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:31:47,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:31:47,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:50,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:50,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:50,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:50,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:31:50,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:31:50,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:53,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:53,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:53,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:53,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:31:53,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:31:53,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:53,597 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:31:53,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:31:53,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:31:53,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:31:53,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:31:53,880 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:31:54,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:54,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:54,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:54,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:31:54,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:31:54,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:58,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:58,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:58,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:58,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:31:58,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:31:58,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:58,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:58,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:58,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:59,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:31:59,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:31:59,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:31:59,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:31:59,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:59,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:59,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:31:59,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:31:59,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:00,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:00,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:00,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:00,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:32:00,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:32:00,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:05,139 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:32:05,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:32:05,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:32:05,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 01:32:05,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 01:32:05,427 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:32:05,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:05,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:05,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:05,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:32:05,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:32:05,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:06,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:06,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:06,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:06,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:32:06,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:32:06,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:07,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:07,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:07,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:07,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:32:07,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:32:07,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:10,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:10,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:10,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:10,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:32:10,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:32:10,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:13,952 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:32:13,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:32:14,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:32:14,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 01:32:14,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 01:32:14,242 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:32:17,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:17,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:17,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:17,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:32:17,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:32:17,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:19,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:19,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:19,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:19,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:32:19,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:32:19,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:20,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:20,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:20,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:20,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:32:20,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:32:20,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:21,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:21,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:21,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:22,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:32:22,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:32:22,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:28,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:28,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:28,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:28,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:32:28,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:32:28,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:29,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:29,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:29,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:29,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:32:29,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:32:29,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:32,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:32,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:32,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:32,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:32:32,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:32:32,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:33,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:33,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:33,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:33,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:32:33,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:32:33,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:34,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:34,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:34,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:35,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:32:35,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:32:35,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:35,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:35,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:35,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:35,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:32:35,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:32:35,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:36,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:36,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:36,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:36,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:32:36,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:32:36,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:39,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:39,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:39,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:39,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:32:39,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:32:39,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:42,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:42,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:42,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:42,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:32:42,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:32:42,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:44,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:44,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:44,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:44,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:32:44,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:32:44,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:45,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:45,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:45,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:45,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:32:45,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:32:45,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:48,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:48,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:48,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:48,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:32:48,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:32:48,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:51,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:51,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:52,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:52,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:32:52,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:32:52,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:52,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:52,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:52,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:52,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:32:52,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:32:52,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:32:55,319 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:32:55,340 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:32:55,426 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.596 +2025-10-02 01:32:55,426 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 01:32:55,426 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 01:32:55,922 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:32:55,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:32:55,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:32:56,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.318s +2025-10-02 01:32:56,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.318s (avg: 0.159s/image) +2025-10-02 01:32:56,241 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:32:58,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:32:58,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:58,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:59,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:32:59,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:32:59,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:00,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:00,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:00,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:00,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:33:00,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:33:00,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:01,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:01,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:01,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:01,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:33:01,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:33:01,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:03,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:03,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:04,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:04,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:33:04,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:33:04,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:05,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:05,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:05,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:05,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:33:05,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:33:05,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:05,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:05,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:05,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:06,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:33:06,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:33:06,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:07,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:07,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:08,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:08,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:33:08,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:33:08,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:09,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:09,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:09,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:09,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:33:09,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:33:09,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:10,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:10,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:10,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:10,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:33:10,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:33:10,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:11,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:11,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:11,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:11,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:33:11,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:33:11,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:12,061 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:33:12,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:33:12,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:33:12,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 01:33:12,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-02 01:33:12,344 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:33:14,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:14,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:14,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:14,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:33:14,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:33:14,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:14,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:14,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:15,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:15,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:33:15,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:33:15,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:18,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:18,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:18,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:18,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:33:18,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:33:18,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:18,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:18,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:18,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:19,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:33:19,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:33:19,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:19,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:19,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:19,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:19,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:33:19,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:33:19,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:21,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:21,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:21,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:21,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:33:21,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:33:21,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:22,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:22,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:22,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:22,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:33:22,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:33:22,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:23,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:23,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:23,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:23,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:33:23,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:33:23,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:24,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:24,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:24,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:24,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:33:24,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:33:24,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:24,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:24,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:24,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:24,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:33:24,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:33:24,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:27,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:27,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:27,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:27,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:33:27,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:33:27,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:28,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:28,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:28,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:28,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:33:28,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:33:28,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:30,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:30,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:30,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:31,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:33:31,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:33:31,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:32,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:32,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:32,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:32,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:33:32,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:33:32,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:34,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:34,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:34,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:34,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:33:34,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:33:34,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:34,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:34,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:34,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:34,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:33:34,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:33:34,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:37,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:37,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:37,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:37,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:33:37,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:33:37,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:38,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:38,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:38,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:38,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:33:38,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:33:38,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:39,034 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:33:39,065 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:33:39,168 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.480 +2025-10-02 01:33:39,168 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-02 01:33:39,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-02 01:33:39,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:39,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:39,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:39,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:33:39,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:33:39,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:40,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:40,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:40,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:40,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:33:40,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:33:40,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:43,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:43,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:43,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:43,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:33:43,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:33:43,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:43,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:43,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:43,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:43,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:33:43,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:33:43,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:44,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:44,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:44,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:45,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:33:45,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:33:45,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:45,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:45,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:45,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:45,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:33:45,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:33:45,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:45,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:45,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:45,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:45,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:33:45,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:33:45,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:46,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:46,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:46,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:46,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:33:46,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:33:46,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:50,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:50,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:50,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:51,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:33:51,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:33:51,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:51,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:51,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:51,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:51,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:33:51,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:33:51,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:52,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:52,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:52,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:52,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:33:52,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:33:52,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:55,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:55,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:55,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:55,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:33:55,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:33:55,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:57,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:57,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:57,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:57,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:33:57,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:33:57,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:58,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:58,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:58,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:58,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:33:58,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:33:58,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:33:59,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:33:59,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:59,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:59,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:33:59,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:33:59,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:03,140 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:34:03,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:34:03,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:34:03,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:34:03,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 01:34:03,425 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:34:03,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:03,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:03,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:03,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:34:03,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:34:03,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:07,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:07,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:07,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:08,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:34:08,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:34:08,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:08,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:34:08,603 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:34:08,692 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.968 +2025-10-02 01:34:08,692 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 01:34:08,692 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 01:34:09,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:09,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:09,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:09,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:34:09,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:34:09,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:13,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:13,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:13,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:13,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:34:13,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:34:13,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:15,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:15,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:15,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:15,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:34:15,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:34:15,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:17,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:17,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:17,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:17,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:34:17,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:34:17,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:19,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:19,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:19,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:19,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:34:19,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:34:19,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:21,737 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:34:21,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:34:21,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:34:22,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 01:34:22,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 01:34:22,024 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:34:25,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:25,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:25,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:25,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:34:25,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:34:25,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:26,150 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:34:26,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:34:26,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:34:26,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 01:34:26,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-02 01:34:26,445 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:34:28,282 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:34:28,311 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:34:28,416 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=191.133 +2025-10-02 01:34:28,417 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-02 01:34:28,418 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-02 01:34:28,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:28,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:28,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:28,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:34:28,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:34:28,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:30,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:30,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:30,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:30,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:34:30,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:34:30,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:31,507 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:34:31,533 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:34:31,627 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.029 +2025-10-02 01:34:31,628 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 01:34:31,629 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 01:34:31,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:31,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:32,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:32,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:34:32,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:34:32,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:34,708 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:34:34,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:34:34,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:34:34,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-02 01:34:34,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-02 01:34:34,978 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:34:35,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:35,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:35,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:35,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:34:35,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:34:35,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:37,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:37,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:37,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:37,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:34:37,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:34:37,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:39,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:39,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:39,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:39,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:34:39,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:34:39,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:39,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:39,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:39,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:39,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:34:39,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:34:39,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:40,069 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:34:40,095 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:34:40,188 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.576 +2025-10-02 01:34:40,188 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 01:34:40,191 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 01:34:44,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:44,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:44,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:44,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:34:44,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:34:44,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:46,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:46,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:46,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:46,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:34:46,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:34:46,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:50,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:50,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:50,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:50,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:34:50,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:34:50,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:52,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:52,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:52,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:52,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:34:52,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:34:52,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:53,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:53,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:53,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:53,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:34:53,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:34:53,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:57,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:57,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:57,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:58,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.211s +2025-10-02 01:34:58,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.211s (avg: 0.211s/image) +2025-10-02 01:34:58,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:34:58,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:34:58,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:58,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:58,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:34:58,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:34:58,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:03,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:03,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:03,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:03,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:35:03,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:35:03,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:04,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:04,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:05,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:05,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:35:05,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:35:05,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:05,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:05,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:05,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:05,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:35:05,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:35:05,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:06,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:06,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:06,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:06,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:35:06,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:35:06,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:10,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:10,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:10,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:10,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:35:10,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:35:10,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:12,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:12,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:12,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:12,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:35:12,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:35:12,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:12,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:12,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:12,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:12,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:35:12,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:35:12,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:17,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:17,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:17,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:17,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:35:17,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:35:17,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:18,798 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:35:18,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:35:18,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:35:19,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 01:35:19,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-02 01:35:19,094 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:35:22,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:35:22,100 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:35:22,189 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.502 +2025-10-02 01:35:22,190 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 01:35:22,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 01:35:23,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:23,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:23,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:23,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:35:23,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:35:23,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:24,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:24,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:24,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:24,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:35:24,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:35:24,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:24,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:24,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:24,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:24,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:35:24,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:35:24,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:27,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:27,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:28,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:28,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:35:28,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:35:28,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:28,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:28,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:28,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:28,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:35:28,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:35:28,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:30,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:30,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:30,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:30,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:35:30,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:35:30,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:31,423 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:35:31,445 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:35:31,539 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.886 +2025-10-02 01:35:31,540 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 01:35:31,541 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 01:35:32,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:32,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:33,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:33,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:35:33,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:35:33,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:33,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:33,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:33,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:33,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:35:33,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:35:33,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:34,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:34,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:34,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:34,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:35:34,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:35:34,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:35,405 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:35:35,436 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:35:35,541 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.221 +2025-10-02 01:35:35,542 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-02 01:35:35,543 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-02 01:35:36,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:36,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:36,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:36,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:35:36,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:35:36,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:37,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:37,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:37,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:37,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:35:37,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:35:37,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:39,109 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:35:39,137 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:35:39,226 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.994 +2025-10-02 01:35:39,226 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 01:35:39,228 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 01:35:39,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:39,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:39,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:40,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:35:40,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:35:40,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:41,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:41,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:41,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:41,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:35:41,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:35:41,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:42,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:42,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:42,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:42,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:35:42,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:35:42,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:45,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:45,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:45,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:45,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:35:45,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:35:45,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:46,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:46,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:46,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:46,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:35:46,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:35:46,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:47,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:47,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:47,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:47,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:35:47,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:35:47,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:49,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:49,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:49,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:49,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:35:49,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:35:49,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:50,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:50,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:50,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:50,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:35:50,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:35:50,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:51,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:51,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:51,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:51,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:35:51,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:35:51,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:53,243 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:35:53,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:35:53,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:35:53,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:35:53,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:35:53,526 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:35:57,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:57,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:57,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:57,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:35:57,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:35:57,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:58,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:58,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:58,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:59,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:35:59,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:35:59,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:35:59,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:35:59,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:59,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:59,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:35:59,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:35:59,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:01,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:01,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:01,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:01,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:36:01,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:36:01,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:01,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:01,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:01,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:01,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:36:01,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:36:01,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:02,030 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:36:02,056 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:36:02,137 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.555 +2025-10-02 01:36:02,137 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 01:36:02,138 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 01:36:03,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:03,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:03,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:03,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:36:03,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:36:03,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:05,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:05,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:05,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:05,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:36:05,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:36:05,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:06,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:06,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:06,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:06,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:36:06,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:36:06,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:07,720 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:36:07,742 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:36:07,830 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.467 +2025-10-02 01:36:07,830 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 01:36:07,830 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:36:07,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:07,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:07,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:08,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:36:08,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:36:08,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:08,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:08,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:08,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:08,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:36:08,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:36:08,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:09,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:09,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:09,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:09,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:36:09,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:36:09,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:09,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:09,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:10,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:10,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:36:10,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:36:10,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:13,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:13,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:13,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:13,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:36:13,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:36:13,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:13,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:13,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:14,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:14,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:36:14,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:36:14,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:14,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:14,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:14,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:14,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:36:14,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:36:14,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:14,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:14,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:14,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:15,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.221s +2025-10-02 01:36:15,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.221s (avg: 0.221s/image) +2025-10-02 01:36:15,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:16,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:16,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:16,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:16,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:36:16,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:36:16,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:17,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:17,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:17,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:18,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:36:18,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:36:18,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:18,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:18,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:18,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:18,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:36:18,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:36:18,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:18,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:18,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:18,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:18,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:36:18,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:36:18,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:19,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:19,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:19,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:19,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:36:19,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:36:19,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:20,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:20,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:20,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:20,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:36:20,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:36:20,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:21,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:21,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:21,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:21,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:36:21,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:36:21,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:22,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:22,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:22,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:22,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:36:22,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:36:22,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:23,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:23,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:23,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:24,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:36:24,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:36:24,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:24,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:24,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:24,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:24,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:36:24,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:36:24,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:26,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:26,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:26,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:26,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:36:26,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:36:26,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:27,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:27,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:27,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:27,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:36:27,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:36:27,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:27,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:27,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:27,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:27,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:36:27,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:36:27,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:28,358 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:36:28,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:36:28,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:36:28,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 01:36:28,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-02 01:36:28,659 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:36:28,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:28,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:28,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:29,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:36:29,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:36:29,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:30,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:30,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:30,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:30,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:36:30,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:36:30,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:33,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:33,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:33,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:33,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:36:33,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:36:33,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:34,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:34,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:34,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:34,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:36:34,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:36:34,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:34,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:34,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:34,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:35,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:36:35,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:36:35,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:35,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:35,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:35,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:35,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:36:35,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:36:35,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:35,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:35,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:35,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:35,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:36:35,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:36:35,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:36,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:36,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:36,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:37,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:36:37,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:36:37,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:37,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:37,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:37,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:38,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:36:38,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:36:38,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:38,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:38,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:38,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:38,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:36:38,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:36:38,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:42,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:42,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:42,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:42,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:36:42,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:36:42,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:45,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:45,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:45,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:45,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:36:45,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:36:45,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:47,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:47,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:47,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:47,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:36:47,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:36:47,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:50,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:50,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:50,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:50,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:36:50,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:36:50,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:53,029 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:36:53,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:36:53,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:36:53,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-02 01:36:53,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-02 01:36:53,337 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:36:53,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:53,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:53,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:54,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:36:54,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:36:54,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:54,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:54,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:54,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:54,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:36:54,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:36:54,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:56,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:56,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:56,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:56,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:36:56,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:36:56,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:36:58,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:36:58,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:58,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:59,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:36:59,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:36:59,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:00,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:00,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:00,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:00,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:37:00,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:37:00,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:02,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:02,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:02,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:02,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:37:02,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:37:02,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:10,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:10,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:10,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:10,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:37:10,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:37:10,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:10,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:10,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:10,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:10,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:37:10,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:37:10,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:11,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:11,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:11,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:11,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:37:11,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:37:11,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:11,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:11,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:11,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:11,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:37:11,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:37:11,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:14,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:14,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:14,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:14,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:37:14,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:37:14,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:15,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:15,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:15,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:15,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:37:15,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:37:15,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:17,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:17,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:17,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:17,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:37:17,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:37:17,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:18,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:18,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:18,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:18,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:37:18,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:37:18,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:18,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:18,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:18,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:18,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:37:18,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:37:18,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:20,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:20,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:20,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:20,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:37:20,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:37:20,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:23,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:23,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:23,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:23,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:37:23,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:37:23,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:24,513 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:37:24,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:37:24,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:37:24,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:37:24,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:37:24,804 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:37:25,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:25,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:25,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:25,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:37:25,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:37:25,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:25,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:25,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:25,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:26,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:37:26,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:37:26,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:29,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:29,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:29,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:29,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:37:29,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:37:29,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:29,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:29,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:29,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:30,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:37:30,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:37:30,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:31,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:31,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:31,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:31,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:37:31,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:37:31,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:31,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:31,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:31,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:32,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:37:32,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:37:32,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:32,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:32,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:33,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:33,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:37:33,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:37:33,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:33,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:33,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:33,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:33,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:37:33,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:37:33,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:36,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:36,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:36,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:36,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:37:36,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:37:36,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:37,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:37,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:37,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:37,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:37:37,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:37:37,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:37,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:37,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:37,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:37,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:37:37,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:37:37,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:38,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:38,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:38,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:38,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:37:38,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:37:38,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:42,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:42,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:42,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:42,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:37:42,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:37:42,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:42,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:42,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:42,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:42,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:37:42,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:37:42,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:43,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:43,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:43,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:43,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:37:43,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:37:43,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:44,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:44,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:44,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:44,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:37:44,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:37:44,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:48,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:48,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:48,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:49,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:37:49,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:37:49,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:49,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:49,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:49,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:49,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:37:49,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:37:49,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:50,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:50,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:50,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:50,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:37:50,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:37:50,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:53,556 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:37:53,579 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:37:53,669 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.631 +2025-10-02 01:37:53,669 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 01:37:53,670 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 01:37:53,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:53,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:53,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:54,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:37:54,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:37:54,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:37:57,206 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:37:57,229 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:37:57,318 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.041 +2025-10-02 01:37:57,318 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 01:37:57,318 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 01:37:58,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:37:58,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:58,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:58,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:37:58,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:37:58,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:01,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:01,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:01,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:02,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:38:02,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:38:02,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:02,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:02,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:02,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:02,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:38:02,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:38:02,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:08,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:08,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:08,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:08,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:38:08,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:38:08,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:12,069 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:38:12,093 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:38:12,171 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.340 +2025-10-02 01:38:12,171 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 01:38:12,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:38:12,740 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:38:12,776 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:38:12,859 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.455 +2025-10-02 01:38:12,859 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 01:38:12,859 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:38:13,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:13,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:13,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:13,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:38:13,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:38:13,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:13,690 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:38:13,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:38:13,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:38:13,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-02 01:38:13,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-02 01:38:13,994 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:38:14,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:14,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:14,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:14,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:38:14,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:38:14,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:17,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:17,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:17,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:18,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:38:18,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:38:18,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:18,444 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:38:18,468 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:38:18,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=192.976 +2025-10-02 01:38:18,546 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 01:38:18,546 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:38:18,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:18,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:18,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:18,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:38:18,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:38:18,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:20,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:20,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:20,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:20,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:38:20,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:38:20,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:23,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:23,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:23,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:23,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:38:23,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:38:23,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:25,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:25,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:25,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:25,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:38:25,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:38:25,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:26,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:26,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:26,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:26,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:38:26,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:38:26,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:26,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:26,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:26,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:27,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:38:27,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:38:27,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:29,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:29,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:29,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:29,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:38:29,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:38:29,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:30,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:30,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:30,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:30,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:38:30,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:38:30,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:33,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:33,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:33,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:33,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:38:33,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:38:33,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:33,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:33,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:33,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:33,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:38:33,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:38:33,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:37,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:37,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:37,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:37,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:38:37,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:38:37,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:37,789 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:38:37,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:38:37,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:38:38,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.324s +2025-10-02 01:38:38,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.324s (avg: 0.162s/image) +2025-10-02 01:38:38,114 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:38:42,473 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:38:42,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:38:42,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:38:42,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 01:38:42,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 01:38:42,759 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:38:43,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:43,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:43,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:43,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:38:43,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:38:43,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:47,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:47,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:47,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:47,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:38:47,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:38:47,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:48,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:48,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:48,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:48,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 01:38:48,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 01:38:48,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:51,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:51,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:51,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:51,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:38:51,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:38:51,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:53,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:53,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:53,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:53,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:38:53,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:38:53,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:53,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:53,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:53,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:53,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:38:53,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:38:53,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:55,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:55,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:55,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:55,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:38:55,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:38:55,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:57,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:38:57,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:57,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:57,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:38:57,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:38:57,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:38:57,971 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:38:57,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:38:58,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:38:58,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:38:58,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 01:38:58,255 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:39:01,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:01,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:01,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:01,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:39:01,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:39:01,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:01,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:01,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:01,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:01,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:39:01,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:39:01,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:02,180 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:39:02,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:39:02,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:39:02,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 01:39:02,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-02 01:39:02,458 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:39:03,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:03,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:03,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:03,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:39:03,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:39:03,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:03,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:03,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:03,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:03,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:39:03,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:39:03,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:05,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:05,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:05,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:05,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:39:05,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:39:05,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:05,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:05,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:05,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:05,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:39:05,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:39:05,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:07,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:07,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:08,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:08,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:39:08,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:39:08,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:09,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:09,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:09,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:09,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:39:09,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:39:09,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:09,795 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:39:09,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:39:09,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:39:10,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 01:39:10,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 01:39:10,085 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:39:10,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:10,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:10,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:10,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:39:10,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:39:10,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:12,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:12,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:12,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:12,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:39:12,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:39:12,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:15,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:15,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:15,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:15,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:39:15,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:39:15,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:15,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:15,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:15,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:15,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:39:15,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:39:15,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:16,147 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:39:16,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:39:16,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:39:16,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 01:39:16,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 01:39:16,444 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:39:16,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:16,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:16,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:16,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:39:16,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:39:16,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:17,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:17,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:17,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:17,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:39:17,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:39:17,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:18,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:18,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:18,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:19,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:39:19,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:39:19,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:22,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:22,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:22,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:22,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:39:22,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:39:22,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:22,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:22,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:22,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:22,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.126s +2025-10-02 01:39:22,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.126s (avg: 0.126s/image) +2025-10-02 01:39:22,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:23,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:23,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:23,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:23,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:39:23,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:39:23,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:26,957 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:39:26,983 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:39:27,078 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.853 +2025-10-02 01:39:27,078 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 01:39:27,080 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 01:39:28,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:28,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:28,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:28,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:39:28,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:39:28,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:30,009 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:39:30,041 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:39:30,133 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.723 +2025-10-02 01:39:30,134 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 01:39:30,134 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 01:39:30,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:30,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:30,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:30,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:39:30,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:39:30,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:32,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:32,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:32,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:32,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:39:32,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:39:32,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:32,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:32,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:32,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:32,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:39:32,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:39:32,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:33,053 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:39:33,076 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:39:33,157 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.955 +2025-10-02 01:39:33,158 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 01:39:33,158 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:39:33,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:33,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:33,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:33,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:39:33,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:39:33,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:33,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:33,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:33,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:33,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-02 01:39:33,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-02 01:39:33,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:33,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:33,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:33,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:34,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:39:34,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:39:34,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:35,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:35,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:35,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:35,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:39:35,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:39:35,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:36,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:36,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:36,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:36,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:39:36,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:39:36,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:37,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:37,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:37,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:37,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:39:37,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:39:37,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:38,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:38,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:38,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:38,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:39:38,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:39:38,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:40,380 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:39:40,406 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:39:40,498 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=183.101 +2025-10-02 01:39:40,498 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 01:39:40,499 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 01:39:41,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:41,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:41,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:41,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:39:41,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:39:41,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:42,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:42,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:42,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:42,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:39:42,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:39:42,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:44,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:44,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:44,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:44,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:39:44,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:39:44,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:44,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:44,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:44,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:44,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 01:39:44,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 01:39:44,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:44,809 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:39:44,832 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:39:44,924 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.644 +2025-10-02 01:39:44,924 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 01:39:44,924 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 01:39:45,113 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:39:45,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:39:45,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:39:45,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 01:39:45,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 01:39:45,389 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:39:46,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:46,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:46,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:46,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:39:46,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:39:46,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:47,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:47,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:47,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:47,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:39:47,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:39:47,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:48,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:48,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:48,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:48,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:39:48,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:39:48,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:48,634 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:39:48,653 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:39:48,731 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.225 +2025-10-02 01:39:48,732 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 01:39:48,732 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:39:49,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:49,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:49,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:49,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:39:49,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:39:49,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:50,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:50,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:50,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:51,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:39:51,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:39:51,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:52,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:52,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:52,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:53,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:39:53,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:39:53,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:54,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:54,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:54,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:54,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:39:54,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:39:54,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:54,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:54,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:54,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:54,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:39:54,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:39:54,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:55,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:55,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:55,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:55,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:39:55,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:39:55,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:56,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:56,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:56,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:56,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:39:56,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:39:56,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:58,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:58,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:58,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:58,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:39:58,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:39:58,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:58,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:58,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:58,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:58,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +2025-10-02 01:39:58,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +2025-10-02 01:39:58,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:39:59,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:39:59,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:59,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:59,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:39:59,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:39:59,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:00,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:00,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:00,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:00,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:40:00,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:40:00,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:01,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:01,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:01,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:01,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:40:01,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:40:01,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:01,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:01,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:01,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:01,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:40:01,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:40:01,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:04,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:04,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:04,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:04,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:40:04,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:40:04,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:04,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:04,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:04,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:05,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:40:05,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:40:05,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:06,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:06,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:06,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:06,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:40:06,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:40:06,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:06,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:06,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:06,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:06,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:40:06,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:40:06,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:06,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:06,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:06,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:06,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:40:06,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:40:06,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:07,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:07,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:07,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:07,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-02 01:40:07,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-02 01:40:07,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:10,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:10,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:10,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:10,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:40:10,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:40:10,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:11,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:11,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:11,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:11,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:40:11,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:40:11,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:12,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:12,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:12,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:12,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:40:12,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:40:12,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:13,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:13,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:13,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:13,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:40:13,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:40:13,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:15,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:15,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:15,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:15,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 01:40:15,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 01:40:15,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:15,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:15,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:15,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:15,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:40:15,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:40:15,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:16,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:16,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:16,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:16,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:40:16,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:40:16,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:18,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:18,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:18,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:18,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:40:18,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:40:18,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:19,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:19,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:19,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:19,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:40:19,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:40:19,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:20,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:20,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:20,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:20,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:40:20,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:40:20,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:21,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:21,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:21,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:21,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:40:21,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:40:21,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:24,070 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:40:24,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:40:24,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:40:24,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 01:40:24,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 01:40:24,373 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:40:26,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:26,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:26,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:26,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:40:26,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:40:26,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:26,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:26,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:26,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:27,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:40:27,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:40:27,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:29,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:29,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:29,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:29,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:40:29,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:40:29,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:30,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:30,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:30,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:30,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:40:30,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:40:30,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:30,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:30,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:30,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:30,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:40:30,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:40:30,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:33,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:33,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:33,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:33,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:40:33,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:40:33,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:34,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:34,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:34,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:34,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:40:34,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:40:34,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:36,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:36,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:36,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:36,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 01:40:36,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 01:40:36,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:40,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:40,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:40,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:40,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:40:40,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:40:40,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:40,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:40,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:40,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:40,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:40:40,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:40:40,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:40,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:40,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:40,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:40,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:40:40,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:40:40,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:41,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:41,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:41,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:41,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:40:41,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:40:41,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:44,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:44,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:44,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:44,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:40:44,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:40:44,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:45,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:45,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:45,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:45,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:40:45,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:40:45,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:45,980 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:40:45,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:40:46,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:40:46,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-02 01:40:46,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-02 01:40:46,295 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:40:47,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:47,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:47,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:47,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:40:47,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:40:47,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:50,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:50,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:50,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:50,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:40:50,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:40:50,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:53,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:53,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:53,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:53,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:40:53,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:40:53,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:54,451 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:40:54,482 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:40:54,560 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.823 +2025-10-02 01:40:54,560 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 01:40:54,560 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:40:55,452 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:40:55,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:40:55,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:40:55,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.327s +2025-10-02 01:40:55,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.327s (avg: 0.164s/image) +2025-10-02 01:40:55,781 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:40:55,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:55,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:56,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:56,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:40:56,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:40:56,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:56,737 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:40:56,760 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:40:56,835 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.063 +2025-10-02 01:40:56,835 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 01:40:56,836 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 01:40:58,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:58,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:58,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:58,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:40:58,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:40:58,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:40:59,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:40:59,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:59,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:00,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:41:00,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:41:00,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:03,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:03,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:03,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:03,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:41:03,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:41:03,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:04,511 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:41:04,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:41:04,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:41:04,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:41:04,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:41:04,802 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:41:08,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:08,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:08,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:08,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:41:08,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:41:08,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:10,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:10,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:10,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:10,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:41:10,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:41:10,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:11,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:11,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:11,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:11,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:41:11,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:41:11,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:11,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:11,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:11,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:11,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:41:11,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:41:11,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:12,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:12,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:12,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:12,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:41:12,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:41:12,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:13,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:13,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:13,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:13,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:41:13,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:41:13,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:17,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:17,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:17,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:17,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:41:17,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:41:17,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:19,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:19,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:19,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:19,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:41:19,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:41:19,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:20,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:20,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:20,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:20,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:41:20,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:41:20,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:22,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:22,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:22,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:22,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:41:22,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:41:22,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:22,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:22,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:22,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:23,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:41:23,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:41:23,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:23,582 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:41:23,612 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:41:23,699 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.333 +2025-10-02 01:41:23,699 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 01:41:23,699 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 01:41:24,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:24,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:24,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:24,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s +2025-10-02 01:41:24,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image) +2025-10-02 01:41:24,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:25,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:25,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:25,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:25,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:41:25,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:41:25,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:28,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:28,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:28,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:28,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:41:28,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:41:28,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:28,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:28,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:28,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:29,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:41:29,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:41:29,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:29,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:29,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:29,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:29,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:41:29,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:41:29,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:29,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:29,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:29,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:29,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:41:29,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:41:29,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:33,463 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:41:33,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:41:33,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:41:33,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-02 01:41:33,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.161s/image) +2025-10-02 01:41:33,786 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:41:34,000 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:41:34,036 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:41:34,136 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.406 +2025-10-02 01:41:34,136 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-02 01:41:34,138 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 01:41:35,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:35,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:35,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:35,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:41:35,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:41:35,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:38,536 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:41:38,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:41:38,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:41:38,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-02 01:41:38,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-02 01:41:38,807 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:41:39,062 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:41:39,085 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:41:39,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.538 +2025-10-02 01:41:39,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 01:41:39,181 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 01:41:40,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:40,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:40,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:41,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:41:41,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:41:41,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:43,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:43,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:43,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:43,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:41:43,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:41:43,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:44,043 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:41:44,075 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:41:44,188 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.412 +2025-10-02 01:41:44,189 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.112s +2025-10-02 01:41:44,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.115s +2025-10-02 01:41:48,585 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:41:48,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:41:48,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:41:48,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 01:41:48,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 01:41:48,885 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:41:49,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:49,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:49,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:49,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:41:49,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:41:49,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:49,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:49,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:49,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:49,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:41:49,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:41:49,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:52,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:52,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:52,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:53,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:41:53,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:41:53,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:53,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:53,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:53,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:53,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:41:53,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:41:53,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:53,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:53,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:54,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:54,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:41:54,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:41:54,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:54,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:54,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:54,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:54,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:41:54,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:41:54,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:57,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:57,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:57,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:57,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:41:57,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:41:57,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:58,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:58,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:58,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:58,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:41:58,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:41:58,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:41:59,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:41:59,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:59,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:59,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:41:59,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:41:59,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:00,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:00,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:00,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:00,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:42:00,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:42:00,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:02,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:02,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:02,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:02,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:42:02,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:42:02,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:02,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:02,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:02,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:02,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:42:02,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:42:02,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:05,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:05,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:05,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:05,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:42:05,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:42:05,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:06,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:06,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:06,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:06,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 01:42:06,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 01:42:06,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:06,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:06,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:06,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:06,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:42:06,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:42:06,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:09,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:09,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:09,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:09,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:42:09,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:42:09,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:09,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:09,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:09,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:10,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:42:10,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:42:10,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:10,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:10,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:10,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:10,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:42:10,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:42:10,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:11,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:11,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:11,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:11,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:42:11,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:42:11,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:12,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:12,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:12,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:12,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:42:12,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:42:12,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:15,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:15,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:15,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:15,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:42:15,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:42:15,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:16,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:16,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:16,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:16,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:42:16,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:42:16,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:16,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:16,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:16,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:16,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:42:16,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:42:16,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:16,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:16,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:16,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:16,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:42:16,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:42:16,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:19,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:19,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:19,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:19,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:42:19,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:42:19,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:20,162 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:42:20,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:42:20,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:42:20,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:42:20,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:42:20,453 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:42:20,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:20,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:20,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:20,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 01:42:20,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 01:42:20,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:22,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:22,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:22,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:22,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:42:22,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:42:22,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:23,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:23,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:23,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:23,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:42:23,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:42:23,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:24,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:24,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:24,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:24,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:42:24,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:42:24,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:24,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:24,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:24,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:24,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:42:24,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:42:24,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:25,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:25,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:25,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:25,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:42:25,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:42:25,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:26,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:26,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:26,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:26,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:42:26,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:42:26,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:26,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:26,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:26,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:26,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:42:26,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:42:26,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:29,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:29,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:29,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:29,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:42:29,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:42:29,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:29,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:29,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:29,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:29,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:42:29,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:42:29,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:30,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:30,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:30,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:30,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:42:30,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:42:30,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:32,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:32,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:32,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:32,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:42:32,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:42:32,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:34,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:34,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:34,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:35,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:42:35,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:42:35,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:35,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:35,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:35,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:35,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:42:35,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:42:35,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:36,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:36,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:36,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:36,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:42:36,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:42:36,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:39,739 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:42:39,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:42:39,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:42:40,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:42:40,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 01:42:40,031 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:42:40,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:40,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:40,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:41,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:42:41,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:42:41,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:42,678 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:42:42,718 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:42:42,807 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.265 +2025-10-02 01:42:42,808 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 01:42:42,808 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 01:42:43,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:43,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:43,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:43,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 01:42:43,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 01:42:43,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:44,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:44,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:44,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:44,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:42:44,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:42:44,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:44,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:44,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:45,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:45,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:42:45,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:42:45,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:46,789 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:42:46,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:42:46,891 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.816 +2025-10-02 01:42:46,892 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 01:42:46,892 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:42:48,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:48,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:48,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:48,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:42:48,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:42:48,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:49,271 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:42:49,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:42:49,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:42:49,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 01:42:49,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-02 01:42:49,548 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:42:50,234 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:42:50,258 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(740, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:42:50,338 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.693 +2025-10-02 01:42:50,339 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 01:42:50,339 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 01:42:51,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:51,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:51,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:51,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:42:51,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:42:51,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:53,980 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:42:53,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:42:54,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:42:54,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:42:54,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:42:54,272 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:42:55,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:55,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:55,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:55,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:42:55,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:42:55,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:58,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:58,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:58,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:58,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:42:58,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:42:58,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:59,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:59,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:59,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:59,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:42:59,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:42:59,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:42:59,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:42:59,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:59,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:00,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:43:00,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:43:00,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:03,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:03,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:03,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:03,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:43:03,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:43:03,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:06,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:06,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:06,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:07,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:43:07,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:43:07,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:10,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:10,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:10,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:10,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:43:10,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:43:10,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:14,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:14,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:14,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:15,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:43:15,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:43:15,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:17,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:17,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:17,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:17,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:43:17,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:43:17,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:19,637 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:43:19,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:43:19,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:43:19,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:43:19,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 01:43:19,929 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:43:21,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:21,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:21,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:21,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:43:21,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:43:21,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:23,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:23,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:23,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:24,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:43:24,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:43:24,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:25,318 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:43:25,341 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:43:25,421 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.076 +2025-10-02 01:43:25,421 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 01:43:25,423 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:43:25,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:25,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:25,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:26,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:43:26,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:43:26,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:28,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:28,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:28,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:28,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:43:28,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:43:28,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:32,467 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:43:32,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:43:32,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:43:32,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:43:32,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 01:43:32,751 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:43:32,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:32,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:32,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:33,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:43:33,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:43:33,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:33,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:33,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:33,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:33,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:43:33,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:43:33,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:36,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:36,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:36,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:36,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:43:36,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:43:36,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:37,960 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:43:37,982 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:43:38,057 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.595 +2025-10-02 01:43:38,057 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 01:43:38,057 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 01:43:43,647 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:43:43,668 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:43:43,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.322 +2025-10-02 01:43:43,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 01:43:43,747 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:43:44,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:44,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:44,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:44,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:43:44,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:43:44,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:45,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:45,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:45,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:45,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 01:43:45,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 01:43:45,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:45,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:45,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:45,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:45,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:43:45,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:43:45,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:48,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:48,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:48,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:48,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:43:48,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:43:48,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:50,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:50,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:50,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:50,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:43:50,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:43:50,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:51,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:51,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:51,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:51,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:43:51,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:43:51,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:53,480 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:43:53,503 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:43:53,590 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.224 +2025-10-02 01:43:53,591 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 01:43:53,591 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 01:43:55,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:55,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:55,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:55,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:43:55,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:43:55,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:56,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:56,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:56,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:56,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:43:56,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:43:56,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:56,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:56,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:56,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:56,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:43:56,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:43:56,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:56,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:56,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:56,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:56,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:43:56,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:43:56,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:58,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:58,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:58,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:58,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:43:58,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:43:58,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:43:59,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:43:59,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:59,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:59,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.207s +2025-10-02 01:43:59,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.207s (avg: 0.207s/image) +2025-10-02 01:43:59,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:00,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:00,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:00,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:00,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:44:00,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:44:00,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:00,840 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:44:00,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:44:00,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:44:01,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 01:44:01,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 01:44:01,129 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:44:01,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:01,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:01,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:01,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:44:01,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:44:01,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:02,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:02,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:02,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:02,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:44:02,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:44:02,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:03,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:03,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:03,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:03,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:44:03,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:44:03,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:04,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:04,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:04,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:04,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:44:04,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:44:04,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:05,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:05,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:05,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:05,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:44:05,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:44:05,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:06,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:06,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:06,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:07,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:44:07,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:44:07,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:07,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:07,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:07,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:07,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:44:07,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:44:07,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:07,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:07,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:07,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:08,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:44:08,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:44:08,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:08,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:08,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:08,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:08,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:44:08,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:44:08,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:08,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:08,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:08,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:09,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:44:09,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:44:09,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:10,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:10,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:10,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:10,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:44:10,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:44:10,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:12,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:12,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:12,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:12,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:44:12,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:44:12,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:14,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:14,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:14,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:14,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:44:14,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:44:14,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:15,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:15,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:15,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:15,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:44:15,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:44:15,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:16,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:16,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:16,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:16,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:44:16,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:44:16,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:16,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:16,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:16,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:17,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:44:17,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:44:17,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:17,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:17,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:17,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:17,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:44:17,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:44:17,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:17,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:17,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:17,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:17,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:44:17,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:44:17,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:18,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:18,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:18,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:18,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:44:18,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:44:18,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:22,513 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:44:22,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:44:22,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:44:22,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 01:44:22,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 01:44:22,815 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:44:23,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:23,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:23,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:23,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:44:23,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:44:23,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:23,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:23,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:23,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:23,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:44:23,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:44:23,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:24,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:24,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:24,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:24,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:44:24,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:44:24,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:24,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:24,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:24,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:24,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:44:24,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:44:24,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:27,436 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:44:27,467 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:44:27,570 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=19.122 +2025-10-02 01:44:27,571 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-02 01:44:27,571 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-02 01:44:27,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:27,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:27,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:27,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:44:27,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:44:27,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:28,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:28,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:28,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:28,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:44:28,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:44:28,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:29,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:29,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:29,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:29,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:44:29,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:44:29,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:30,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:30,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:30,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:30,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:44:30,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:44:30,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:31,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:31,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:31,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:31,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:44:31,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:44:31,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:32,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:32,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:32,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:32,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:44:32,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:44:32,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:35,501 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:44:35,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:44:35,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:44:35,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 01:44:35,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-02 01:44:35,803 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:44:36,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:36,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:36,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:36,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:44:36,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:44:36,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:36,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:36,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:36,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:36,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:44:36,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:44:36,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:37,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:37,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:37,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:37,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:44:37,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:44:37,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:38,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:38,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:38,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:39,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:44:39,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:44:39,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:40,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:40,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:40,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:41,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:44:41,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:44:41,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:41,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:41,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:41,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:41,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:44:41,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:44:41,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:41,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:41,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:41,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:41,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:44:41,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:44:41,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:41,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:41,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:41,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:42,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:44:42,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:44:42,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:46,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:46,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:46,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:46,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:44:46,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:44:46,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:46,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:46,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:46,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:46,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:44:46,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:44:46,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:47,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:47,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:47,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:48,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:44:48,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:44:48,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:49,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:49,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:49,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:49,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:44:49,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:44:49,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:52,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:52,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:52,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:52,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:44:52,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:44:52,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:53,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:53,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:53,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:53,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:44:53,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:44:53,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:56,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:56,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:56,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:56,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:44:56,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:44:56,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:57,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:57,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:57,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:57,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:44:57,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:44:57,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:44:57,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:44:57,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:57,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:57,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:44:57,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:44:57,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:02,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:02,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:02,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:02,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:45:02,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:45:02,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:03,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:03,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:03,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:03,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:45:03,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:45:03,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:06,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:06,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:06,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:06,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:45:06,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:45:06,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:06,672 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:45:06,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:45:06,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:45:06,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 01:45:06,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.133s/image) +2025-10-02 01:45:06,939 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:45:08,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:08,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:08,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:08,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:45:08,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:45:08,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:09,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:09,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:09,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:09,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:45:09,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:45:09,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:10,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:10,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:10,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:11,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:45:11,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:45:11,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:11,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:11,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:11,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:11,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 01:45:11,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 01:45:11,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:12,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:12,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:12,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:12,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:45:12,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:45:12,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:12,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:12,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:12,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:13,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:45:13,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:45:13,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:14,331 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:45:14,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:45:14,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:45:14,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 01:45:14,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 01:45:14,620 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:45:14,786 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:45:14,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:45:14,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:45:15,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 01:45:15,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.133s/image) +2025-10-02 01:45:15,052 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:45:15,247 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:45:15,265 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:45:15,344 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=216.441 +2025-10-02 01:45:15,344 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 01:45:15,344 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:45:18,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:18,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:18,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:18,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:45:18,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:45:18,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:20,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:20,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:20,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:20,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:45:20,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:45:20,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:22,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:22,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:22,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:22,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:45:22,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:45:22,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:23,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:23,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:23,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:23,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:45:23,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:45:23,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:25,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:25,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:25,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:25,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:45:25,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:45:25,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:25,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:25,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:25,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:25,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:45:25,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:45:25,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:26,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:26,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:26,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:26,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:45:26,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:45:26,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:29,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:29,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:29,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:29,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:45:29,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:45:29,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:30,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:30,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:30,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:30,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:45:30,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:45:30,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:30,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:30,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:30,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:30,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:45:30,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:45:30,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:31,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:31,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:31,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:31,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:45:31,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:45:31,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:31,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:31,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:32,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:32,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:45:32,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:45:32,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:33,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:33,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:34,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:34,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:45:34,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:45:34,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:34,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:34,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:34,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:34,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:45:34,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:45:34,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:36,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:36,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:36,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:36,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:45:36,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:45:36,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:37,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:37,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:37,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:37,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:45:37,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:45:37,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:38,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:38,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:38,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:38,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:45:38,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:45:38,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:38,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:38,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:38,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:38,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:45:38,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:45:38,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:41,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:41,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:42,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:42,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 01:45:42,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 01:45:42,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:43,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:43,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:43,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:43,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:45:43,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:45:43,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:43,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:43,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:43,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:43,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:45:43,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:45:43,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:45,153 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:45:45,177 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:45:45,252 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.062 +2025-10-02 01:45:45,253 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 01:45:45,253 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 01:45:46,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:46,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:46,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:46,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:45:46,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:45:46,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:49,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:49,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:49,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:49,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 01:45:49,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 01:45:49,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:50,972 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:45:50,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:45:51,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:45:51,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 01:45:51,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-02 01:45:51,260 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:45:53,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:53,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:53,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:53,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-02 01:45:53,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-02 01:45:53,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:56,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:45:56,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:56,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:56,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:45:56,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:45:56,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:45:57,825 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:45:57,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:45:57,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:45:58,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:45:58,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 01:45:58,109 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:46:00,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:00,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:01,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:01,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:46:01,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:46:01,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:02,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:02,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:02,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:02,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:46:02,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:46:02,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:04,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:04,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:04,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:04,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:46:04,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:46:04,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:04,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:04,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:05,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:05,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:46:05,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:46:05,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:05,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:05,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:05,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:05,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:46:05,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:46:05,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:06,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:06,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:06,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:06,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:46:06,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:46:06,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:08,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:08,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:08,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:08,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:46:08,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:46:08,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:09,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:09,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:09,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:10,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:46:10,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:46:10,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:12,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:12,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:12,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:12,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:46:12,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:46:12,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:13,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:13,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:13,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:14,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:46:14,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:46:14,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:14,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:14,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:14,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:14,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:46:14,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:46:14,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:16,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:16,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:16,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:16,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:46:16,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:46:16,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:18,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:18,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:18,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:18,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-02 01:46:18,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-02 01:46:18,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:18,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:18,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:18,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:19,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:46:19,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:46:19,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:19,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:19,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:19,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:19,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:46:19,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:46:19,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:21,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:21,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:21,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:21,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:46:21,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:46:21,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:23,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:23,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:23,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:23,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:46:23,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:46:23,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:24,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:24,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:24,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:24,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:46:24,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:46:24,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:27,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:27,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:27,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:27,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:46:27,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:46:27,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:28,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:28,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:28,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:28,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:46:28,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:46:28,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:32,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:32,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:32,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:32,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:46:32,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:46:32,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:32,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:32,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:32,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:32,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:46:32,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:46:32,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:36,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:36,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:36,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:36,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:46:36,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:46:36,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:36,582 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:46:36,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:46:36,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:46:36,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-02 01:46:36,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.128s/image) +2025-10-02 01:46:36,840 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:46:37,320 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:46:37,345 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:46:37,425 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.088 +2025-10-02 01:46:37,425 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 01:46:37,425 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 01:46:39,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:39,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:39,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:39,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:46:39,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:46:39,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:40,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:40,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:40,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:40,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:46:40,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:46:40,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:40,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:40,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:40,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:41,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:46:41,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:46:41,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:42,466 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:46:42,506 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:46:42,594 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.910 +2025-10-02 01:46:42,594 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 01:46:42,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 01:46:42,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:42,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:42,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:43,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:46:43,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:46:43,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:43,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:43,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:43,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:44,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 01:46:44,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 01:46:44,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:44,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:44,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:44,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:44,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:46:44,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:46:44,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:45,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:45,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:45,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:45,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:46:45,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:46:45,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:45,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:45,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:46,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:46,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:46:46,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:46:46,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:46,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:46,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:46,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:46,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:46:46,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:46:46,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:48,167 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:46:48,206 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:46:48,292 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.078 +2025-10-02 01:46:48,292 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 01:46:48,292 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:46:48,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:48,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:48,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:48,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:46:48,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:46:48,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:49,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:49,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:49,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:49,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:46:49,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:46:49,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:49,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:49,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:49,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:49,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:46:49,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:46:49,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:51,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:51,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:51,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:52,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:46:52,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:46:52,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:53,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:53,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:53,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:53,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:46:53,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:46:53,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:54,057 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:46:54,081 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:46:54,164 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.893 +2025-10-02 01:46:54,165 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 01:46:54,165 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:46:55,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:55,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:55,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:55,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:46:55,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:46:55,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:58,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:58,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:58,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:58,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:46:58,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:46:58,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:59,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:59,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:59,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:59,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:46:59,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:46:59,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:46:59,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:46:59,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:59,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:59,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:46:59,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:47:00,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:01,537 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:47:01,562 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:47:01,654 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.991 +2025-10-02 01:47:01,655 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 01:47:01,655 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 01:47:02,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:02,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:02,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:03,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:47:03,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:47:03,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:05,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:05,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:06,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:06,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:47:06,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:47:06,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:06,820 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:47:06,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:47:06,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:47:07,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 01:47:07,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 01:47:07,106 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:47:07,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:07,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:07,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:07,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:47:07,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:47:07,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:08,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:08,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:08,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:08,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:47:08,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:47:08,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:08,546 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:47:08,560 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:47:08,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.554 +2025-10-02 01:47:08,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-02 01:47:08,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 01:47:10,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:10,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:10,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:10,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:47:10,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:47:10,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:11,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:11,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:11,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:12,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:47:12,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:47:12,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:13,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:13,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:13,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:13,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:47:13,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:47:13,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:18,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:18,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:18,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:18,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:47:18,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:47:18,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:19,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:19,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:19,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:19,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:47:19,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:47:19,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:19,562 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:47:19,594 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:47:19,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.433 +2025-10-02 01:47:19,676 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 01:47:19,676 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:47:22,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:22,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:22,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:22,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:47:22,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:47:22,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:23,616 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:47:23,643 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:47:23,717 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.299 +2025-10-02 01:47:23,717 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 01:47:23,717 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 01:47:25,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:25,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:25,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:25,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:47:25,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:47:25,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:25,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:25,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:25,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:26,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:47:26,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:47:26,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:26,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:26,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:26,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:26,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:47:26,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:47:26,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:27,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:27,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:27,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:28,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:47:28,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:47:28,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:28,923 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:47:28,950 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:47:29,031 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=210.584 +2025-10-02 01:47:29,031 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 01:47:29,032 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 01:47:30,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:30,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:30,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:30,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:47:30,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:47:30,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:30,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:30,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:31,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:31,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:47:31,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:47:31,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:32,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:32,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:32,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:32,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:47:32,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:47:32,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:33,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:33,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:33,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:33,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:47:33,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:47:33,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:34,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:34,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:34,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:34,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:47:34,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:47:34,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:35,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:35,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:35,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:36,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:47:36,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:47:36,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:36,662 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:47:36,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:47:36,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:47:36,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 01:47:36,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +2025-10-02 01:47:36,978 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:47:39,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:39,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:39,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:39,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 01:47:39,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 01:47:39,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:42,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:42,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:42,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:42,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:47:42,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:47:42,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:44,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:44,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:44,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:45,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:47:45,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:47:45,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:45,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:45,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:46,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:46,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:47:46,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:47:46,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:47,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:47,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:47,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:47,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:47:47,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:47:47,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:49,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:49,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:49,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:49,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:47:49,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:47:49,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:49,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:49,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:49,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:49,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:47:49,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:47:49,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:50,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:50,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:50,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:50,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:47:50,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:47:50,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:50,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:50,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:50,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:50,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:47:50,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:47:50,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:51,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:51,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:51,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:51,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:47:51,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:47:51,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:52,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:52,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:52,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:52,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:47:52,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:47:52,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:53,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:53,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:53,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:54,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:47:54,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:47:54,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:54,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:54,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:54,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:54,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:47:54,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:47:54,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:54,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:54,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:54,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:55,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:47:55,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:47:55,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:56,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:56,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:56,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:56,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:47:56,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:47:56,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:57,498 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:47:57,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:47:57,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:47:57,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-02 01:47:57,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-02 01:47:57,774 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:47:59,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:59,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:59,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:59,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:47:59,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:47:59,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:47:59,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:47:59,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:59,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:59,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:47:59,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:47:59,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:01,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:01,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:01,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:01,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:48:01,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:48:01,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:01,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:01,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:01,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:01,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:48:01,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:48:01,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:02,137 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:48:02,171 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:48:02,269 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.961 +2025-10-02 01:48:02,269 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-02 01:48:02,272 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 01:48:03,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:03,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:03,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:03,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:48:03,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:48:03,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:05,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:05,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:05,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:05,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:48:05,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:48:05,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:05,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:05,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:05,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:06,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:48:06,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:48:06,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:06,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:06,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:06,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:06,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:48:06,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:48:06,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:06,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:06,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:06,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:06,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:48:06,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:48:06,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:06,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:06,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:06,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:07,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:48:07,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:48:07,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:07,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:07,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:07,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:07,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:48:07,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:48:07,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:08,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:08,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:08,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:08,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:48:08,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:48:08,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:09,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:09,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:09,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:09,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:48:09,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:48:09,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:10,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:10,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:10,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:11,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:48:11,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:48:11,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:11,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:11,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:11,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:11,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:48:11,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:48:11,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:12,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:12,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:12,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:12,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:48:12,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:48:12,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:14,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:14,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:14,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:14,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:48:14,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:48:14,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:14,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:14,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:14,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:15,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:48:15,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:48:15,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:15,693 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:48:15,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:48:15,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:48:15,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 01:48:15,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 01:48:15,975 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:48:16,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:16,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:16,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:16,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:48:16,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:48:16,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:16,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:16,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:16,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:16,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:48:16,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:48:16,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:17,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:17,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:17,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:17,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:48:17,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:48:17,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:18,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:18,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:18,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:18,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:48:18,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:48:18,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:18,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:18,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:18,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:18,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:48:18,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:48:18,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:20,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:20,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:20,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:20,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:48:20,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:48:20,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:21,639 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:48:21,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:48:21,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:48:21,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.325s +2025-10-02 01:48:21,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.325s (avg: 0.162s/image) +2025-10-02 01:48:21,965 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:48:22,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:22,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:22,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:22,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:48:22,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:48:22,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:25,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:25,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:25,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:25,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:48:25,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:48:25,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:26,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:26,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:26,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:26,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:48:26,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:48:26,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:27,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:27,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:27,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:27,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:48:27,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:48:27,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:30,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:30,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:30,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:30,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:48:30,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:48:30,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:31,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:31,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:31,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:31,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:48:31,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:48:31,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:32,605 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:48:32,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:48:32,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:48:32,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:48:32,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:48:32,889 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:48:35,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:35,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:35,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:35,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:48:35,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:48:35,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:35,304 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:48:35,326 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:48:35,402 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.124 +2025-10-02 01:48:35,402 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 01:48:35,403 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 01:48:35,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:35,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:35,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:35,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:48:35,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:48:35,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:40,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:40,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:40,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:40,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:48:40,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:48:40,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:40,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:40,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:40,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:40,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:48:40,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:48:40,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:42,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:42,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:42,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:42,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:48:42,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:48:42,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:43,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:43,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:43,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:43,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:48:43,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:48:43,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:45,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:45,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:45,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:45,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:48:45,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:48:45,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:45,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:45,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:45,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:46,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:48:46,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:48:46,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:46,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:46,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:46,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:46,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:48:46,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:48:46,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:48,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:48,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:48,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:48,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:48:48,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:48:48,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:49,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:49,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:49,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:49,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:48:49,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:48:49,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:51,732 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:48:51,750 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:48:51,833 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.982 +2025-10-02 01:48:51,834 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 01:48:51,834 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:48:51,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:51,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:51,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:52,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:48:52,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:48:52,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:52,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:52,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:52,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:52,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:48:52,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:48:52,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:52,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:52,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:52,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:52,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:48:52,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:48:52,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:53,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:53,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:53,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:53,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:48:53,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:48:53,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:54,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:54,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:54,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:54,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:48:54,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:48:54,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:55,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:55,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:55,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:55,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:48:55,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:48:55,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:55,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:55,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:55,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:55,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:48:55,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:48:55,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:57,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:57,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:57,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:58,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:48:58,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:48:58,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:58,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:58,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:58,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:58,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:48:58,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:48:58,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:48:58,808 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:48:58,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:48:58,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:48:59,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:48:59,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 01:48:59,100 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:48:59,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:48:59,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:59,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:00,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:49:00,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:49:00,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:03,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:03,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:03,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:03,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:49:03,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:49:03,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:03,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:03,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:03,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:03,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:49:03,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:49:03,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:04,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:04,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:04,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:04,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:49:04,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:49:04,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:04,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:04,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:04,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:05,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:49:05,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:49:05,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:07,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:07,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:07,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:07,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:49:07,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:49:07,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:09,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:09,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:09,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:09,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:49:09,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:49:09,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:10,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:10,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:10,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:10,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:49:10,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:49:10,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:12,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:12,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:12,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:12,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:49:12,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:49:12,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:13,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:13,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:13,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:13,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:49:13,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:49:13,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:14,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:14,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:14,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:14,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:49:14,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:49:14,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:15,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:15,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:15,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:15,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:49:15,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:49:15,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:18,255 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:49:18,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:49:18,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:49:18,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-02 01:49:18,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-02 01:49:18,565 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:49:19,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:19,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:19,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:20,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:49:20,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:49:20,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:23,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:23,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:23,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:23,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:49:23,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:49:23,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:23,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:23,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:23,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:24,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:49:24,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:49:24,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:24,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:24,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:24,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:24,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:49:24,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:49:24,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:27,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:27,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:27,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:28,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:49:28,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:49:28,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:28,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:28,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:28,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:28,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:49:28,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:49:28,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:30,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:30,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:30,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:30,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:49:30,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:49:30,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:31,777 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:49:31,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:49:31,899 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.857 +2025-10-02 01:49:31,900 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 01:49:31,900 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 01:49:33,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:33,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:33,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:33,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:49:33,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:49:33,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:34,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:34,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:34,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:34,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:49:34,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:49:34,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:35,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:35,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:35,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:36,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:49:36,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:49:36,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:36,118 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:49:36,134 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:49:36,213 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.627 +2025-10-02 01:49:36,213 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 01:49:36,214 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:49:36,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:36,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:36,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:36,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:49:36,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:49:36,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:38,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:38,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:39,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:39,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:49:39,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:49:39,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:40,174 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:49:40,202 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:49:40,286 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.395 +2025-10-02 01:49:40,286 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 01:49:40,288 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:49:40,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:40,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:40,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:40,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:49:40,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:49:40,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:44,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:44,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:44,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:44,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:49:44,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:49:44,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:47,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:47,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:47,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:47,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:49:47,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:49:47,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:48,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:48,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:48,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:48,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:49:48,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:49:48,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:50,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:50,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:51,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:51,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:49:51,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:49:51,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:51,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:51,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:51,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:51,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:49:51,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:49:51,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:51,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:51,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:51,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:52,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:49:52,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:49:52,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:52,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:52,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:52,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:52,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:49:52,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:49:52,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:52,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:52,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:52,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:52,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:49:52,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:49:52,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:56,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:56,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:56,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:57,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:49:57,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:49:57,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:57,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:57,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:57,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:57,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:49:57,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:49:57,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:57,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:57,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:57,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:58,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:49:58,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:49:58,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:49:58,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:49:58,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:58,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:58,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:49:58,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:49:58,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:00,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:00,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:00,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:00,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:50:00,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:50:00,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:01,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:01,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:01,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:01,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:50:01,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:50:01,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:03,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:03,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:03,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:04,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:50:04,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:50:04,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:04,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:04,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:04,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:04,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:50:04,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:50:04,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:04,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:04,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:04,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:04,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:50:04,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:50:04,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:07,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:07,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:07,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:08,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:50:08,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:50:08,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:09,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:09,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:09,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:09,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:50:09,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:50:09,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:10,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:10,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:10,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:10,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:50:10,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:50:10,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:10,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:10,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:10,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:10,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:50:10,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:50:10,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:12,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:12,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:12,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:12,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:50:12,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:50:12,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:13,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:13,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:13,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:14,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:50:14,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:50:14,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:16,001 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:50:16,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:50:16,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:50:16,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 01:50:16,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 01:50:16,301 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:50:16,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:16,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:16,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:16,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:50:16,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:50:16,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:18,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:18,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:18,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:18,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:50:18,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:50:18,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:22,171 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:50:22,197 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:50:22,285 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.528 +2025-10-02 01:50:22,285 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 01:50:22,285 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:50:22,581 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:50:22,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:50:22,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:50:22,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-02 01:50:22,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-02 01:50:22,892 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:50:23,665 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:50:23,688 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:50:23,772 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.942 +2025-10-02 01:50:23,773 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 01:50:23,773 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:50:24,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:24,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:24,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:24,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:50:24,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:50:24,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:25,997 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:50:26,023 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:50:26,102 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.638 +2025-10-02 01:50:26,102 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 01:50:26,102 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 01:50:26,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:26,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:26,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:26,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 01:50:26,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 01:50:26,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:26,842 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:50:26,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:50:26,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:50:27,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 01:50:27,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 01:50:27,119 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:50:28,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:28,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:28,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:29,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:50:29,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:50:29,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:30,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:30,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:30,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:30,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:50:30,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:50:30,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:30,618 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:50:30,658 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:50:30,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.893 +2025-10-02 01:50:30,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 01:50:30,747 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 01:50:32,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:32,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:32,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:32,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:50:32,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:50:32,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:32,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:32,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:32,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:32,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:50:32,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:50:32,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:36,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:36,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:36,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:36,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:50:36,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:50:36,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:36,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:36,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:36,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:36,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:50:36,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:50:36,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:40,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:40,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:40,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:40,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:50:40,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:50:40,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:42,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:42,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:42,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:42,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:50:42,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:50:42,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:43,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:43,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:43,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:43,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:50:43,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:50:43,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:43,401 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:50:43,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:50:43,500 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.941 +2025-10-02 01:50:43,500 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 01:50:43,500 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 01:50:47,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:47,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:47,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:47,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:50:47,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:50:47,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:51,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:51,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:51,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:51,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:50:51,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:50:51,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:56,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:56,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:56,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:56,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:50:56,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:50:56,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:50:57,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:50:57,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:57,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:57,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:50:57,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:50:57,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:01,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:01,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:01,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:01,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:51:01,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:51:01,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:02,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:02,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:02,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:02,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:51:02,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:51:02,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:06,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:06,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:06,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:06,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:51:06,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:51:06,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:10,490 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:51:10,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:51:10,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:51:10,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +2025-10-02 01:51:10,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +2025-10-02 01:51:10,755 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:51:12,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:12,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:12,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:12,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:51:12,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:51:12,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:13,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:13,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:13,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:13,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:51:13,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:51:13,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:13,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:51:13,497 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 801, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:51:13,582 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.714 +2025-10-02 01:51:13,582 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 01:51:13,582 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:51:15,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:15,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:15,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:15,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:51:15,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:51:15,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:16,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:16,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:16,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:17,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:51:17,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:51:17,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:18,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:18,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:18,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:18,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:51:18,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:51:18,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:19,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:19,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:19,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:19,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 01:51:19,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 01:51:19,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:19,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:19,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:19,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:19,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:51:19,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:51:19,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:23,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:23,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:23,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:23,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:51:23,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:51:23,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:23,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:23,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:23,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:23,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:51:23,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:51:23,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:24,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:24,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:24,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:24,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:51:24,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:51:24,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:25,173 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:51:25,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:51:25,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:51:25,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.258s +2025-10-02 01:51:25,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.258s (avg: 0.129s/image) +2025-10-02 01:51:25,432 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:51:29,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:29,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:29,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:29,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:51:29,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:51:29,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:30,137 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:51:30,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:51:30,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:51:30,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:51:30,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:51:30,421 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:51:31,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:31,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:31,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:31,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:51:31,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:51:31,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:32,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:32,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:32,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:32,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:51:32,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:51:32,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:34,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:34,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:34,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:34,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:51:34,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:51:34,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:34,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:34,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:34,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:35,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:51:35,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:51:35,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:37,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:37,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:37,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:37,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:51:37,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:51:37,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:37,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:37,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:37,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:37,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:51:37,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:51:37,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:40,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:40,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:40,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:40,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:51:40,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:51:40,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:44,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:44,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:44,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:44,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:51:44,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:51:44,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:45,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:45,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:45,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:45,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:51:45,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:51:45,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:46,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:46,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:46,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:46,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:51:46,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:51:46,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:47,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:47,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:47,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:47,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:51:47,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:51:47,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:50,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:50,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:50,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:50,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:51:50,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:51:50,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:51,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:51,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:51,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:51,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:51:51,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:51:51,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:53,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:53,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:53,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:53,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:51:53,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:51:53,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:51:57,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:51:57,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:57,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:57,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:51:57,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:51:57,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:00,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:00,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:00,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:00,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:52:00,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:52:00,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:02,104 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:52:02,138 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:52:02,221 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.573 +2025-10-02 01:52:02,221 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 01:52:02,221 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:52:03,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:03,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:03,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:03,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:52:03,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:52:03,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:04,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:04,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:04,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:04,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:52:04,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:52:04,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:07,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:07,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:07,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:07,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:52:07,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:52:07,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:10,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:10,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:10,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:10,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:52:10,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:52:10,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:11,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:11,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:11,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:11,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:52:11,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:52:11,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:12,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:12,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:12,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:12,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:52:12,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:52:12,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:17,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:17,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:17,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:17,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:52:17,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:52:17,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:18,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:18,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:18,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:18,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:52:18,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:52:18,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:20,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:20,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:20,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:20,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:52:20,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:52:20,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:21,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:21,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:21,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:21,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:52:21,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:52:21,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:22,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:22,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:22,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:22,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:52:22,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:52:22,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:25,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:25,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:25,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:25,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:52:25,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:52:25,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:27,415 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:52:27,446 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:52:27,538 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.769 +2025-10-02 01:52:27,538 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 01:52:27,540 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 01:52:28,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:28,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:28,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:28,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:52:28,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:52:28,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:28,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:28,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:28,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:29,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:52:29,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:52:29,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:29,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:29,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:29,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:29,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:52:29,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:52:29,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:33,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:33,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:33,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:33,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:52:33,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:52:33,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:35,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:35,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:35,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:35,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:52:35,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:52:35,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:35,518 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:52:35,543 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:52:35,630 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.532 +2025-10-02 01:52:35,630 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 01:52:35,630 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 01:52:35,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:35,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:35,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:36,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:52:36,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:52:36,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:37,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:37,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:37,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:37,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:52:37,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:52:37,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:38,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:38,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:38,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:38,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:52:38,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:52:38,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:39,327 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:52:39,346 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:52:39,429 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.609 +2025-10-02 01:52:39,429 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 01:52:39,429 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:52:39,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:39,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:39,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:39,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:52:39,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:52:39,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:40,389 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:52:40,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:52:40,491 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.183 +2025-10-02 01:52:40,491 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 01:52:40,491 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 01:52:41,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:41,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:41,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:41,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:52:41,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:52:41,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:42,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:42,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:42,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:42,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:52:42,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:52:42,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:45,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:45,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:45,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:45,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:52:45,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:52:45,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:46,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:46,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:46,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:46,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:52:46,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:52:46,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:48,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:48,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:48,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:48,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:52:48,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:52:48,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:51,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:51,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:51,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:51,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:52:51,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:52:51,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:53,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:53,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:53,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:53,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:52:53,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:52:53,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:57,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:57,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:57,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:57,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:52:57,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:52:57,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:58,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:58,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:58,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:58,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:52:58,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:52:58,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:52:58,510 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:52:58,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:52:58,633 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.930 +2025-10-02 01:52:58,633 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-02 01:52:58,634 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 01:52:58,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:52:58,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:58,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:59,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:52:59,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:52:59,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:01,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:01,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:01,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:01,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:53:01,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:53:01,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:02,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:02,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:02,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:03,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:53:03,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:53:03,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:04,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:04,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:04,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:04,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:53:04,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:53:04,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:04,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:04,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:04,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:04,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:53:04,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:53:04,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:05,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:05,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:05,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:05,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:53:05,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:53:05,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:05,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:05,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:05,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:05,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:53:05,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:53:05,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:07,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:07,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:07,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:07,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:53:07,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:53:07,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:08,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:08,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:08,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:08,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:53:08,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:53:08,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:08,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:08,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:08,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:08,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:53:08,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:53:08,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:09,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:09,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:09,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:09,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:53:09,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:53:09,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:10,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:10,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:10,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:10,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:53:10,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:53:10,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:12,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:12,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:12,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:12,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:53:12,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:53:12,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:13,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:13,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:13,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:13,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:53:13,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:53:13,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:15,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:15,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:16,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:16,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:53:16,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:53:16,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:16,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:16,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:16,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:16,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:53:16,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:53:16,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:17,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:17,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:17,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:18,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:53:18,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:53:18,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:20,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:20,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:20,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:20,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:53:20,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:53:20,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:22,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:22,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:22,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:22,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:53:22,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:53:22,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:24,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:24,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:24,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:24,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:53:24,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:53:24,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:28,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:28,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:28,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:28,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:53:28,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:53:28,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:30,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:30,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:30,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:30,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:53:30,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:53:30,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:32,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:32,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:32,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:32,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:53:32,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:53:32,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:33,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:33,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:33,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:33,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 01:53:33,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 01:53:33,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:33,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:33,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:33,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:33,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:53:33,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:53:33,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:34,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:34,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:34,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:34,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:53:34,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:53:34,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:35,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:35,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:35,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:35,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:53:35,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:53:35,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:36,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:36,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:36,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:36,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:53:36,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:53:36,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:38,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:38,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:38,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:38,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:53:38,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:53:38,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:38,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:38,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:38,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:38,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:53:38,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:53:38,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:41,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:41,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:41,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:41,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:53:41,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:53:41,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:42,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:42,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:42,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:42,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:53:42,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:53:42,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:43,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:43,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:43,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:43,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:53:43,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:53:43,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:45,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:45,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:45,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:45,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:53:45,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:53:45,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:46,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:46,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:46,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:46,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:53:46,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:53:46,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:48,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:48,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:48,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:48,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:53:48,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:53:48,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:48,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:48,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:48,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:48,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:53:48,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:53:48,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:51,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:51,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:51,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:51,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:53:51,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:53:51,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:51,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:51,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:51,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:52,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:53:52,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:53:52,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:52,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:52,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:52,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:52,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:53:52,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:53:52,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:53,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:53,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:53,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:53,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:53:53,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:53:53,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:53,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:53,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:53,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:53,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:53:53,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:53:53,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:54,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:54,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:54,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:54,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:53:54,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:53:54,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:55,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:55,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:55,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:55,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:53:55,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:53:55,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:56,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:56,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:56,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:56,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:53:56,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:53:56,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:58,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:58,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:58,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:58,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:53:58,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:53:58,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:53:59,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:53:59,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:59,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:59,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:53:59,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:53:59,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:00,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:00,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:00,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:00,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:54:00,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:54:00,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:01,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:01,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:01,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:01,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:54:01,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:54:01,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:02,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:02,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:02,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:02,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:54:02,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:54:02,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:03,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:03,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:03,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:03,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:54:03,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:54:03,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:04,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:04,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:04,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:04,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:54:04,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:54:04,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:05,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:05,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:05,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:05,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:54:05,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:54:05,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:06,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:06,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:06,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:06,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:54:06,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:54:06,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:08,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:08,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:08,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:09,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:54:09,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:54:09,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:09,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:09,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:09,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:09,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:54:09,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:54:09,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:09,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:09,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:09,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:09,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:54:09,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:54:09,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:11,528 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:54:11,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:54:11,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:54:11,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 01:54:11,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-02 01:54:11,799 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:54:12,729 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:54:12,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:54:12,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:54:13,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 01:54:13,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-02 01:54:13,004 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:54:16,023 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:16,060 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:16,165 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.494 +2025-10-02 01:54:16,166 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-02 01:54:16,168 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-02 01:54:16,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:16,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:17,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:17,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:54:17,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:54:17,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:17,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:17,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:17,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:17,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:54:17,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:54:17,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:17,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:17,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:17,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:18,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:54:18,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:54:18,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:18,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:18,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:18,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:18,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:54:18,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:54:18,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:20,581 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:20,609 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:20,693 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.983 +2025-10-02 01:54:20,694 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 01:54:20,694 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:54:21,569 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:21,600 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:21,682 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.923 +2025-10-02 01:54:21,683 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 01:54:21,683 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:54:23,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:23,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:23,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:23,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:54:23,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:54:23,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:24,484 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:24,511 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:24,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.135 +2025-10-02 01:54:24,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 01:54:24,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:54:25,341 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:25,361 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:25,437 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.725 +2025-10-02 01:54:25,437 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 01:54:25,438 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 01:54:26,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:26,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:26,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:26,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:54:26,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:54:26,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:27,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:27,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:27,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:27,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:54:27,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:54:27,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:28,152 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:28,175 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:28,252 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.085 +2025-10-02 01:54:28,252 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 01:54:28,252 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:54:28,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:28,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:28,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:28,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:54:28,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:54:28,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:29,185 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:29,205 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:29,277 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.818 +2025-10-02 01:54:29,277 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-02 01:54:29,277 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 01:54:30,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:30,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:30,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:30,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:54:30,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:54:30,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:36,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:36,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:36,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:36,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:54:36,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:54:36,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:41,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:41,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:41,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:41,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:54:41,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:54:41,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:41,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:41,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:41,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:42,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:54:42,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:54:42,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:46,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:46,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:46,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:46,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:54:46,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:54:46,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:51,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:51,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:51,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:51,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:54:51,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:54:51,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:54:57,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:54:57,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:57,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:57,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:54:57,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:54:57,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:00,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:00,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:00,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:00,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:55:00,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:55:00,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:01,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:01,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:01,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:01,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:55:01,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:55:01,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:06,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:06,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:06,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:06,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:55:06,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:55:06,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:07,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:07,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:07,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:07,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:55:07,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:55:07,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:07,463 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:55:07,485 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:55:07,567 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.020 +2025-10-02 01:55:07,567 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 01:55:07,569 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:55:07,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:07,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:07,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:07,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:55:07,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:55:07,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:12,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:12,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:12,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:12,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:55:12,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:55:12,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:13,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:13,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:13,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:13,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:55:13,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:55:13,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:16,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:16,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:16,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:16,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:55:16,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:55:16,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:17,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:17,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:17,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:17,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:55:17,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:55:17,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:18,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:18,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:18,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:18,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:55:18,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:55:18,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:19,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:19,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:19,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:19,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:55:19,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:55:19,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:19,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:19,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:19,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:20,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:55:20,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:55:20,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:23,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:23,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:23,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:24,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:55:24,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:55:24,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:25,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:25,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:25,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:26,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:55:26,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:55:26,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:26,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:26,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:26,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:27,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:55:27,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:55:27,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:27,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:27,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:27,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:27,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:55:27,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:55:27,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:27,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:27,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:27,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:28,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:55:28,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:55:28,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:28,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:28,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:28,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:28,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:55:28,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:55:28,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:33,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:33,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:33,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:33,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:55:33,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:55:33,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:34,371 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:55:34,404 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:55:34,503 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.813 +2025-10-02 01:55:34,503 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-02 01:55:34,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-02 01:55:34,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:34,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:34,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:34,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:55:34,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:55:34,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:36,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:36,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:36,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:36,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:55:36,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:55:36,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:37,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:37,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:37,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:37,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:55:37,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:55:37,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:38,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:38,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:38,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:38,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:55:38,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:55:38,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:41,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:41,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:41,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:42,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:55:42,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:55:42,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:43,575 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:55:43,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:55:43,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:55:43,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 01:55:43,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 01:55:43,860 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:55:46,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:46,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:46,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:46,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:55:46,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:55:46,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:47,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:47,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:47,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:47,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:55:47,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:55:47,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:48,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:48,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:48,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:48,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:55:48,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:55:48,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:48,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:48,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:48,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:48,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:55:48,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:55:48,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:53,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:53,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:53,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:53,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:55:53,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:55:53,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:56,139 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:55:56,162 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:55:56,245 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.163 +2025-10-02 01:55:56,245 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 01:55:56,246 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:55:57,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:57,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:57,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:57,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:55:57,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:55:57,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:58,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:58,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:58,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:58,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:55:58,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:55:58,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:55:59,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:55:59,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:59,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:59,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:55:59,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:55:59,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:01,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:01,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:01,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:01,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:56:01,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:56:01,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:03,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:03,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:03,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:04,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:56:04,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:56:04,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:04,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:04,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:04,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:04,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:56:04,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:56:04,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:06,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:06,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:06,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:06,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:56:06,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:56:06,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:12,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:12,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:12,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:12,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:56:12,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:56:12,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:13,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:13,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:13,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:13,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:56:13,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:56:13,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:15,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:15,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:15,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:16,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:56:16,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:56:16,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:16,204 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:56:16,234 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:56:16,318 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.869 +2025-10-02 01:56:16,318 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 01:56:16,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 01:56:17,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:17,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:17,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:17,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:56:17,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:56:17,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:19,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:19,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:19,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:19,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:56:19,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:56:19,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:21,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:21,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:21,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:21,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:56:21,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:56:21,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:21,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:21,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:21,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:22,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:56:22,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:56:22,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:22,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:22,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:22,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:22,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:56:22,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:56:22,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:25,122 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:56:25,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:56:25,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:56:25,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 01:56:25,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-02 01:56:25,405 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:56:26,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:26,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:26,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:26,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:56:26,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:56:26,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:27,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:27,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:27,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:27,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:56:27,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:56:27,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:29,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:29,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:29,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:29,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:56:29,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:56:29,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:31,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:31,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:31,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:31,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:56:31,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:56:31,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:31,895 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:56:31,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:56:31,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:56:32,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 01:56:32,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-02 01:56:32,194 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:56:32,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:32,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:32,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:32,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:56:32,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:56:32,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:37,640 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:56:37,669 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:56:37,761 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.967 +2025-10-02 01:56:37,761 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 01:56:37,763 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 01:56:39,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:39,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:39,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:39,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:56:39,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:56:39,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:39,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:39,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:40,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:40,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:56:40,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:56:40,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:42,543 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:56:42,570 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:56:42,674 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.921 +2025-10-02 01:56:42,674 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +2025-10-02 01:56:42,675 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-02 01:56:45,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:45,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:45,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:46,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:56:46,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:56:46,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:46,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:56:46,602 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:56:46,697 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.030 +2025-10-02 01:56:46,698 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 01:56:46,699 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 01:56:48,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:48,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:48,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:48,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:56:48,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:56:48,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:48,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:48,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:48,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:48,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:56:48,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:56:48,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:51,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:51,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:51,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:51,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:56:51,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:56:51,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:53,791 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:56:53,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:56:53,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:56:54,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 01:56:54,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-02 01:56:54,094 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:56:54,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:54,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:54,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:54,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:56:54,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:56:54,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:56,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:56,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:56,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:57,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:56:57,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:56:57,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:57,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:57,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:57,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:57,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:56:57,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:56:57,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:59,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:59,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:59,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:59,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:56:59,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:56:59,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:59,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:59,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:59,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:59,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:56:59,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:56:59,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:56:59,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:56:59,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:00,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:00,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:57:00,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:57:00,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:02,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:02,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:02,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:02,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:57:02,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:57:02,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:02,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:02,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:02,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:02,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:57:02,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:57:02,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:03,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:03,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:03,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:03,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:57:03,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:57:03,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:04,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:04,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:04,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:04,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:57:04,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:57:04,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:04,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:04,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:04,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:04,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:57:04,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:57:04,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:04,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:04,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:04,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:05,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:57:05,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:57:05,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:08,265 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:57:08,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:57:08,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:57:08,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 01:57:08,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 01:57:08,569 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:57:10,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:10,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:10,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:10,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:57:10,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:57:10,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:11,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:11,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:11,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:11,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:57:11,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:57:11,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:12,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:12,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:12,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:12,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:57:12,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:57:12,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:12,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:12,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:12,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:12,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 01:57:12,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 01:57:12,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:13,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:13,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:13,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:13,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:57:13,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:57:13,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:14,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:14,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:14,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:14,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:57:14,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:57:14,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:16,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:16,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:16,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:16,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:57:16,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:57:16,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:16,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:16,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:16,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:16,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:57:16,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:57:16,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:17,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:17,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:17,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:17,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:57:17,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:57:17,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:18,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:18,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:18,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:18,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:57:18,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:57:18,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:21,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:21,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:21,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:21,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:57:21,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:57:21,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:21,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:21,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:22,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:22,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:57:22,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:57:22,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:22,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:22,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:22,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:22,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:57:22,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:57:22,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:23,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:23,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:23,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:23,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:57:23,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:57:23,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:24,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:24,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:24,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:24,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:57:24,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:57:24,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:26,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:26,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:26,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:26,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:57:26,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:57:26,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:26,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:26,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:26,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:27,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:57:27,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:57:27,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:27,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:27,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:27,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:27,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:57:27,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:57:27,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:28,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:28,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:28,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:28,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:57:28,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:57:28,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:29,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:29,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:29,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:30,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:57:30,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:57:30,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:30,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:30,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:31,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:31,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:57:31,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:57:31,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:31,837 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:57:31,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:57:31,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:57:32,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 01:57:32,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-02 01:57:32,136 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:57:32,362 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:57:32,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:57:32,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:57:32,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 01:57:32,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-02 01:57:32,637 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:57:36,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:36,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:36,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:36,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:57:36,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:57:36,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:36,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:36,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:36,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:36,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:57:36,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:57:36,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:36,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:36,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:36,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:36,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:57:36,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:57:36,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:37,123 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:57:37,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:57:37,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:57:37,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 01:57:37,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-02 01:57:37,394 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:57:40,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:40,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:40,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:40,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:57:40,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:57:40,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:41,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:41,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:41,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:41,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:57:41,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:57:41,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:41,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:41,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:41,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:41,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:57:41,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:57:41,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:42,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:42,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:42,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:42,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:57:42,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:57:42,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:42,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:42,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:42,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:42,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:57:42,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:57:42,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:43,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:43,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:43,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:43,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:57:43,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:57:43,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:45,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:45,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:45,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:46,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:57:46,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:57:46,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:46,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:46,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:46,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:46,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:57:46,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:57:46,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:46,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:46,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:46,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:47,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:57:47,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:57:47,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:48,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:48,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:48,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:48,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:57:48,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:57:48,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:49,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:49,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:49,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:50,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:57:50,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:57:50,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:51,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:51,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:51,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:51,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:57:51,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:57:51,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:52,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:52,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:52,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:52,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:57:52,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:57:52,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:54,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:54,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:54,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:54,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:57:54,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:57:54,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:55,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:55,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:55,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:55,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:57:55,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:57:55,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:56,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:56,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:56,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:56,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:57:56,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:57:56,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:56,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:57:56,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:56,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:56,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:57:56,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:57:56,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:57:59,658 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:57:59,703 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:57:59,792 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.227 +2025-10-02 01:57:59,792 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 01:57:59,795 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 01:58:00,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:00,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:00,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:00,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:58:00,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:58:00,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:01,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:01,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:01,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:01,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:58:01,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:58:01,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:01,831 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:58:01,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:58:01,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:58:02,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.318s +2025-10-02 01:58:02,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.318s (avg: 0.159s/image) +2025-10-02 01:58:02,150 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:58:04,293 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:58:04,330 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:58:04,420 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.922 +2025-10-02 01:58:04,420 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 01:58:04,422 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 01:58:06,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:06,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:06,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:06,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 01:58:06,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 01:58:06,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:07,008 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:58:07,033 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(923, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:58:07,119 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.912 +2025-10-02 01:58:07,119 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 01:58:07,120 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:58:07,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:07,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:07,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:07,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:58:07,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:58:07,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:07,610 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:58:07,626 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:58:07,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.463 +2025-10-02 01:58:07,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-02 01:58:07,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-02 01:58:07,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:07,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:07,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:07,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.123s +2025-10-02 01:58:07,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.123s (avg: 0.123s/image) +2025-10-02 01:58:07,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:12,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:12,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:12,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:12,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:58:12,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:58:12,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:12,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:12,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:13,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:13,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:58:13,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:58:13,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:13,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:13,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:13,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:13,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:58:13,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:58:13,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:16,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:16,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:16,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:16,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:58:16,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:58:16,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:17,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:17,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:17,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:18,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:58:18,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:58:18,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:22,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:22,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:22,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:22,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:58:22,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:58:22,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:25,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:25,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:25,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:25,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:58:25,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:58:25,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:26,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:26,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:26,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:26,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:58:26,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:58:26,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:28,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:28,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:28,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:29,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:58:29,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:58:29,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:30,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:30,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:30,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:30,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:58:30,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:58:30,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:35,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:35,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:35,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:35,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:58:35,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:58:35,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:38,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:38,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:38,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:38,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 01:58:38,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 01:58:38,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:40,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:40,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:40,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:40,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:58:40,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:58:40,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:42,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:42,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:42,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:42,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:58:42,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:58:42,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:45,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:45,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:45,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:45,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:58:45,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:58:45,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:46,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:46,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:46,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:46,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:58:46,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:58:46,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:50,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:50,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:50,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:50,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:58:50,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:58:50,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:55,093 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:58:55,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:58:55,189 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.258 +2025-10-02 01:58:55,190 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 01:58:55,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 01:58:55,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:55,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:55,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:55,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:58:55,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:58:55,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:58:58,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:58:58,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:58,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:58,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:58:58,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:58:58,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:00,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:00,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:00,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:00,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:59:00,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:59:00,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:03,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:03,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:03,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:03,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:59:03,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:59:03,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:05,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:05,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:05,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:05,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:59:05,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:59:05,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:07,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:07,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:07,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:08,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:59:08,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:59:08,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:10,416 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:59:10,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:59:10,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:59:10,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-02 01:59:10,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-02 01:59:10,727 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:59:13,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:13,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:14,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:14,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:59:14,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:59:14,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:15,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:15,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:15,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:15,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:59:15,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:59:15,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:18,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:18,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:18,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:18,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:59:18,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:59:18,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:18,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:18,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:18,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:19,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:59:19,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:59:19,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:19,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:19,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:19,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:19,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:59:19,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:59:19,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:20,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:20,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:20,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:20,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:59:20,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:59:20,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:23,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:23,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:23,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:23,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:59:23,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:59:23,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:23,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:23,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:23,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:23,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:59:23,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:59:23,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:24,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:24,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:24,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:25,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:59:25,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:59:25,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:25,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:25,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:25,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:25,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:59:25,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:59:25,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:26,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:26,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:26,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:26,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:59:26,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:59:26,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:27,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:27,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:27,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:27,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:59:27,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:59:27,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:28,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:28,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:28,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:28,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:59:28,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:59:28,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:28,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:28,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:28,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:28,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:59:28,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:59:28,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:30,046 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:59:30,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:59:30,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:59:30,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-02 01:59:30,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-02 01:59:30,320 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:59:31,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:31,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:31,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:31,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:59:31,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:59:31,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:32,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:32,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:32,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:32,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:59:32,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:59:32,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:33,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:33,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:33,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:33,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:59:33,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:59:33,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:34,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:34,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:34,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:34,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:59:34,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:59:34,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:36,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:36,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:36,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:36,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:59:36,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:59:36,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:36,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:36,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:36,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:36,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:59:36,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:59:36,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:36,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:36,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:36,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:36,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:59:36,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:59:36,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:37,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:37,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:37,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:37,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:59:37,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:59:37,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:41,880 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:59:41,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:59:41,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:59:42,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:59:42,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 01:59:42,166 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:59:42,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:42,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:42,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:42,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:59:42,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:59:42,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:42,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:42,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:42,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:42,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 01:59:42,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 01:59:42,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:47,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:47,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:47,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:47,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:59:47,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:59:47,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:47,565 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 01:59:47,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:59:47,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:59:47,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:59:47,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:59:47,848 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 01:59:48,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:48,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:48,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:48,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:59:48,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:59:48,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:48,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:48,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:48,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:48,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:59:48,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:59:48,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:49,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:49,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:49,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:49,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:59:49,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:59:49,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:50,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:50,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:50,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:50,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:59:50,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:59:50,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:52,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:52,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:52,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:52,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:59:52,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:59:52,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:52,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:52,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:52,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:52,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:59:52,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:59:52,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:54,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:54,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:54,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:54,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:59:54,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:59:54,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:56,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:56,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:56,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:57,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:59:57,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:59:57,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:57,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:57,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:57,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:57,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:59:57,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:59:57,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:58,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:58,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:58,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:58,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:59:58,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:59:58,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 01:59:59,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 01:59:59,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:59,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:59,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:59:59,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:59:59,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:01,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:01,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:01,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:01,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:00:01,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:00:01,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:04,354 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:00:04,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:00:04,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:00:04,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 02:00:04,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 02:00:04,644 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:00:06,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:06,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:06,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:06,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:00:06,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:00:06,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:06,566 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:00:06,583 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:00:06,667 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.529 +2025-10-02 02:00:06,667 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 02:00:06,667 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:00:07,020 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:00:07,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:00:07,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:00:07,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 02:00:07,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 02:00:07,308 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:00:10,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:10,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:10,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:10,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:00:10,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:00:10,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:11,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:11,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:11,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:11,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:00:11,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:00:11,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:12,357 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:00:12,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:00:12,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:00:12,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 02:00:12,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 02:00:12,641 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:00:13,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:13,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:13,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:13,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:00:13,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:00:13,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:15,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:15,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:15,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:15,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:00:15,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:00:15,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:18,373 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:00:18,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:00:18,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:00:18,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 02:00:18,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 02:00:18,670 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:00:18,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:18,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:18,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:18,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:00:18,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:00:18,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:20,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:20,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:20,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:20,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:00:20,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:00:20,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:20,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:20,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:20,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:21,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:00:21,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:00:21,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:22,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:22,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:22,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:23,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:00:23,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:00:23,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:23,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:23,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:23,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:23,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:00:23,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:00:23,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:24,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:24,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:24,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:24,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:00:24,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:00:24,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:25,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:25,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:25,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:25,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:00:25,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:00:25,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:27,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:27,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:27,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:27,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:00:27,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:00:27,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:28,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:28,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:28,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:28,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:00:28,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:00:28,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:28,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:28,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:28,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:29,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:00:29,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:00:29,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:30,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:30,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:30,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:30,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:00:30,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:00:30,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:32,347 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:00:32,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:00:32,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:00:32,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-02 02:00:32,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-02 02:00:32,652 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:00:35,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:35,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:35,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:35,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:00:35,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:00:35,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:35,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:00:35,604 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:00:35,694 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=210.269 +2025-10-02 02:00:35,694 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 02:00:35,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 02:00:37,153 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:00:37,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:00:37,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:00:37,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 02:00:37,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-02 02:00:37,453 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:00:39,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:39,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:39,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:39,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:00:39,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:00:39,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:39,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:39,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:39,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:39,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:00:39,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:00:39,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:42,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:42,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:42,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:42,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:00:42,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:00:42,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:42,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:42,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:42,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:42,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:00:42,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:00:42,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:42,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:42,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:42,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:43,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:00:43,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:00:43,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:46,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:46,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:46,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:46,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:00:46,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:00:46,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:48,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:48,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:48,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:48,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:00:48,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:00:48,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:49,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:49,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:49,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:49,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:00:49,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:00:49,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:49,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:49,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:49,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:49,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:00:49,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:00:49,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:54,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:54,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:54,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:54,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:00:54,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:00:54,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:56,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:56,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:56,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:56,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:00:56,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:00:56,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:58,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:58,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:58,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:58,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:00:58,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:00:58,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:59,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:59,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:59,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:59,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:00:59,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:00:59,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:00:59,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:00:59,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:59,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:59,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:00:59,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:00:59,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:00,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:00,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:00,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:00,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:01:00,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:01:00,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:03,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:03,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:03,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:03,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:01:03,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:01:03,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:03,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:03,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:03,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:03,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:01:03,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:01:03,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:04,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:04,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:04,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:04,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:01:04,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:01:04,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:04,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:04,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:04,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:04,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:01:04,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:01:04,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:06,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:06,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:06,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:06,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:01:06,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:01:06,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:06,986 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:01:07,029 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:01:07,127 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.851 +2025-10-02 02:01:07,128 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-02 02:01:07,130 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-02 02:01:08,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:08,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:08,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:08,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:01:08,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:01:08,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:10,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:10,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:10,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:10,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:01:10,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:01:10,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:12,295 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:01:12,317 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(641, 641, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:01:12,390 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.253 +2025-10-02 02:01:12,391 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 02:01:12,391 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:01:12,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:12,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:12,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:13,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:01:13,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:01:13,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:14,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:14,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:14,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:14,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:01:14,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:01:14,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:15,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:15,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:15,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:15,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:01:15,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:01:15,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:16,302 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:01:16,334 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:01:16,410 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.702 +2025-10-02 02:01:16,411 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:01:16,411 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:01:18,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:18,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:18,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:18,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:01:18,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:01:18,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:18,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:18,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:18,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:18,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:01:18,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:01:18,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:20,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:20,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:20,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:20,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:01:20,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:01:20,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:20,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:20,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:21,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:21,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:01:21,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:01:21,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:24,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:24,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:24,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:24,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:01:24,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:01:24,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:24,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:24,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:24,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:24,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:01:24,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:01:24,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:30,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:30,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:30,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:31,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:01:31,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:01:31,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:33,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:33,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:33,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:33,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:01:33,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:01:33,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:33,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:33,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:33,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:34,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:01:34,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:01:34,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:36,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:36,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:36,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:36,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:01:36,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:01:36,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:38,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:38,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:38,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:38,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:01:38,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:01:38,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:39,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:39,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:39,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:39,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:01:39,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:01:39,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:41,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:41,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:41,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:41,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:01:41,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:01:41,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:42,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:42,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:42,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:42,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:01:42,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:01:42,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:43,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:43,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:43,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:43,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:01:43,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:01:43,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:46,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:46,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:46,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:46,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:01:46,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:01:46,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:49,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:49,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:49,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:49,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:01:49,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:01:49,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:50,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:50,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:50,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:50,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:01:50,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:01:50,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:50,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:50,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:50,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:51,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:01:51,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:01:51,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:51,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:51,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:51,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:51,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:01:51,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:01:51,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:51,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:51,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:51,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:51,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:01:51,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:01:51,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:52,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:52,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:52,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:52,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:01:52,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:01:52,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:54,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:54,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:54,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:54,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:01:54,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:01:54,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:55,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:55,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:55,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:55,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:01:55,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:01:55,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:55,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:55,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:56,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:56,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:01:56,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:01:56,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:56,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:56,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:56,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:56,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 02:01:56,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 02:01:56,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:01:57,548 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:01:57,572 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:01:57,656 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.690 +2025-10-02 02:01:57,656 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 02:01:57,657 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:01:57,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:01:57,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:57,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:58,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:01:58,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:01:58,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:00,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:00,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:00,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:00,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:02:00,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:02:00,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:00,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:00,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:00,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:00,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:02:00,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:02:00,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:01,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:01,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:01,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:01,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:02:01,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:02:01,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:02,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:02,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:02,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:02,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:02:02,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:02:02,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:04,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:04,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:04,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:04,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:02:04,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:02:04,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:04,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:04,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:04,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:04,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:02:04,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:02:04,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:04,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:04,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:04,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:04,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:02:04,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:02:04,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:05,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:05,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:05,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:05,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:02:05,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:02:05,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:07,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:07,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:07,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:07,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:02:07,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:02:07,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:09,207 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:02:09,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:02:09,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:02:09,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-02 02:02:09,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-02 02:02:09,515 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:02:09,958 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:02:09,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:02:10,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:02:10,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 02:02:10,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-02 02:02:10,253 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:02:11,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:11,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:11,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:11,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:02:11,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:02:11,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:13,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:13,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:13,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:13,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:02:13,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:02:13,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:14,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:14,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:14,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:14,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:02:14,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:02:14,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:15,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:15,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:15,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:15,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:02:15,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:02:15,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:16,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:16,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:16,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:16,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:02:16,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:02:16,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:16,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:16,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:16,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:16,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:02:16,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:02:16,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:17,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:17,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:17,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:17,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:02:17,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:02:17,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:18,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:18,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:18,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:18,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:02:18,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:02:18,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:21,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:21,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:21,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:21,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:02:21,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:02:21,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:22,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:22,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:22,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:23,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:02:23,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:02:23,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:23,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:23,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:23,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:23,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:02:23,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:02:23,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:24,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:24,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:24,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:24,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:02:24,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:02:24,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:24,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:24,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:24,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:24,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:02:24,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:02:24,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:26,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:26,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:26,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:26,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:02:26,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:02:26,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:29,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:29,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:29,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:29,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:02:29,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:02:29,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:29,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:29,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:29,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:29,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:02:29,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:02:29,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:31,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:31,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:31,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:31,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:02:31,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:02:31,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:34,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:34,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:34,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:34,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:02:34,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:02:34,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:35,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:35,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:35,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:35,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:02:35,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:02:35,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:35,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:35,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:35,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:35,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:02:35,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:02:35,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:37,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:37,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:37,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:37,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:02:37,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:02:37,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:41,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:41,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:41,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:42,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:02:42,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:02:42,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:42,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:42,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:42,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:42,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:02:42,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:02:42,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:45,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:45,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:45,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:46,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:02:46,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:02:46,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:46,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:46,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:46,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:46,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:02:46,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:02:46,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:49,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:49,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:49,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:49,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:02:49,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:02:49,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:50,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:50,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:50,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:50,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:02:50,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:02:50,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:50,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:50,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:50,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:50,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:02:50,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:02:50,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:51,474 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:02:51,498 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:02:51,580 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.377 +2025-10-02 02:02:51,581 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 02:02:51,581 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:02:54,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:54,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:54,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:54,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:02:54,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:02:54,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:54,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:54,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:54,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:55,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:02:55,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:02:55,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:55,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:55,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:55,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:55,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:02:55,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:02:55,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:56,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:56,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:56,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:56,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:02:56,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:02:56,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:58,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:58,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:58,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:58,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:02:58,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:02:58,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:02:59,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:02:59,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:59,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:59,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:02:59,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:02:59,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:02,136 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:03:02,179 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:03:02,258 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.626 +2025-10-02 02:03:02,258 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 02:03:02,258 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:03:03,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:03,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:03,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:03,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:03:03,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:03:03,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:03,471 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:03:03,487 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:03:03,557 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.811 +2025-10-02 02:03:03,558 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-02 02:03:03,558 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-02 02:03:04,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:04,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:04,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:04,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:03:04,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:03:04,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:05,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:05,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:05,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:05,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:03:05,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:03:05,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:06,598 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:03:06,622 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:03:06,696 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=172.491 +2025-10-02 02:03:06,697 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 02:03:06,697 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 02:03:07,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:07,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:07,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:07,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:03:07,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:03:07,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:07,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:07,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:07,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:07,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:03:07,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:03:07,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:10,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:10,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:10,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:10,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:03:10,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:03:10,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:10,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:10,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:10,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:10,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:03:10,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:03:10,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:11,588 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:03:11,609 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:03:11,684 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.497 +2025-10-02 02:03:11,684 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 02:03:11,684 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 02:03:11,827 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:03:11,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:03:11,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:03:12,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 02:03:12,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-02 02:03:12,130 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:03:13,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:13,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:13,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:13,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:03:13,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:03:13,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:15,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:15,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:15,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:15,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:03:15,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:03:15,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:16,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:16,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:16,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:16,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:03:16,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:03:16,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:17,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:17,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:17,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:17,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:03:17,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:03:17,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:18,120 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:03:18,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:03:18,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:03:18,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 02:03:18,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 02:03:18,405 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:03:18,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:18,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:18,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:18,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:03:18,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:03:18,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:20,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:20,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:20,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:20,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:03:20,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:03:20,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:21,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:21,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:21,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:21,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:03:21,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:03:21,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:22,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:22,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:22,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:22,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:03:22,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:03:22,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:25,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:25,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:25,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:25,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:03:25,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:03:25,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:31,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:31,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:31,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:31,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:03:31,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:03:31,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:33,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:33,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:33,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:34,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:03:34,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:03:34,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:34,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:34,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:34,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:34,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:03:34,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:03:34,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:34,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:34,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:34,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:35,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:03:35,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:03:35,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:37,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:37,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:37,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:37,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:03:37,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:03:37,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:38,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:38,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:38,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:38,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:03:38,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:03:38,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:39,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:39,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:39,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:39,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:03:39,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:03:39,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:39,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:39,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:39,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:39,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:03:39,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:03:39,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:40,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:40,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:40,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:40,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:03:40,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:03:40,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:43,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:43,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:43,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:43,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:03:43,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:03:43,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:45,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:45,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:45,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:45,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:03:45,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:03:45,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:45,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:45,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:45,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:45,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:03:45,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:03:45,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:46,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:46,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:46,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:46,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:03:46,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:03:46,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:48,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:48,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:48,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:49,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:03:49,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:03:49,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:49,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:49,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:49,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:49,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:03:49,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:03:49,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:49,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:49,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:50,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:50,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:03:50,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:03:50,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:51,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:51,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:51,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:51,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:03:51,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:03:51,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:53,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:53,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:53,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:53,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:03:53,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:03:53,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:56,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:56,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:56,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:56,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:03:56,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:03:56,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:03:56,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:03:56,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:56,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:56,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:03:56,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:03:56,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:00,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:00,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:00,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:00,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:04:00,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:04:00,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:00,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:00,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:00,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:00,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:04:00,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:04:00,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:05,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:05,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:05,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:05,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:04:05,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:04:05,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:05,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:05,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:05,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:05,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:04:05,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:04:05,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:07,208 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:04:07,234 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:04:07,323 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.212 +2025-10-02 02:04:07,324 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 02:04:07,324 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:04:15,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:15,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:15,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:16,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:04:16,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:04:16,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:20,594 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:04:20,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:04:20,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:04:20,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 02:04:20,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-02 02:04:20,901 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:04:22,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:22,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:22,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:22,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:04:22,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:04:22,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:27,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:27,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:27,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:27,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:04:27,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:04:27,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:28,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:28,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:28,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:28,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:04:28,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:04:28,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:28,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:28,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:28,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:28,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:04:28,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:04:28,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:30,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:30,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:30,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:30,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:04:30,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:04:30,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:33,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:33,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:33,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:33,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:04:33,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:04:33,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:33,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:33,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:33,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:33,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 02:04:33,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 02:04:33,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:35,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:35,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:35,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:35,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:04:35,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:04:35,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:37,416 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:04:37,444 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:04:37,524 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.171 +2025-10-02 02:04:37,525 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 02:04:37,525 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:04:38,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:38,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:38,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:38,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:04:38,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:04:38,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:40,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:40,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:40,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:40,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:04:40,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:04:40,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:42,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:42,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:42,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:43,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:04:43,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:04:43,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:43,742 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:04:43,763 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:04:43,849 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.690 +2025-10-02 02:04:43,849 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 02:04:43,849 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 02:04:45,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:45,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:45,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:45,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:04:45,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:04:45,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:45,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:45,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:45,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:46,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:04:46,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:04:46,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:49,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:49,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:49,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:49,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:04:49,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:04:49,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:51,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:51,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:51,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:51,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:04:51,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:04:51,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:52,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:52,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:52,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:52,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:04:52,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:04:52,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:52,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:52,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:52,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:52,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:04:52,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:04:52,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:56,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:56,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:56,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:56,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:04:56,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:04:56,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:04:59,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:04:59,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:59,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:59,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:04:59,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:04:59,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:01,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:01,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:01,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:01,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:05:01,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:05:01,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:02,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:02,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:02,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:02,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:05:02,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:05:02,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:02,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:02,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:02,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:02,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:05:02,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:05:02,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:04,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:04,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:04,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:05,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:05,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:05,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:06,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:06,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:06,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:06,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:05:06,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:05:06,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:07,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:07,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:07,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:07,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:05:07,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:05:07,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:12,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:12,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:12,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:12,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:05:12,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:05:12,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:12,718 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:05:12,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:05:12,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:05:13,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 02:05:13,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 02:05:13,011 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:05:13,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:13,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:13,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:13,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:13,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:13,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:15,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:15,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:15,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:16,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:05:16,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:05:16,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:17,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:17,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:17,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:17,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:05:17,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:05:17,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:17,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:17,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:17,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:17,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:05:17,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:05:17,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:20,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:20,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:20,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:20,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:20,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:20,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:21,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:21,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:21,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:22,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:05:22,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:05:22,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:22,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:22,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:22,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:22,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:05:22,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:05:22,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:24,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:24,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:24,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:24,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:24,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:24,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:26,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:26,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:26,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:26,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:26,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:26,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:26,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:26,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:26,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:27,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:05:27,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:05:27,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:30,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:30,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:30,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:30,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:05:30,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:05:30,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:31,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:31,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:31,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:31,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:05:31,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:05:31,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:31,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:31,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:31,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:31,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:05:31,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:05:31,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:32,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:32,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:32,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:32,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:32,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:32,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:33,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:33,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:33,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:33,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:05:33,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:05:33,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:33,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:33,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:33,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:33,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-02 02:05:33,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-02 02:05:33,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:35,336 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:05:35,368 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 961, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:05:35,474 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.519 +2025-10-02 02:05:35,474 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s +2025-10-02 02:05:35,475 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-02 02:05:35,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:35,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:35,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:35,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:05:35,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:05:35,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:37,373 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:05:37,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:05:37,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:05:37,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 02:05:37,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-02 02:05:37,673 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:05:38,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:38,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:38,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:39,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:05:39,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:05:39,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:39,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:39,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:39,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:39,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:39,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:39,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:39,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:39,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:39,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:40,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:05:40,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:05:40,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:40,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:40,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:40,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:40,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:05:40,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:05:40,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:42,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:42,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:42,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:42,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:05:42,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:05:42,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:43,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:43,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:43,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:43,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:05:43,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:05:43,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:43,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:43,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:43,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:44,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:05:44,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:05:44,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:45,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:45,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:45,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:45,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:05:45,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:05:45,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:47,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:47,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:47,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:47,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:05:47,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:05:47,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:48,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:48,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:48,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:48,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:05:48,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:05:48,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:48,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:48,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:48,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:48,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:05:48,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:05:48,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:48,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:48,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:48,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:48,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:05:48,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:05:48,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:49,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:49,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:49,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:49,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-02 02:05:49,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-02 02:05:49,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:50,100 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:05:50,146 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:05:50,236 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.372 +2025-10-02 02:05:50,236 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 02:05:50,238 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 02:05:50,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:50,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:50,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:50,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-02 02:05:50,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-02 02:05:50,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:52,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:52,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:52,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:52,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:05:52,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:05:52,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:53,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:53,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:53,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:53,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:05:53,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:05:53,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:53,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:53,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:53,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:53,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:05:53,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:05:53,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:54,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:54,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:54,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:54,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:05:54,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:05:54,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:54,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:54,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:54,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:54,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:05:54,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:05:54,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:55,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:55,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:55,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:55,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:05:55,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:05:55,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:56,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:56,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:56,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:56,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:05:56,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:05:56,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:58,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:58,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:58,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:58,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:05:58,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:05:58,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:58,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:58,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:58,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:58,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:05:58,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:05:58,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:05:58,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:05:58,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:59,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:59,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:05:59,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:05:59,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:01,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:01,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:01,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:02,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:06:02,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:06:02,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:05,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:05,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:05,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:05,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:06:05,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:06:05,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:06,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:06,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:06,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:06,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:06:06,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:06:06,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:06,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:06,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:06,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:06,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:06:06,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:06:06,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:06,763 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:06:06,787 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:06:06,874 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.167 +2025-10-02 02:06:06,874 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 02:06:06,877 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:06:07,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:07,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:07,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:07,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:06:07,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:06:07,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:10,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:10,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:10,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:10,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:06:10,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:06:10,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:13,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:13,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:13,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:13,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:06:13,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:06:13,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:13,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:13,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:13,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:13,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:06:13,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:06:13,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:14,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:14,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:14,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:14,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:06:14,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:06:14,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:16,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:16,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:16,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:16,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:06:16,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:06:16,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:18,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:18,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:18,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:18,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:06:18,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:06:18,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:20,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:20,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:20,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:20,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:06:20,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:06:20,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:20,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:20,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:20,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:21,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:06:21,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:06:21,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:21,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:21,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:21,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:21,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:06:21,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:06:21,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:25,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:25,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:25,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:25,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:06:25,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:06:25,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:25,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:25,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:25,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:25,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:06:25,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:06:25,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:27,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:27,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:27,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:27,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:06:27,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:06:27,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:29,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:29,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:29,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:29,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 02:06:29,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 02:06:29,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:29,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:29,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:29,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:30,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:06:30,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:06:30,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:30,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:30,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:30,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:30,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:06:30,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:06:30,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:32,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:32,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:32,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:32,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:06:32,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:06:32,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:33,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:33,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:33,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:33,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:06:33,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:06:33,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:36,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:36,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:36,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:36,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:06:36,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:06:36,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:38,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:38,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:38,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:38,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:06:38,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:06:38,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:38,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:38,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:38,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:39,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:06:39,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:06:39,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:39,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:39,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:39,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:39,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:06:39,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:06:39,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:41,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:41,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:42,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:42,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:06:42,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:06:42,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:43,782 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:06:43,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:06:43,907 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.411 +2025-10-02 02:06:43,907 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-02 02:06:43,909 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 02:06:44,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:44,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:44,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:44,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:06:44,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:06:44,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:45,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:45,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:45,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:45,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:06:45,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:06:45,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:46,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:46,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:46,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:46,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:06:46,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:06:46,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:47,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:47,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:47,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:47,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:06:47,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:06:47,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:48,466 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:06:48,494 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:06:48,578 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=222.813 +2025-10-02 02:06:48,578 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 02:06:48,578 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:06:48,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:48,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:48,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:49,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:06:49,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:06:49,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:52,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:52,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:52,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:53,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:06:53,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:06:53,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:53,744 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:06:53,770 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:06:53,844 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.405 +2025-10-02 02:06:53,845 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 02:06:53,845 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:06:53,980 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:06:53,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:06:54,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:06:54,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 02:06:54,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 02:06:54,265 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:06:56,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:56,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:56,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:56,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:06:56,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:06:56,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:06:57,218 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:06:57,238 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:06:57,327 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.716 +2025-10-02 02:06:57,327 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 02:06:57,327 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:06:57,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:06:57,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:58,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:58,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:06:58,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:06:58,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:02,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:02,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:02,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:02,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:07:02,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:07:02,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:05,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:05,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:05,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:05,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:07:05,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:07:05,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:08,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:08,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:08,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:08,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:07:08,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:07:08,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:10,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:10,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:10,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:10,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:07:10,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:07:10,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:12,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:12,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:12,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:12,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:07:12,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:07:12,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:13,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:13,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:13,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:13,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:07:13,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:07:13,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:14,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:14,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:14,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:14,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:07:14,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:07:14,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:16,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:16,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:16,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:16,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:07:16,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:07:16,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:16,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:16,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:16,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:17,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:07:17,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:07:17,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:22,433 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:07:22,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:07:22,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:07:22,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 02:07:22,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 02:07:22,713 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:07:22,822 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:07:22,843 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:07:22,922 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.968 +2025-10-02 02:07:22,923 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 02:07:22,923 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:07:24,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:24,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:24,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:24,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:07:24,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:07:24,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:26,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:26,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:26,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:26,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:07:26,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:07:26,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:26,744 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:07:26,782 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:07:26,870 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=184.729 +2025-10-02 02:07:26,870 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 02:07:26,871 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:07:30,204 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:07:30,223 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:07:30,298 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.269 +2025-10-02 02:07:30,299 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 02:07:30,299 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 02:07:30,464 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:07:30,481 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:07:30,554 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.949 +2025-10-02 02:07:30,554 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-02 02:07:30,554 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:07:31,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:31,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:31,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:31,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:07:31,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:07:31,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:31,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:31,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:31,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:31,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:07:31,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:07:31,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:33,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:33,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:33,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:33,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:07:33,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:07:33,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:34,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:34,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:34,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:34,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:07:34,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:07:34,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:35,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:35,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:35,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:35,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:07:35,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:07:35,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:37,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:37,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:37,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:37,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:07:37,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:07:37,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:37,768 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:07:37,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:07:37,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:07:38,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-02 02:07:38,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-02 02:07:38,077 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:07:38,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:38,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:38,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:38,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:07:38,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:07:38,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:38,508 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:07:38,526 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:07:38,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.448 +2025-10-02 02:07:38,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-02 02:07:38,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-02 02:07:42,620 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:07:42,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:07:42,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:07:42,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 02:07:42,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-02 02:07:42,923 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:07:44,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:44,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:44,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:45,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:07:45,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:07:45,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:45,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:45,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:45,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:45,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:07:45,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:07:45,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:46,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:46,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:46,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:46,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:07:46,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:07:46,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:48,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:48,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:48,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:49,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:07:49,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:07:49,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:49,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:49,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:49,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:49,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:07:49,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:07:49,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:51,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:51,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:51,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:51,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:07:51,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:07:51,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:53,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:53,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:53,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:53,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:07:53,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:07:53,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:07:58,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:07:58,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:58,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:58,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:07:58,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:07:58,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:01,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:01,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:01,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:01,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:08:01,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:08:01,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:02,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:02,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:02,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:02,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:08:02,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:08:02,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:04,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:04,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:04,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:04,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:08:04,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:08:04,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:04,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:04,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:04,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:04,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:08:04,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:08:04,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:05,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:05,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:05,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:06,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:08:06,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:08:06,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:07,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:07,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:07,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:07,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:08:07,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:08:07,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:10,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:10,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:10,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:10,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:08:10,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:08:10,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:11,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:11,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:11,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:11,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:08:11,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:08:11,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:16,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:16,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:16,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:17,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:08:17,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:08:17,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:17,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:17,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:17,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:17,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:08:17,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:08:17,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:20,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:20,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:20,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:20,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:08:20,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:08:20,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:22,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:22,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:22,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:22,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:08:22,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:08:22,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:23,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:23,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:23,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:23,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:08:23,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:08:23,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:25,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:25,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:25,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:25,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:08:25,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:08:25,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:26,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:26,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:26,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:26,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:08:26,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:08:26,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:26,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:26,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:26,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:26,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:08:26,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:08:26,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:28,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:28,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:28,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:28,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:08:28,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:08:28,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:29,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:29,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:29,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:29,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:08:29,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:08:29,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:30,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:30,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:30,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:30,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 02:08:30,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 02:08:30,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:31,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:31,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:31,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:32,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:08:32,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:08:32,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:34,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:34,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:34,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:34,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:08:34,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:08:34,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:34,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:34,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:34,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:34,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:08:34,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:08:34,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:34,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:34,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:34,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:34,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:08:34,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:08:34,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:35,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:35,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:35,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:35,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:08:35,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:08:35,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:36,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:36,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:36,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:36,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:08:36,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:08:36,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:37,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:37,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:37,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:37,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:08:37,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:08:37,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:38,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:38,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:38,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:38,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:08:38,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:08:38,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:40,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:40,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:40,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:40,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:08:40,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:08:40,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:40,839 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:08:40,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:08:40,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:08:41,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 02:08:41,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 02:08:41,141 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:08:41,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:41,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:41,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:41,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:08:41,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:08:41,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:41,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:41,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:41,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:42,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:08:42,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:08:42,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:42,338 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:08:42,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:08:42,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:08:42,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 02:08:42,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 02:08:42,618 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:08:45,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:45,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:45,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:46,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:08:46,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:08:46,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:46,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:46,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:46,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:46,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:08:46,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:08:46,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:46,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:46,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:46,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:46,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:08:46,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:08:46,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:48,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:48,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:48,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:48,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:08:48,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:08:48,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:49,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:49,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:49,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:49,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:08:49,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:08:49,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:49,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:49,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:49,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:49,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:08:49,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:08:49,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:50,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:50,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:50,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:50,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:08:50,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:08:50,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:50,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:50,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:50,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:50,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:08:50,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:08:50,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:51,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:51,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:51,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:51,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:08:51,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:08:51,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:51,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:51,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:51,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:51,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:08:51,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:08:51,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:54,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:54,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:54,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:54,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:08:54,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:08:54,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:54,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:54,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:54,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:55,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:08:55,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:08:55,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:55,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:55,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:55,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:55,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:08:55,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:08:55,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:55,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:55,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:55,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:55,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:08:55,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:08:55,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:56,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:56,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:56,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:56,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:08:56,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:08:56,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:08:59,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:08:59,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:00,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:00,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:09:00,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:09:00,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:00,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:00,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:00,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:00,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:09:00,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:09:00,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:01,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:01,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:01,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:01,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:09:01,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:09:01,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:02,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:02,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:02,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:02,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:09:02,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:09:02,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:03,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:03,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:03,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:03,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:09:03,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:09:03,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:04,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:04,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:04,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:04,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:09:04,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:09:04,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:10,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:10,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:10,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:10,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:09:10,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:09:10,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:11,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:11,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:11,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:11,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-02 02:09:11,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-02 02:09:11,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:13,962 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:09:13,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:09:14,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:09:14,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 02:09:14,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-02 02:09:14,259 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:09:16,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:16,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:16,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:16,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:09:16,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:09:16,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:17,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:17,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:17,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:17,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:09:17,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:09:17,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:18,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:18,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:18,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:18,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:09:18,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:09:18,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:20,007 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:09:20,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:09:20,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:09:20,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 02:09:20,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-02 02:09:20,304 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:09:20,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:20,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:20,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:20,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:09:20,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:09:20,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:20,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:20,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:21,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:21,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:09:21,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:09:21,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:21,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:21,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:21,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:21,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:09:21,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:09:21,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:22,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:22,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:22,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:22,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:09:22,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:09:22,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:23,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:23,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:23,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:23,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:09:23,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:09:23,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:23,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:23,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:23,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:24,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:09:24,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:09:24,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:25,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:25,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:25,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:25,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:09:25,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:09:25,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:26,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:26,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:26,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:26,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:09:26,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:09:26,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:26,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:26,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:26,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:26,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:09:26,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:09:26,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:27,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:27,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:27,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:27,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:09:27,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:09:27,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:27,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:27,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:27,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:27,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:09:27,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:09:27,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:30,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:30,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:30,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:30,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:09:30,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:09:30,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:30,902 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:09:30,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:09:30,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:09:31,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 02:09:31,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 02:09:31,190 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:09:31,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:31,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:31,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:31,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:09:31,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:09:31,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:31,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:31,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:31,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:32,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:09:32,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:09:32,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:33,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:33,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:33,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:33,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:09:33,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:09:33,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:34,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:34,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:34,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:34,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:09:34,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:09:34,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:35,210 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:09:35,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:09:35,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:09:35,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 02:09:35,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 02:09:35,496 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:09:35,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:35,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:35,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:35,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:09:35,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:09:35,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:36,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:36,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:36,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:37,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:09:37,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:09:37,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:40,332 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:09:40,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:09:40,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:09:40,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 02:09:40,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 02:09:40,618 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:09:41,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:41,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:41,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:41,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:09:41,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:09:41,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:42,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:42,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:42,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:42,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:09:42,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:09:42,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:44,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:44,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:44,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:45,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:09:45,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:09:45,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:45,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:45,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:45,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:45,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:09:45,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:09:45,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:46,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:46,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:46,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:46,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:09:46,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:09:46,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:46,681 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:09:46,695 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:09:46,777 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=17.785 +2025-10-02 02:09:46,777 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 02:09:46,777 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:09:47,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:47,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:47,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:47,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:09:47,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:09:47,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:49,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:49,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:49,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:49,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:09:49,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:09:49,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:50,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:50,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:50,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:50,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:09:50,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:09:50,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:52,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:52,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:52,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:52,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:09:52,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:09:52,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:55,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:55,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:55,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:55,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:09:55,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:09:55,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:55,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:55,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:55,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:56,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:09:56,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:09:56,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:56,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:56,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:56,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:56,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:09:56,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:09:56,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:57,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:57,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:57,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:58,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:09:58,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:09:58,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:09:58,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:09:58,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:58,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:58,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:09:58,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:09:58,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:00,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:00,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:00,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:00,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:10:00,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:10:00,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:03,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:03,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:03,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:03,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:10:03,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:10:03,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:05,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:05,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:05,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:05,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:10:05,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:10:05,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:05,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:05,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:05,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:05,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:10:05,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:10:05,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:06,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:06,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:06,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:06,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:10:06,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:10:06,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:08,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:08,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:08,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:08,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:10:08,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:10:08,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:09,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:09,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:09,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:09,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:10:09,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:10:09,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:11,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:11,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:11,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:11,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:10:11,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:10:11,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:13,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:13,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:13,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:13,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:10:13,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:10:13,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:16,435 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:10:16,460 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:10:16,553 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.772 +2025-10-02 02:10:16,553 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 02:10:16,555 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 02:10:16,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:16,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:16,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:16,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:10:16,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:10:16,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:17,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:17,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:17,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:17,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:10:17,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:10:17,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:17,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:17,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:17,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:17,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:10:17,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:10:17,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:19,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:19,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:19,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:19,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:10:19,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:10:19,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:19,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:19,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:19,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:19,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:10:19,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:10:19,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:20,182 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:10:20,206 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:10:20,295 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.059 +2025-10-02 02:10:20,296 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 02:10:20,297 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 02:10:22,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:22,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:22,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:23,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:10:23,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:10:23,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:23,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:23,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:23,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:23,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:10:23,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:10:23,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:23,485 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:10:23,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:10:23,600 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.223 +2025-10-02 02:10:23,600 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 02:10:23,601 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 02:10:25,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:25,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:25,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:25,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:10:25,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:10:25,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:26,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:26,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:26,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:26,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:10:26,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:10:26,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:27,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:27,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:27,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:28,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:10:28,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:10:28,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:28,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:28,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:28,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:28,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:10:28,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:10:28,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:32,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:32,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:32,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:32,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:10:32,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:10:32,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:33,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:33,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:33,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:33,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 02:10:33,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 02:10:33,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:34,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:34,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:34,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:34,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:10:34,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:10:34,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:35,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:35,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:35,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:35,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:10:35,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:10:35,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:37,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:37,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:37,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:37,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:10:37,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:10:37,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:37,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:37,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:37,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:37,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:10:37,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:10:37,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:39,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:39,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:39,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:39,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 02:10:39,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 02:10:39,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:41,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:41,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:41,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:41,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:10:41,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:10:41,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:43,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:43,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:43,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:43,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:10:43,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:10:43,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:43,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:43,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:43,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:43,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:10:43,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:10:43,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:45,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:45,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:45,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:45,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:10:45,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:10:45,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:45,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:45,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:45,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:46,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:10:46,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:10:46,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:46,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:46,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:46,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:46,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:10:46,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:10:46,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:47,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:47,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:47,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:47,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:10:47,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:10:47,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:51,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:51,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:51,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:51,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 02:10:51,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 02:10:51,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:54,093 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:10:54,120 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:10:54,206 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.551 +2025-10-02 02:10:54,206 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 02:10:54,206 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:10:54,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:54,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:54,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:54,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:10:54,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:10:54,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:55,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:55,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:55,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:55,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:10:55,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:10:55,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:56,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:56,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:57,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:57,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:10:57,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:10:57,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:10:59,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:10:59,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:59,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:59,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:10:59,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:10:59,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:00,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:00,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:00,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:00,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:11:00,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:11:00,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:01,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:01,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:01,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:01,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:11:01,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:11:01,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:01,573 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:11:01,598 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:11:01,679 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.346 +2025-10-02 02:11:01,679 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 02:11:01,680 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:11:01,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:01,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:01,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:01,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:11:01,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:11:01,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:04,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:04,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:04,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:04,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.238s +2025-10-02 02:11:04,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.238s (avg: 0.238s/image) +2025-10-02 02:11:04,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:08,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:08,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:08,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:08,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:11:08,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:11:08,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:10,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:10,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:10,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:10,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:11:10,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:11:10,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:16,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:16,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:16,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:16,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:11:16,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:11:16,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:16,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:16,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:16,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:16,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:11:16,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:11:16,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:17,161 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:11:17,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:11:17,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:11:17,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 02:11:17,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 02:11:17,446 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:11:17,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:17,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:17,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:17,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:11:17,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:11:17,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:20,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:20,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:20,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:20,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:11:20,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:11:20,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:21,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:21,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:21,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:21,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:11:21,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:11:21,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:22,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:22,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:22,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:23,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:11:23,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:11:23,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:23,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:23,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:23,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:23,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:11:23,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:11:23,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:24,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:24,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:24,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:24,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:11:24,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:11:24,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:25,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:25,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:25,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:25,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:11:25,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:11:25,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:26,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:26,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:26,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:26,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:11:26,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:11:26,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:26,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:26,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:26,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:26,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:11:26,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:11:26,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:28,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:28,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:28,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:28,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-02 02:11:28,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-02 02:11:28,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:31,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:31,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:31,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:31,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:11:31,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:11:31,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:31,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:31,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:31,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:31,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:11:31,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:11:31,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:31,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:31,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:31,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:31,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:11:31,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:11:31,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:33,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:33,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:33,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:33,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:11:33,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:11:33,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:39,221 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:11:39,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:11:39,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:11:39,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 02:11:39,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 02:11:39,514 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:11:39,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:39,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:39,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:39,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:11:39,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:11:39,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:40,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:40,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:40,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:40,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:11:40,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:11:40,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:44,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:44,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:45,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:45,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:11:45,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:11:45,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:48,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:48,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:48,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:48,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:11:48,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:11:48,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:49,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:49,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:49,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:49,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:11:49,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:11:49,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:55,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:55,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:55,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:55,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:11:55,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:11:55,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:55,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:55,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:55,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:55,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:11:55,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:11:55,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:58,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:58,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:58,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:58,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:11:58,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:11:58,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:11:59,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:11:59,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:59,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:59,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:11:59,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:11:59,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:03,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:03,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:03,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:03,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:12:03,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:12:03,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:04,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:04,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:04,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:04,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:12:04,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:12:04,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:07,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:07,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:07,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:07,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:12:07,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:12:07,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:07,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:07,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:07,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:07,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:12:07,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:12:07,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:09,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:09,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:09,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:10,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:12:10,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:12:10,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:12,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:12,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:12,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:12,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:12:12,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:12:12,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:12,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:12,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:12,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:13,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:12:13,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:12:13,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:14,659 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:12:14,687 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:12:14,777 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.322 +2025-10-02 02:12:14,778 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 02:12:14,780 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 02:12:17,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:17,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:17,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:17,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:12:17,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:12:17,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:20,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:20,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:20,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:20,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:12:20,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:12:20,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:23,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:23,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:23,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:23,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:12:23,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:12:23,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:24,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:24,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:24,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:24,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:12:24,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:12:24,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:25,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:25,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:25,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:25,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:12:25,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:12:25,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:30,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:30,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:30,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:30,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:12:30,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:12:30,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:30,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:30,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:30,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:30,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:12:30,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:12:30,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:32,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:32,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:32,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:32,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:12:32,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:12:32,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:34,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:34,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:34,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:34,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:12:34,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:12:34,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:37,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:37,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:37,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:37,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:12:37,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:12:37,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:38,154 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:12:38,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:12:38,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:12:38,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-02 02:12:38,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +2025-10-02 02:12:38,467 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:12:39,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:12:39,583 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:12:39,663 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.818 +2025-10-02 02:12:39,664 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 02:12:39,664 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:12:42,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:42,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:42,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:42,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:12:42,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:12:42,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:42,991 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:12:43,013 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:12:43,081 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.952 +2025-10-02 02:12:43,082 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-02 02:12:43,082 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-02 02:12:46,147 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:12:46,161 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:12:46,226 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.332 +2025-10-02 02:12:46,226 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.064s +2025-10-02 02:12:46,227 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.065s +2025-10-02 02:12:47,097 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:12:47,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:12:47,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:12:47,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.331s +2025-10-02 02:12:47,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.331s (avg: 0.166s/image) +2025-10-02 02:12:47,430 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:12:51,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:51,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:51,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:51,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:12:51,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:12:51,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:53,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:53,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:53,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:53,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:12:53,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:12:53,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:55,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:55,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:55,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:55,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:12:55,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:12:55,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:56,373 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:12:56,396 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:12:56,473 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.775 +2025-10-02 02:12:56,473 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 02:12:56,473 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:12:56,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:12:56,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:56,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:57,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:12:57,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:12:57,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:12:57,284 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:12:57,313 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:12:57,401 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.603 +2025-10-02 02:12:57,401 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 02:12:57,403 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 02:13:01,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:01,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:01,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:01,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:13:01,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:13:01,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:02,016 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:13:02,048 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:13:02,143 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.196 +2025-10-02 02:13:02,143 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 02:13:02,144 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:13:04,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:04,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:04,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:05,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:13:05,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:13:05,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:05,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:05,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:05,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:05,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:13:05,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:13:05,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:06,364 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:13:06,401 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:13:06,496 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.017 +2025-10-02 02:13:06,496 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 02:13:06,497 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:13:18,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:18,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:18,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:18,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:13:18,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:13:18,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:19,798 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:13:19,822 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:13:19,912 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.043 +2025-10-02 02:13:19,912 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 02:13:19,912 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:13:24,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:24,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:24,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:25,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:13:25,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:13:25,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:25,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:25,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:25,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:25,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:13:25,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:13:25,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:30,143 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:13:30,169 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:13:30,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.961 +2025-10-02 02:13:30,250 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 02:13:30,250 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:13:30,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:30,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:30,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:30,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:13:30,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:13:30,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:31,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:31,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:31,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:31,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:13:31,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:13:31,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:34,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:34,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:34,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:34,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:13:34,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:13:34,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:35,657 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:13:35,678 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:13:35,755 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.676 +2025-10-02 02:13:35,755 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:13:35,755 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:13:36,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:36,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:36,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:36,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:13:36,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:13:36,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:37,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:37,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:37,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:37,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:13:37,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:13:37,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:37,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:37,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:37,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:38,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:13:38,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:13:38,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:40,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:40,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:40,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:40,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:13:40,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:13:40,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:40,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:40,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:40,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:40,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:13:40,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:13:40,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:42,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:42,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:42,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:42,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:13:42,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:13:42,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:43,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:43,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:43,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:43,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:13:43,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:13:43,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:44,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:44,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:44,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:44,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:13:44,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:13:44,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:45,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:45,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:45,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:45,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:13:45,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:13:45,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:45,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:45,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:45,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:45,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:13:45,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:13:45,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:47,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:47,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:47,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:47,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:13:47,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:13:47,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:48,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:48,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:48,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:48,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:13:48,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:13:48,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:48,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:48,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:48,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:48,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:13:48,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:13:48,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:51,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:51,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:51,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:51,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:13:51,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:13:51,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:51,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:51,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:51,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:51,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:13:51,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:13:51,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:52,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:52,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:52,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:52,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:13:52,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:13:52,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:53,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:53,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:53,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:53,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:13:53,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:13:53,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:54,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:54,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:54,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:54,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:13:54,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:13:54,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:54,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:54,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:54,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:55,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:13:55,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:13:55,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:57,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:57,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:57,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:57,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:13:57,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:13:57,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:58,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:58,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:58,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:58,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:13:58,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:13:58,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:13:58,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:13:58,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:58,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:58,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:13:58,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:13:58,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:00,895 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:14:00,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:00,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:01,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 02:14:01,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-02 02:14:01,202 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:14:01,626 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:14:01,654 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:14:01,740 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.667 +2025-10-02 02:14:01,741 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 02:14:01,742 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:14:02,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:02,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:02,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:02,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-02 02:14:02,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-02 02:14:02,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:03,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:03,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:03,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:03,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:14:03,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:14:03,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:04,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:04,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:04,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:04,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:14:04,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:14:04,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:05,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:05,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:05,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:05,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:14:05,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:14:05,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:05,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:05,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:06,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:06,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:14:06,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:14:06,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:06,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:06,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:06,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:06,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:14:06,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:14:06,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:08,789 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:14:08,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:08,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:09,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s +2025-10-02 02:14:09,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.323s (avg: 0.162s/image) +2025-10-02 02:14:09,114 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:14:09,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:09,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:09,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:09,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 02:14:09,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 02:14:09,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:09,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:09,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:09,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:09,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:14:09,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:14:09,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:10,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:10,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:10,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:10,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:14:10,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:14:10,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:10,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:10,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:10,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:10,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:14:10,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:14:10,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:12,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:12,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:12,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:12,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:14:12,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:14:12,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:12,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:12,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:12,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:12,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:14:12,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:14:12,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:13,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:13,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:13,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:13,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:14:13,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:14:13,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:13,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:13,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:13,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:13,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:14:13,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:14:13,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:14,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:14,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:14,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:14,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:14:14,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:14:14,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:15,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:15,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:15,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:15,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:14:15,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:14:15,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:17,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:17,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:17,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:17,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:14:17,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:14:17,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:17,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:17,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:17,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:17,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:14:17,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:14:17,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:17,916 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 02:14:17,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 02:14:17,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 02:14:18,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.408s +2025-10-02 02:14:18,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.408s (avg: 0.136s/image) +2025-10-02 02:14:18,325 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 02:14:19,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:19,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:19,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:20,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:14:20,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:14:20,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:21,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:21,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:21,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:21,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:14:21,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:14:21,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:22,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:22,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:22,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:22,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 02:14:22,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 02:14:22,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:22,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:22,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:22,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:22,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:14:22,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:14:22,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:23,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:23,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:23,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:24,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:14:24,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:14:24,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:24,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:24,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:24,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:24,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:14:24,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:14:24,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:25,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:25,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:25,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:26,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:14:26,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:14:26,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:27,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:27,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:27,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:27,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-02 02:14:27,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-02 02:14:27,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:28,327 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:14:28,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:28,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:28,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 02:14:28,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-02 02:14:28,597 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:14:28,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:28,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:28,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:29,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:14:29,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:14:29,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:29,250 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:14:29,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:29,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:29,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.252s +2025-10-02 02:14:29,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.252s (avg: 0.126s/image) +2025-10-02 02:14:29,504 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:14:30,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:30,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:30,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:31,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:14:31,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:14:31,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:31,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:31,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:31,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:32,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-02 02:14:32,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-02 02:14:32,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:32,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:32,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:32,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:32,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:14:32,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:14:32,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:32,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:32,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:32,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:32,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:14:32,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:14:32,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:33,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:33,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:33,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:33,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:14:33,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:14:33,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:33,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:33,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:33,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:34,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:14:34,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:14:34,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:35,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:35,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:35,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:36,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:14:36,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:14:36,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:36,669 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:14:36,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:36,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:36,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-02 02:14:36,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-02 02:14:36,976 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:14:38,872 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:14:38,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:38,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:39,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-02 02:14:39,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +2025-10-02 02:14:39,180 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:14:40,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:40,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:40,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:40,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:14:40,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:14:40,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:40,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:40,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:40,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:41,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:14:41,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:14:41,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:41,453 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:14:41,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:41,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:41,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 02:14:41,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 02:14:41,745 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:14:42,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:42,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:42,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:42,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:14:42,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:14:42,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:44,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:44,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:44,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:45,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:14:45,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:14:45,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:45,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:45,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:45,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:45,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:14:45,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:14:45,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:45,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:45,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:45,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:45,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:14:45,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:14:45,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:46,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:46,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:46,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:47,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:14:47,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:14:47,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:47,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:47,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:47,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:47,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:14:47,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:14:47,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:47,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:47,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:47,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:47,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:14:47,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:14:47,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:48,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:48,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:48,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:48,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:14:48,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:14:48,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:48,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:48,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:49,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:49,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:14:49,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:14:49,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:49,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:49,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:49,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:49,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:14:49,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:14:49,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:50,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:50,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:50,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:50,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:14:50,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:14:50,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:50,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:50,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:50,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:50,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:14:50,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:14:50,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:51,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:51,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:51,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:51,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:14:51,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:14:51,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:52,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:52,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:52,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:52,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:14:52,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:14:52,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:53,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:53,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:53,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:53,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:14:53,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:14:53,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:53,728 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:14:53,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:53,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:54,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +2025-10-02 02:14:54,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.319s (avg: 0.160s/image) +2025-10-02 02:14:54,049 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:14:55,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:55,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:56,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:56,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:14:56,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:14:56,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:56,296 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:14:56,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:56,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:56,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-02 02:14:56,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-02 02:14:56,568 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:14:56,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:56,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:56,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:57,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:14:57,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:14:57,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:59,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:59,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:59,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:59,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:14:59,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:14:59,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:14:59,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:14:59,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:59,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:59,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:14:59,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:14:59,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:00,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:00,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:00,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:00,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:15:00,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:15:00,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:00,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:00,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:00,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:00,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:15:00,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:15:00,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:01,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:01,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:01,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:01,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:15:01,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:15:01,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:01,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:01,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:01,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:01,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:15:01,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:15:01,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:02,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:02,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:02,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:02,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:15:02,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:15:02,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:02,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:02,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:02,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:03,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:15:03,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:15:03,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:04,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:04,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:04,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:04,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:15:04,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:15:04,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:05,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:05,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:05,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:05,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:15:05,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:15:05,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:07,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:07,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:07,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:07,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:15:07,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:15:07,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:07,708 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:15:07,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:15:07,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:15:08,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 02:15:08,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-02 02:15:08,006 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:15:09,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:09,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:09,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:09,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:15:09,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:15:09,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:11,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:11,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:11,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:11,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:15:11,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:15:11,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:13,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:13,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:13,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:13,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:15:13,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:15:13,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:15,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:15,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:15,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:15,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:15:15,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:15:15,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:18,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:18,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:18,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:18,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:15:18,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:15:18,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:20,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:20,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:20,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:20,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:15:20,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:15:20,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:23,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:23,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:23,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:23,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:15:23,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:15:23,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:23,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:23,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:23,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:23,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:15:23,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:15:23,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:24,167 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:15:24,192 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:15:24,270 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.105 +2025-10-02 02:15:24,270 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 02:15:24,270 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:15:24,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:24,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:24,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:25,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:15:25,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:15:25,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:26,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:26,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:27,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:27,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:15:27,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:15:27,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:27,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:27,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:27,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:27,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:15:27,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:15:27,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:28,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:28,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:28,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:28,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:15:28,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:15:28,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:28,976 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:15:28,997 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:15:29,072 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.812 +2025-10-02 02:15:29,072 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 02:15:29,072 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 02:15:29,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:29,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:29,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:29,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:15:29,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:15:29,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:31,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:31,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:31,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:31,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:15:31,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:15:31,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:32,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:32,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:32,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:32,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:15:32,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:15:32,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:32,608 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:15:32,631 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:15:32,712 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.320 +2025-10-02 02:15:32,713 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 02:15:32,713 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:15:35,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:35,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:35,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:35,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:15:35,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:15:35,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:35,751 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:15:35,778 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:15:35,851 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.304 +2025-10-02 02:15:35,852 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-02 02:15:35,852 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 02:15:36,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:36,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:36,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:36,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:15:36,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:15:36,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:37,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:37,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:37,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:38,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:15:38,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:15:38,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:39,325 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:15:39,352 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:15:39,426 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.554 +2025-10-02 02:15:39,427 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 02:15:39,427 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:15:39,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:39,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:39,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:39,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:15:39,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:15:39,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:40,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:40,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:40,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:40,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:15:40,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:15:40,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:40,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:40,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:40,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:40,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:15:40,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:15:40,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:42,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:42,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:42,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:42,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:15:42,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:15:42,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:43,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:43,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:43,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:43,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:15:43,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:15:43,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:44,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:44,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:44,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:44,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:15:44,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:15:44,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:46,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:46,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:46,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:46,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:15:46,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:15:46,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:47,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:47,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:47,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:47,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:15:47,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:15:47,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:48,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:48,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:48,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:48,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:15:48,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:15:48,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:49,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:49,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:49,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:49,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:15:49,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:15:49,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:50,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:50,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:50,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:50,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:15:50,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:15:50,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:50,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:50,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:50,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:50,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:15:50,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:15:50,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:53,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:53,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:53,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:53,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:15:53,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:15:53,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:54,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:54,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:54,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:54,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:15:54,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:15:54,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:56,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:56,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:56,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:56,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:15:56,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:15:56,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:57,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:57,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:57,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:57,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:15:57,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:15:57,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:57,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:57,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:57,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:58,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 02:15:58,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 02:15:58,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:15:59,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:15:59,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:59,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:59,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:15:59,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:15:59,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:00,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:00,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:00,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:01,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:16:01,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:16:01,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:01,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:01,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:01,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:01,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:16:01,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:16:01,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:02,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:02,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:02,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:02,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:16:02,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:16:02,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:05,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:05,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:05,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:05,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:16:05,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:16:05,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:06,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:06,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:06,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:06,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:16:06,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:16:06,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:06,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:06,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:06,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:06,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:16:06,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:16:06,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:07,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:07,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:07,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:07,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:16:07,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:16:07,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:10,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:10,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:10,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:10,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:16:10,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:16:10,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:10,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:10,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:10,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:10,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:16:10,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:16:10,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:14,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:14,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:14,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:14,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:16:14,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:16:14,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:14,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:14,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:14,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:14,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:16:14,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:16:14,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:15,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:15,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:15,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:15,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:16:15,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:16:15,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:18,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:18,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:18,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:18,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:16:18,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:16:18,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:19,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:19,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:19,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:19,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:16:19,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:16:19,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:20,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:20,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:20,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:20,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:16:20,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:16:20,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:21,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:21,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:21,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:21,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:16:21,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:16:21,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:22,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:22,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:22,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:22,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:16:22,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:16:22,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:25,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:25,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:25,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:25,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:16:25,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:16:25,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:25,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:25,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:25,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:25,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:16:25,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:16:25,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:25,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:25,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:25,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:25,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:16:25,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:16:25,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:26,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:26,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:26,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:26,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:16:26,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:16:26,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:28,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:28,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:29,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:29,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:16:29,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:16:29,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:29,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:29,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:29,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:29,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:16:29,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:16:29,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:30,245 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:30,268 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:30,344 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.431 +2025-10-02 02:16:30,345 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 02:16:30,345 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:16:31,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:31,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:31,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:31,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:16:31,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:16:31,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:33,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:33,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:33,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:33,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:16:33,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:16:33,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:36,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:36,090 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:36,176 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.807 +2025-10-02 02:16:36,176 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 02:16:36,176 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 02:16:36,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:36,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:36,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:36,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:16:36,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:16:36,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:37,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:37,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:38,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:38,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:16:38,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:16:38,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:38,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:38,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:38,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:38,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:16:38,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:16:38,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:40,172 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:40,188 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:40,270 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.567 +2025-10-02 02:16:40,270 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 02:16:40,270 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:16:40,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:40,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:40,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:40,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:16:40,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:16:40,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:41,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:41,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:41,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:41,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:16:41,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:16:41,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:42,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:42,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:42,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:42,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:16:42,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:16:42,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:44,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:44,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:44,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:44,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:16:44,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:16:44,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:44,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:44,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:44,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:44,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:16:44,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:16:44,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:45,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:45,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:45,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:45,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:16:45,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:16:45,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:45,705 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:45,738 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:45,813 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.695 +2025-10-02 02:16:45,813 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 02:16:45,813 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 02:16:46,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:46,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:46,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:47,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:16:47,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:16:47,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:48,528 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:48,551 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:48,637 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.084 +2025-10-02 02:16:48,637 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 02:16:48,638 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:16:48,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:48,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:49,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:49,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:16:49,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:16:49,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:49,903 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:49,924 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:50,007 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.520 +2025-10-02 02:16:50,007 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 02:16:50,008 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:16:51,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:51,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:51,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:51,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:16:51,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:16:51,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:51,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:51,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:51,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:52,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:16:52,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:16:52,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:52,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:52,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:52,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:52,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:16:52,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:16:52,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:55,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:55,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:55,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:55,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 02:16:55,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 02:16:55,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:56,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:56,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:56,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:56,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:16:56,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:16:56,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:16:57,562 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:57,586 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:57,666 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.029 +2025-10-02 02:16:57,666 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 02:16:57,666 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:16:59,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:16:59,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:59,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:59,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:16:59,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:16:59,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:00,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:00,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:00,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:00,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:17:00,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:17:00,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:00,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:00,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:00,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:01,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:17:01,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:17:01,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:01,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:01,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:01,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:01,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:17:01,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:17:01,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:02,410 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:17:02,429 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:17:02,504 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.854 +2025-10-02 02:17:02,504 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 02:17:02,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 02:17:05,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:05,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:05,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:05,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:17:05,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:17:05,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:05,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:05,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:05,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:05,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:17:05,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:17:05,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:09,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:09,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:09,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:09,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:17:09,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:17:09,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:10,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:10,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:10,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:10,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:17:10,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:17:10,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:14,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:14,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:14,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:15,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:17:15,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:17:15,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:15,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:15,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:15,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:15,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:17:15,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:17:15,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:16,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:16,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:16,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:16,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:17:16,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:17:16,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:17,217 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:17:17,245 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 748, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:17:17,331 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.111 +2025-10-02 02:17:17,331 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 02:17:17,333 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:17:17,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:17,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:17,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:17,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:17:17,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:17:17,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:18,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:18,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:18,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:18,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:17:18,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:17:18,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:21,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:21,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:21,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:21,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:17:21,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:17:21,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:21,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:21,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:21,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:21,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:17:21,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:17:21,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:22,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:22,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:22,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:22,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:17:22,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:17:22,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:26,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:26,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:26,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:26,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:17:26,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:17:26,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:26,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:26,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:26,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:27,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:17:27,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:17:27,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:28,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:28,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:28,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:28,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:17:28,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:17:28,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:31,782 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:17:31,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:17:31,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:17:32,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +2025-10-02 02:17:32,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.158s/image) +2025-10-02 02:17:32,100 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:17:32,302 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:17:32,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:17:32,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:17:32,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 02:17:32,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-02 02:17:32,576 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:17:35,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:35,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:35,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:35,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:17:35,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:17:35,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:36,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:36,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:36,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:36,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:17:36,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:17:36,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:36,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:36,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:36,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:37,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:17:37,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:17:37,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:37,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:37,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:37,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:37,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:17:37,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:17:37,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:38,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:38,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:38,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:39,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:17:39,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:17:39,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:42,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:42,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:42,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:42,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:17:42,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:17:42,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:43,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:43,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:43,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:43,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:17:43,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:17:43,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:44,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:44,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:44,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:44,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:17:44,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:17:44,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:44,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:44,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:44,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:44,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:17:44,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:17:44,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:46,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:46,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:46,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:47,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:17:47,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:17:47,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:47,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:47,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:47,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:47,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:17:47,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:17:47,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:49,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:49,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:49,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:49,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:17:49,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:17:49,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:49,580 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:17:49,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:17:49,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:17:49,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 02:17:49,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 02:17:49,860 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:17:50,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:50,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:50,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:50,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:17:50,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:17:50,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:52,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:52,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:52,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:52,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:17:52,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:17:52,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:53,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:53,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:54,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:54,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:17:54,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:17:54,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:54,787 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:17:54,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:17:54,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:17:55,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 02:17:55,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 02:17:55,075 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:17:55,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:55,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:55,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:55,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:17:55,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:17:55,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:56,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:56,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:56,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:56,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:17:56,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:17:56,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:59,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:59,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:59,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:59,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:17:59,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:17:59,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:17:59,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:17:59,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:59,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:00,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:18:00,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:18:00,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:00,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:00,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:00,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:00,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:18:00,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:18:00,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:01,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:01,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:01,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:01,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:18:01,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:18:01,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:02,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:02,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:02,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:02,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:18:02,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:18:02,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:02,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:02,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:02,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:02,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:18:02,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:18:02,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:03,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:03,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:03,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:03,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:18:03,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:18:03,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:06,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:06,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:06,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:06,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:18:06,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:18:06,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:12,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:12,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:13,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:13,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:18:13,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:18:13,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:18,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:18,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:18,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:18,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:18:18,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:18:18,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:19,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:19,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:19,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:19,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:18:19,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:18:19,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:19,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:19,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:19,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:19,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:18:19,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:18:19,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:19,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:19,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:19,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:20,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:18:20,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:18:20,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:22,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:22,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:22,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:22,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:18:22,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:18:22,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:24,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:24,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:24,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:24,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:18:24,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:18:24,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:26,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:26,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:26,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:26,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:18:26,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:18:26,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:26,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:26,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:26,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:26,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:18:26,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:18:26,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:29,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:29,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:29,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:29,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:18:29,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:18:29,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:32,530 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 02:18:32,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 02:18:32,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 02:18:32,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.394s +2025-10-02 02:18:32,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.394s (avg: 0.131s/image) +2025-10-02 02:18:32,926 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 02:18:34,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:34,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:34,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:34,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:18:34,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:18:34,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:35,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:35,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:35,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:35,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:18:35,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:18:35,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:37,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:37,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:37,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:37,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:18:37,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:18:37,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:41,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:41,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:41,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:41,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:18:41,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:18:41,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:42,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:42,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:42,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:42,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:18:42,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:18:42,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:44,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:44,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:44,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:44,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:18:44,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:18:44,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:45,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:45,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:45,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:45,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:18:45,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:18:45,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:46,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:46,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:46,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:46,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:18:46,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:18:46,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:47,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:47,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:47,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:47,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:18:47,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:18:47,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:48,990 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:18:49,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(958, 799, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:18:49,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.578 +2025-10-02 02:18:49,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 02:18:49,111 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:18:49,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:49,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:49,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:49,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:18:49,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:18:49,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:49,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:49,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:49,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:49,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:18:49,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:18:49,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:51,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:51,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:51,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:51,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:18:51,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:18:51,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:53,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:53,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:53,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:53,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:18:53,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:18:53,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:55,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:55,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:55,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:55,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:18:55,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:18:55,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:56,314 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:18:56,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:18:56,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:18:56,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-02 02:18:56,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-02 02:18:56,626 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:18:56,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:56,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:56,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:56,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:18:56,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:18:56,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:18:57,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:18:57,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:57,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:57,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:18:57,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:18:57,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:00,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:00,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:00,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:00,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:19:00,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:19:00,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:01,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:01,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:01,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:01,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:19:01,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:19:01,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:01,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:01,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:01,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:01,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:19:01,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:19:01,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:05,193 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:19:05,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:19:05,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:19:05,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.329s +2025-10-02 02:19:05,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.329s (avg: 0.165s/image) +2025-10-02 02:19:05,524 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:19:06,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:06,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:06,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:06,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:19:06,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:19:06,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:09,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:09,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:09,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:09,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:19:09,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:19:09,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:13,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:13,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:13,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:13,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:19:13,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:19:13,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:15,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:15,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:15,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:15,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:19:15,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:19:15,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:15,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:15,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:15,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:15,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:19:15,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:19:15,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:17,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:17,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:17,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:17,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:19:17,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:19:17,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:18,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:18,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:18,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:18,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:19:18,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:19:18,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:19,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:19,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:19,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:19,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:19:19,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:19:19,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:19,472 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:19,489 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:19,566 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.692 +2025-10-02 02:19:19,566 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:19:19,566 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:19:22,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:22,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:22,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:22,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:19:22,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:19:22,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:22,555 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:22,573 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:22,650 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.487 +2025-10-02 02:19:22,651 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:19:22,651 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:19:23,243 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:19:23,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:19:23,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:19:23,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s +2025-10-02 02:19:23,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image) +2025-10-02 02:19:23,566 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:19:23,643 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:23,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:23,737 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.388 +2025-10-02 02:19:23,738 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:19:23,738 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:19:26,024 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:26,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:26,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.618 +2025-10-02 02:19:26,123 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 02:19:26,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:19:27,457 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:27,469 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:27,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.031 +2025-10-02 02:19:27,549 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 02:19:27,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:19:27,561 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:19:27,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:19:27,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:19:27,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-02 02:19:27,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-02 02:19:27,868 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:19:29,150 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:29,170 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:29,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.655 +2025-10-02 02:19:29,251 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 02:19:29,251 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:19:30,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:30,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:30,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:30,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:19:30,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:19:30,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:31,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:31,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:31,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:31,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:19:31,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:19:31,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:33,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:33,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:33,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:33,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:19:33,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:19:33,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:34,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:34,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:34,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:34,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:19:34,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:19:34,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:36,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:36,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:36,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:36,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:19:36,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:19:36,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:37,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:37,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:37,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:37,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:19:37,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:19:37,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:37,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:37,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:37,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:37,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:19:37,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:19:37,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:42,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:42,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:42,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:42,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:19:42,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:19:42,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:44,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:44,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:44,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:44,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:19:44,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:19:44,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:47,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:47,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:47,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:47,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:19:47,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:19:47,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:48,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:48,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:48,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:48,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:19:48,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:19:48,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:50,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:50,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:50,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:51,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:19:51,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:19:51,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:52,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:52,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:52,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:53,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:19:53,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:19:53,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:53,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:53,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:53,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:53,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:19:53,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:19:53,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:53,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:53,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:53,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:53,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:19:53,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:19:53,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:54,824 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:54,859 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:54,956 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.823 +2025-10-02 02:19:54,956 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-02 02:19:54,958 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-02 02:19:55,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:55,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:55,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:55,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-02 02:19:55,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-02 02:19:55,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:56,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:56,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:56,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:56,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:19:56,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:19:56,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:56,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:56,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:56,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:56,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:19:56,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:19:56,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:57,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:57,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:57,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:57,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:19:57,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:19:57,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:58,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:58,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:58,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:58,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:19:58,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:19:58,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:59,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:59,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:59,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:59,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:19:59,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:19:59,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:19:59,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:19:59,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:59,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:59,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:19:59,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:19:59,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:00,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:00,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:00,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:00,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:20:00,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:20:00,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:02,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:02,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:02,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:02,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:20:02,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:20:02,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:02,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:02,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:02,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:03,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:20:03,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:20:03,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:03,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:03,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:03,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:03,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:20:03,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:20:03,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:06,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:06,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:06,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:06,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:20:06,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:20:06,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:08,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:08,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:08,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:08,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:20:08,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:20:08,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:08,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:08,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:08,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:09,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:20:09,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:20:09,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:09,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:09,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:09,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:09,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:20:09,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:20:09,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:11,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:11,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:11,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:12,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:20:12,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:20:12,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:14,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:14,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:14,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:14,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:20:14,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:20:14,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:14,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:14,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:14,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:14,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:20:14,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:20:14,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:15,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:15,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:15,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:15,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:20:15,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:20:15,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:16,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:16,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:16,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:16,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:20:16,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:20:16,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:19,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:19,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:20,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:20,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:20:20,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:20:20,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:21,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:21,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:21,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:21,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:20:21,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:20:21,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:26,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:26,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:26,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:27,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:20:27,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:20:27,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:29,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:29,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:29,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:29,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:20:29,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:20:29,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:33,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:33,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:33,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:33,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:20:33,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:20:33,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:34,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:34,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:34,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:34,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:20:34,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:20:34,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:39,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:39,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:39,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:39,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:20:39,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:20:39,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:43,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:43,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:43,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:43,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:20:43,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:20:43,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:44,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:44,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:44,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:44,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:20:44,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:20:44,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:51,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:51,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:51,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:51,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:20:51,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:20:51,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:53,807 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:20:53,849 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:20:53,944 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.332 +2025-10-02 02:20:53,944 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 02:20:53,946 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 02:20:54,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:54,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:54,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:54,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:20:54,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:20:54,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:55,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:55,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:55,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:55,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:20:55,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:20:55,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:57,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:20:57,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:57,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:57,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 02:20:57,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 02:20:57,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:20:57,753 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:20:57,797 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:20:57,889 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=178.930 +2025-10-02 02:20:57,889 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 02:20:57,889 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 02:21:01,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:01,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:01,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:01,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:21:01,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:21:01,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:01,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:01,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:01,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:02,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-02 02:21:02,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-02 02:21:02,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:02,728 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:21:02,751 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:21:02,833 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.837 +2025-10-02 02:21:02,833 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 02:21:02,833 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:21:06,891 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:21:06,916 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:21:06,993 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.990 +2025-10-02 02:21:06,993 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:21:06,993 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:21:07,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:07,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:07,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:07,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:21:07,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:21:07,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:07,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:07,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:07,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:07,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:21:07,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:21:07,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:09,958 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:21:09,985 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:21:10,072 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.626 +2025-10-02 02:21:10,072 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 02:21:10,072 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:21:12,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:12,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:12,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:13,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:21:13,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:21:13,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:17,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:17,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:17,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:17,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:21:17,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:21:17,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:19,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:19,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:19,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:19,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 02:21:19,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 02:21:19,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:22,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:22,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:22,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:22,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:21:22,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:21:22,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:23,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:23,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:23,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:23,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:21:23,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:21:23,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:23,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:23,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:23,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:23,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 02:21:23,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 02:21:23,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:26,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:26,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:26,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:26,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:21:26,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:21:26,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:28,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:28,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:28,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:28,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:21:28,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:21:28,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:28,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:28,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:28,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:28,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:21:28,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:21:28,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:31,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:31,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:31,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:31,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:21:31,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:21:31,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:32,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:32,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:32,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:32,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:21:32,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:21:32,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:32,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:32,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:32,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:33,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:21:33,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:21:33,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:33,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:33,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:33,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:33,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:21:33,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:21:33,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:33,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:33,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:33,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:33,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:21:33,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:21:33,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:36,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:36,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:36,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:36,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:21:36,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:21:36,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:37,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:37,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:37,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:37,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:21:37,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:21:37,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:38,607 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:21:38,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:21:38,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:21:38,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 02:21:38,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 02:21:38,899 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:21:41,201 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:21:41,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:21:41,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:21:41,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 02:21:41,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 02:21:41,486 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:21:42,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:42,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:42,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:42,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:21:42,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:21:42,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:42,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:42,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:42,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:42,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:21:42,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:21:42,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:43,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:43,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:43,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:44,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:21:44,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:21:44,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:45,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:45,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:45,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:46,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:21:46,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:21:46,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:46,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:46,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:46,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:46,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:21:46,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:21:46,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:46,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:46,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:46,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:46,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:21:46,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:21:46,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:47,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:47,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:47,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:47,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:21:47,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:21:47,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:48,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:48,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:48,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:48,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:21:48,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:21:48,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:49,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:49,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:49,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:49,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:21:49,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:21:49,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:50,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:50,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:50,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:50,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:21:50,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:21:50,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:50,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:50,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:50,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:50,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:21:50,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:21:50,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:52,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:52,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:52,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:52,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:21:52,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:21:52,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:52,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:52,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:52,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:53,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:21:53,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:21:53,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:54,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:54,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:54,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:55,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:21:55,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:21:55,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:55,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:55,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:55,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:55,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:21:55,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:21:55,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:55,858 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:21:55,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:21:55,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:21:56,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 02:21:56,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-02 02:21:56,165 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:21:57,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:57,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:57,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:58,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:21:58,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:21:58,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:21:59,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:21:59,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:59,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:59,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:21:59,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:21:59,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:00,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:00,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:00,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:00,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:22:00,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:22:00,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:01,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:01,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:02,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:02,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:22:02,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:22:02,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:02,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:02,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:02,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:02,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 02:22:02,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 02:22:02,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:05,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:05,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:05,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:05,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:22:05,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:22:05,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:05,952 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:22:05,973 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:22:06,053 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.459 +2025-10-02 02:22:06,053 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 02:22:06,054 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:22:08,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:08,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:08,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:08,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:22:08,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:22:08,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:10,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:10,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:10,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:10,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:22:10,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:22:10,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:11,984 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:22:12,017 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:22:12,090 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.383 +2025-10-02 02:22:12,091 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-02 02:22:12,091 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:22:13,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:13,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:13,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:13,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:22:13,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:22:13,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:14,313 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:22:14,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:22:14,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:22:14,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 02:22:14,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 02:22:14,598 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:22:14,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:14,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:15,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:15,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:22:15,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:22:15,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:17,080 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:22:17,110 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:22:17,198 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.393 +2025-10-02 02:22:17,198 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 02:22:17,199 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:22:17,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:17,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:17,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:18,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:22:18,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:22:18,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:18,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:18,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:18,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:18,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:22:18,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:22:18,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:20,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:20,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:20,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:20,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:22:20,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:22:20,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:20,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:20,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:20,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:21,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:22:21,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:22:21,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:21,074 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:22:21,092 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:22:21,166 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.299 +2025-10-02 02:22:21,166 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 02:22:21,166 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:22:21,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:21,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:21,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:21,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:22:21,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:22:21,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:21,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:21,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:21,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:21,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:22:21,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:22:21,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:23,394 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:22:23,419 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:22:23,501 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.473 +2025-10-02 02:22:23,502 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 02:22:23,503 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:22:23,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:23,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:23,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:23,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:22:23,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:22:23,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:25,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:25,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:25,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:25,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:22:25,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:22:25,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:26,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:26,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:26,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:26,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:22:26,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:22:26,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:27,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:27,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:27,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:27,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:22:27,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:22:27,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:28,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:28,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:28,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:28,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:22:28,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:22:28,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:28,875 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:22:28,903 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:22:28,996 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.230 +2025-10-02 02:22:28,996 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 02:22:28,998 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 02:22:30,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:30,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:30,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:31,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:22:31,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:22:31,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:31,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:31,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:31,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:31,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:22:31,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:22:31,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:31,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:31,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:31,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:31,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:22:31,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:22:31,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:33,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:33,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:33,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:33,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:22:33,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:22:33,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:33,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:33,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:33,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:34,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:22:34,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:22:34,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:34,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:34,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:34,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:34,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:22:34,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:22:34,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:36,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:36,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:36,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:37,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:22:37,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:22:37,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:38,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:38,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:38,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:38,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:22:38,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:22:38,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:39,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:39,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:39,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:39,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:22:39,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:22:39,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:40,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:40,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:40,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:40,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:22:40,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:22:40,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:41,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:41,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:41,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:41,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:22:41,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:22:41,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:46,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:46,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:46,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:46,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:22:46,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:22:46,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:46,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:46,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:46,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:46,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:22:46,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:22:46,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:49,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:49,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:49,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:49,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:22:49,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:22:49,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:50,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:50,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:50,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:50,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:22:50,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:22:50,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:51,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:51,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:51,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:51,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:22:51,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:22:51,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:53,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:53,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:53,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:53,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:22:53,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:22:53,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:53,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:53,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:53,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:53,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:22:53,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:22:53,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:53,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:53,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:53,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:54,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:22:54,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:22:54,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:54,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:54,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:54,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:54,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:22:54,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:22:54,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:57,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:57,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:57,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:57,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:22:57,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:22:57,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:22:59,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:22:59,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:59,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:59,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:22:59,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:22:59,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:01,005 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:23:01,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:23:01,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:23:01,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 02:23:01,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-02 02:23:01,295 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:23:03,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:03,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:03,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:03,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:23:03,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:23:03,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:03,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:03,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:03,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:03,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:23:03,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:23:03,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:04,553 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:23:04,578 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:23:04,665 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.241 +2025-10-02 02:23:04,665 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 02:23:04,665 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:23:05,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:05,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:05,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:05,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:23:05,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:23:05,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:05,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:05,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:05,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:05,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:23:05,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:23:05,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:07,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:07,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:07,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:07,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:23:07,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:23:07,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:07,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:07,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:07,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:07,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:23:07,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:23:07,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:09,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:09,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:09,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:09,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:23:09,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:23:09,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:09,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:09,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:09,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:10,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:23:10,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:23:10,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:10,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:10,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:10,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:10,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:23:10,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:23:10,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:10,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:10,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:10,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:10,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:23:10,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:23:10,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:11,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:11,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:11,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:11,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:23:11,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:23:11,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:12,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:12,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:12,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:13,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:23:13,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:23:13,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:15,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:15,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:15,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:15,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:23:15,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:23:15,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:15,709 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:23:15,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:23:15,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:23:16,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.326s +2025-10-02 02:23:16,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.326s (avg: 0.163s/image) +2025-10-02 02:23:16,037 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:23:16,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:16,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:16,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:16,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:23:16,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:23:16,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:17,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:17,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:18,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:18,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:23:18,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:23:18,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:19,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:19,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:19,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:19,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:23:19,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:23:19,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:20,081 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:23:20,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:23:20,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:23:20,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 02:23:20,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-02 02:23:20,387 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:23:20,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:20,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:20,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:20,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:23:20,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:23:20,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:23,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:23,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:23,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:24,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:23:24,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:23:24,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:24,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:24,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:24,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:25,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:23:25,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:23:25,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:25,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:25,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:25,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:25,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:23:25,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:23:25,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:26,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:26,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:26,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:27,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:23:27,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:23:27,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:27,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:27,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:27,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:27,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:23:27,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:23:27,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:27,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:27,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:27,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:28,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:23:28,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:23:28,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:28,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:28,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:28,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:28,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:23:28,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:23:28,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:32,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:32,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:32,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:32,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:23:32,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:23:32,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:32,660 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:23:32,683 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:23:32,763 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.972 +2025-10-02 02:23:32,764 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 02:23:32,764 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:23:33,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:33,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:33,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:33,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:23:33,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:23:33,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:33,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:33,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:33,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:33,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:23:33,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:23:33,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:35,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:35,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:35,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:35,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:23:36,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:23:36,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:36,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:36,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:36,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:36,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:23:36,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:23:36,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:37,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:37,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:37,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:37,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:23:37,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:23:37,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:37,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:37,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:37,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:38,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:23:38,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:23:38,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:39,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:39,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:39,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:39,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:23:39,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:23:39,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:40,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:40,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:40,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:41,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:23:41,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:23:41,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:41,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:41,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:41,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:41,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:23:41,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:23:41,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:41,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:41,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:41,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:42,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:23:42,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:23:42,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:43,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:43,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:43,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:43,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:23:43,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:23:43,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:44,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:44,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:44,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:44,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:23:44,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:23:44,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:45,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:45,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:45,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:45,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:23:45,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:23:45,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:46,001 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:23:46,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:23:46,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:23:46,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 02:23:46,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-02 02:23:46,269 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:23:48,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:48,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:48,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:49,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:23:49,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:23:49,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:51,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:51,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:51,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:51,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:23:51,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:23:51,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:51,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:51,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:52,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:52,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:23:52,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:23:52,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:52,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:52,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:52,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:52,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:23:52,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:23:52,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:52,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:52,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:52,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:52,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:23:52,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:23:52,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:52,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:52,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:52,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:53,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:23:53,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:23:53,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:55,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:55,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:55,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:55,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:23:55,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:23:55,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:55,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:55,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:55,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:55,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:23:55,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:23:55,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:57,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:57,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:57,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:57,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:23:57,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:23:57,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:58,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:58,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:58,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:58,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:23:58,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:23:58,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:58,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:58,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:58,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:58,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:23:58,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:23:58,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:23:59,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:23:59,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:59,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:00,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:24:00,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:24:00,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:00,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:00,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:00,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:00,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:24:00,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:24:00,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:01,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:01,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:01,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:01,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:24:01,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:24:01,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:03,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:03,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:03,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:03,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:24:03,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:24:03,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:03,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:03,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:03,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:03,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:24:03,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:24:03,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:05,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:05,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:05,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:05,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:24:05,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:24:05,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:06,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:06,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:06,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:06,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:24:06,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:24:06,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:07,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:07,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:07,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:07,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:24:07,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:24:07,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:07,550 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:24:07,568 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:24:07,654 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.945 +2025-10-02 02:24:07,655 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 02:24:07,655 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:24:08,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:08,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:08,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:08,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:24:08,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:24:08,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:10,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:10,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:10,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:10,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:24:10,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:24:10,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:10,911 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:24:10,928 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:24:11,008 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.660 +2025-10-02 02:24:11,009 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 02:24:11,009 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:24:11,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:11,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:11,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:11,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:24:11,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:24:11,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:12,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:12,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:12,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:12,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:24:12,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:24:12,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:13,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:13,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:13,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:13,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:24:13,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:24:13,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:13,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:13,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:13,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:13,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:24:13,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:24:13,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:14,183 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:24:14,202 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:24:14,291 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.040 +2025-10-02 02:24:14,292 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 02:24:14,292 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:24:14,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:14,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:14,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:14,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:24:14,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:24:14,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:15,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:15,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:15,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:15,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:24:15,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:24:15,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:15,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:15,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:15,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:15,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:24:15,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:24:15,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:19,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:19,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:19,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:19,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:24:19,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:24:19,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:19,734 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:24:19,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:24:19,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:24:20,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 02:24:20,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 02:24:20,014 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:24:20,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:20,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:20,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:20,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:24:20,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:24:20,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:21,948 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:24:21,981 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:24:22,073 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.785 +2025-10-02 02:24:22,073 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 02:24:22,074 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 02:24:22,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:22,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:22,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:22,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:24:22,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:24:22,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:23,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:23,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:24,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:24,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:24:24,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:24:24,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:24,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:24,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:24,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:24,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:24:24,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:24:24,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:24,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:24,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:24,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:24,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:24:24,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:24:24,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:25,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:25,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:25,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:25,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:24:25,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:24:25,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:29,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:29,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:29,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:29,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:24:29,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:24:29,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:29,416 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:24:29,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:24:29,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:24:29,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-02 02:24:29,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-02 02:24:29,690 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:24:29,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:29,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:29,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:30,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:24:30,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:24:30,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:30,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:30,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:30,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:30,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:24:30,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:24:30,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:30,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:30,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:30,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:30,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:24:30,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:24:30,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:34,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:34,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:34,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:34,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:24:34,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:24:34,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:34,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:34,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:34,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:34,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:24:34,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:24:34,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:37,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:37,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:37,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:37,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:24:37,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:24:37,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:37,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:37,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:37,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:37,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:24:37,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:24:37,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:37,804 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:24:37,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:24:37,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:24:38,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.327s +2025-10-02 02:24:38,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.327s (avg: 0.163s/image) +2025-10-02 02:24:38,131 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:24:38,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:38,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:38,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:38,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:24:38,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:24:38,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:40,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:40,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:41,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:41,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:24:41,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:24:41,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:41,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:41,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:41,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:41,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:24:41,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:24:41,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:43,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:43,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:43,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:43,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:24:43,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:24:43,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:44,908 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:24:44,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:24:44,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:24:45,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 02:24:45,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +2025-10-02 02:24:45,225 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:24:45,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:45,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:45,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:45,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:24:45,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:24:45,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:45,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:45,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:45,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:46,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 02:24:46,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 02:24:46,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:47,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:47,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:47,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:47,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:24:47,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:24:47,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:49,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:49,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:49,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:49,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:24:49,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:24:49,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:49,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:49,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:49,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:49,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:24:49,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:24:49,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:50,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:50,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:50,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:50,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:24:50,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:24:50,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:51,600 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:24:51,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:24:51,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:24:51,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 02:24:51,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 02:24:51,880 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:24:55,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:55,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:55,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:55,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:24:55,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:24:55,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:55,707 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:24:55,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:24:55,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:24:55,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +2025-10-02 02:24:55,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +2025-10-02 02:24:55,968 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:24:56,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:24:56,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:56,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:56,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:24:56,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:24:56,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:24:59,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:24:59,116 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(780, 780, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:24:59,200 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.910 +2025-10-02 02:24:59,201 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 02:24:59,201 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:25:00,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:00,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:00,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:00,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:25:00,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:25:00,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:01,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:01,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:01,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:01,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:25:01,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:25:01,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:03,537 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:25:03,563 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:25:03,633 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.827 +2025-10-02 02:25:03,634 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-02 02:25:03,634 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-02 02:25:05,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:05,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:05,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:05,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:25:05,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:25:05,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:06,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:06,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:06,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:06,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:25:06,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:25:06,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:07,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:07,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:07,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:07,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:25:07,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:25:07,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:07,786 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:25:07,814 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:25:07,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.643 +2025-10-02 02:25:07,885 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-02 02:25:07,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 02:25:09,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:09,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:10,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:10,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:25:10,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:25:10,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:13,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:13,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:13,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:13,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:25:13,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:25:13,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:14,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:14,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:14,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:15,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:25:15,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:25:15,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:16,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:16,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:16,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:16,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 02:25:16,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 02:25:16,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:18,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:18,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:18,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:18,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:25:18,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:25:18,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:18,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:18,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:18,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:18,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:25:18,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:25:18,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:19,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:19,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:19,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:19,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:25:19,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:25:19,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:22,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:22,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:22,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:22,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:25:22,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:25:22,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:22,938 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:25:22,959 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:25:23,042 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.131 +2025-10-02 02:25:23,042 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 02:25:23,042 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:25:24,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:24,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:24,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:24,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:25:24,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:25:24,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:24,775 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:25:24,800 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:25:24,879 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.378 +2025-10-02 02:25:24,879 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 02:25:24,882 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:25:25,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:25,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:25,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:25,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:25:25,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:25:25,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:26,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:26,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:26,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:26,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:25:26,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:25:26,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:28,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:28,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:28,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:28,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:25:28,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:25:28,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:29,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:29,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:29,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:29,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:25:29,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:25:29,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:30,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:30,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:30,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:30,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:25:30,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:25:30,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:32,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:32,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:32,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:32,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:25:32,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:25:32,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:33,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:33,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:33,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:33,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:25:33,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:25:33,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:34,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:34,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:34,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:34,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:25:34,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:25:34,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:38,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:38,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:38,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:38,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:25:38,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:25:38,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:39,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:39,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:39,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:39,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:25:39,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:25:39,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:41,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:41,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:41,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:41,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:25:41,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:25:41,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:42,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:42,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:42,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:42,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:25:42,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:25:42,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:43,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:43,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:43,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:43,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:25:43,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:25:43,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:44,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:44,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:44,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:44,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:25:44,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:25:44,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:44,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:44,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:44,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:44,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:25:44,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:25:44,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:48,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:48,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:48,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:48,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:25:48,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:25:48,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:49,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:49,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:49,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:49,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:25:49,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:25:49,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:51,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:51,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:51,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:51,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:25:51,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:25:51,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:53,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:53,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:53,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:53,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:25:53,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:25:53,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:55,717 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:25:55,743 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:25:55,829 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.043 +2025-10-02 02:25:55,829 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 02:25:55,829 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 02:25:58,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:58,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:58,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:58,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:25:58,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:25:58,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:58,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:58,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:58,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:59,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:25:59,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:25:59,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:25:59,727 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:25:59,749 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:25:59,833 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.624 +2025-10-02 02:25:59,833 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 02:25:59,833 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:25:59,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:25:59,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:59,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:00,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:26:00,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:26:00,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:04,391 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:26:04,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:26:04,503 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.869 +2025-10-02 02:26:04,503 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 02:26:04,504 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:26:04,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:04,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:04,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:04,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:26:04,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:26:04,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:06,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:06,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:06,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:06,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:26:06,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:26:06,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:10,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:10,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:10,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:10,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:26:10,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:26:10,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:15,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:15,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:15,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:15,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:26:15,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:26:15,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:17,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:17,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:17,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:18,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:26:18,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:26:18,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:18,463 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:26:18,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:26:18,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:26:18,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 02:26:18,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-02 02:26:18,765 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:26:19,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:19,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:19,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:20,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:26:20,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:26:20,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:20,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:20,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:20,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:21,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:26:21,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:26:21,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:21,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:21,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:21,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:21,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:26:21,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:26:21,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:22,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:22,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:22,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:22,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:26:22,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:26:22,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:23,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:23,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:24,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:24,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:26:24,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:26:24,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:25,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:25,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:25,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:25,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:26:25,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:26:25,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:26,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:26,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:26,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:26,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:26:26,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:26:26,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:26,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:26,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:26,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:27,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:26:27,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:26:27,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:32,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:32,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:32,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:32,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:26:32,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:26:32,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:33,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:33,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:33,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:33,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 02:26:33,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 02:26:33,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:33,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:33,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:33,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:33,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:26:33,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:26:33,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:34,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:34,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:34,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:34,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:26:34,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:26:34,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:36,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:36,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:36,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:36,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:26:36,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:26:36,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:37,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:37,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:37,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:37,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:26:37,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:26:37,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:37,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:37,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:37,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:37,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:26:37,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:26:37,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:39,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:39,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:39,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:39,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:26:39,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:26:39,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:40,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:40,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:40,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:40,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:26:40,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:26:40,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:42,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:42,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:42,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:42,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:26:42,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:26:42,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:44,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:44,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:44,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:44,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:26:44,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:26:44,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:44,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:44,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:44,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:44,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:26:44,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:26:44,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:46,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:46,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:46,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:46,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:26:46,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:26:46,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:46,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:46,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:46,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:46,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:26:46,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:26:46,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:47,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:47,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:47,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:47,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:26:47,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:26:47,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:47,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:47,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:47,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:47,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:26:47,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:26:47,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:47,652 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:26:47,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:26:47,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:26:47,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.253s +2025-10-02 02:26:47,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.253s (avg: 0.126s/image) +2025-10-02 02:26:47,906 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:26:48,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:48,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:48,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:48,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:26:48,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:26:48,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:50,623 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:26:50,645 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:26:50,733 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.043 +2025-10-02 02:26:50,733 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 02:26:50,733 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:26:51,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:51,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:51,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:51,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:26:51,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:26:51,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:51,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:51,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:51,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:51,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:26:51,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:26:51,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:52,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:52,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:52,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:52,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:26:52,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:26:52,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:53,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:53,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:53,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:53,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:26:53,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:26:53,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:58,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:58,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:58,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:58,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:26:58,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:26:58,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:58,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:58,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:58,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:59,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:26:59,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:26:59,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:59,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:59,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:59,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:59,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:26:59,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:26:59,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:26:59,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:26:59,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:59,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:59,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:26:59,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:26:59,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:00,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:00,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:00,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:01,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:27:01,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:27:01,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:01,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:01,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:01,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:01,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:27:01,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:27:01,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:06,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:06,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:06,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:06,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:27:06,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:27:06,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:07,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:07,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:07,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:07,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:27:07,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:27:07,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:07,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:07,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:07,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:07,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:27:07,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:27:07,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:08,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:08,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:08,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:08,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:27:08,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:27:08,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:09,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:09,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:09,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:09,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:27:09,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:27:09,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:09,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:09,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:10,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:10,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:27:10,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:27:10,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:12,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:12,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:12,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:12,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:27:12,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:27:12,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:14,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:14,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:14,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:14,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:27:14,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:27:14,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:14,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:14,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:14,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:14,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:27:14,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:27:14,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:15,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:15,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:15,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:15,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:27:15,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:27:15,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:16,049 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:27:16,082 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:27:16,174 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.727 +2025-10-02 02:27:16,174 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 02:27:16,175 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 02:27:16,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:16,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:16,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:16,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:27:16,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:27:16,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:18,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:18,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:18,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:18,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:27:18,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:27:18,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:19,661 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:27:19,680 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:27:19,757 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.947 +2025-10-02 02:27:19,757 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:27:19,757 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:27:19,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:19,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:19,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:20,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:27:20,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:27:20,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:21,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:21,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:21,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:21,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:27:21,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:27:21,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:22,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:22,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:22,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:22,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:27:22,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:27:22,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:23,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:23,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:23,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:23,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:27:23,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:27:23,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:24,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:24,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:24,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:24,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:27:24,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:27:24,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:27,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:27,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:27,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:27,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:27:27,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:27:27,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:28,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:28,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:28,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:28,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:27:28,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:27:28,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:28,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:28,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:28,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:29,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:27:29,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:27:29,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:29,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:29,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:29,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:29,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:27:29,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:27:29,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:30,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:30,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:30,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:31,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:27:31,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:27:31,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:31,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:31,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:31,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:32,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:27:32,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:27:32,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:35,301 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:27:35,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:27:35,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:27:35,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-02 02:27:35,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-02 02:27:35,574 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:27:36,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:36,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:36,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:36,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:27:36,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:27:36,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:36,616 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:27:36,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:27:36,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:27:36,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 02:27:36,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 02:27:36,897 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:27:37,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:37,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:37,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:37,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:27:37,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:27:37,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:38,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:38,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:38,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:38,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:27:38,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:27:38,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:39,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:39,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:39,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:39,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:27:39,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:27:39,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:42,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:42,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:42,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:42,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:27:42,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:27:42,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:42,372 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:27:42,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:27:42,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:27:42,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 02:27:42,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-02 02:27:42,638 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:27:43,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:43,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:43,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:43,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:27:43,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:27:43,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:43,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:43,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:43,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:43,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:27:43,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:27:43,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:44,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:44,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:44,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:44,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:27:44,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:27:44,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:45,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:45,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:45,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:45,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:27:45,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:27:45,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:48,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:48,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:48,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:48,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:27:48,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:27:48,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:48,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:48,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:48,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:48,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:27:48,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:27:48,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:49,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:49,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:49,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:49,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:27:49,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:27:49,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:50,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:50,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:50,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:50,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:27:50,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:27:50,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:50,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:50,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:50,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:51,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:27:51,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:27:51,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:51,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:27:51,580 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:27:51,661 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.152 +2025-10-02 02:27:51,662 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 02:27:51,662 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:27:51,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:51,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:51,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:51,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:27:51,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:27:51,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:54,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:54,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:54,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:54,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-02 02:27:54,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-02 02:27:54,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:55,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:55,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:55,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:55,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:27:55,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:27:55,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:57,903 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:27:57,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:27:57,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:27:58,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 02:27:58,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 02:27:58,184 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:27:58,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:58,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:58,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:58,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:27:58,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:27:58,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:27:59,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:27:59,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:59,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:59,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:27:59,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:27:59,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:01,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:01,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:01,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:01,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:28:01,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:28:01,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:03,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:03,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:03,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:03,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:28:03,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:28:03,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:04,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:04,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:04,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:04,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:28:04,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:28:04,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:06,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:06,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:06,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:06,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:28:06,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:28:06,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:06,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:06,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:06,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:06,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:28:06,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:28:06,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:07,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:07,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:07,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:07,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:28:07,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:28:07,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:08,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:08,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:08,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:09,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:28:09,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:28:09,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:09,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:09,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:09,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:09,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:28:09,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:28:09,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:10,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:10,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:10,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:10,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:28:10,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:28:10,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:13,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:13,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:13,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:13,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:28:13,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:28:13,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:13,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:13,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:13,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:13,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:28:13,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:28:13,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:14,920 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:28:14,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:14,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:15,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 02:28:15,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-02 02:28:15,196 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:28:15,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:15,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:15,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:15,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:28:15,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:28:15,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:15,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:15,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:15,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:15,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 02:28:15,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 02:28:15,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:16,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:16,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:16,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:16,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:28:16,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:28:16,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:19,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:19,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:19,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:19,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:28:19,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:28:19,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:19,605 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:28:19,630 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:28:19,706 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.809 +2025-10-02 02:28:19,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:28:19,707 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:28:20,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:20,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:20,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:20,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:28:20,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:28:20,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:21,649 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:28:21,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:21,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:21,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-02 02:28:21,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-02 02:28:21,912 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:28:22,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:22,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:22,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:22,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:28:22,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:28:22,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:23,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:23,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:23,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:23,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:28:23,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:28:23,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:23,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:23,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:23,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:23,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:28:23,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:28:23,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:23,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:23,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:23,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:24,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:28:24,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:28:24,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:24,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:24,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:24,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:24,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:28:24,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:28:24,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:25,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:25,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:25,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:25,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-02 02:28:25,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-02 02:28:25,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:26,126 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:28:26,152 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:28:26,240 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.563 +2025-10-02 02:28:26,240 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 02:28:26,243 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:28:26,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:26,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:26,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:27,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:28:27,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:28:27,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:27,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:27,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:27,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:27,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:28:27,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:28:27,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:29,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:29,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:29,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:29,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:28:29,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:28:29,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:29,489 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:28:29,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:29,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:29,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 02:28:29,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 02:28:29,777 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:28:30,161 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:28:30,183 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:28:30,262 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.343 +2025-10-02 02:28:30,262 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 02:28:30,263 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:28:32,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:32,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:32,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:32,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:28:32,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:28:32,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:32,981 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:28:32,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:33,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:33,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.244s +2025-10-02 02:28:33,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.244s (avg: 0.122s/image) +2025-10-02 02:28:33,226 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:28:33,472 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:28:33,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:33,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:33,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 02:28:33,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-02 02:28:33,743 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:28:34,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:34,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:34,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:34,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:28:34,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:28:34,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:34,904 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:28:34,944 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:28:35,034 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.927 +2025-10-02 02:28:35,035 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 02:28:35,036 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 02:28:36,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:36,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:36,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:36,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:28:36,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:28:36,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:38,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:38,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:38,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:38,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:28:38,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:28:38,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:39,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:39,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:39,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:39,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:28:39,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:28:39,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:40,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:40,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:40,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:40,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:28:40,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:28:40,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:40,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:40,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:40,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:40,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:28:40,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:28:40,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:41,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:41,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:41,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:41,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:28:41,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:28:41,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:41,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:41,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:41,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:42,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:28:42,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:28:42,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:42,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:42,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:42,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:42,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:28:42,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:28:42,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:43,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:43,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:43,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:44,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:28:44,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:28:44,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:44,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:44,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:44,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:44,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:28:44,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:28:44,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:45,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:45,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:45,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:45,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 02:28:45,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 02:28:45,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:46,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:46,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:46,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:46,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:28:46,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:28:46,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:47,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:47,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:47,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:47,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:28:47,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:28:47,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:48,667 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:28:48,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:48,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:48,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 02:28:48,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-02 02:28:48,937 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:28:49,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:49,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:49,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:49,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:28:49,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:28:49,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:49,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:49,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:49,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:49,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:28:49,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:28:49,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:50,347 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:28:50,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:50,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:50,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 02:28:50,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 02:28:50,628 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:28:52,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:52,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:52,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:52,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:28:52,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:28:52,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:52,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:52,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:52,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:52,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:28:52,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:28:52,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:52,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:52,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:53,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:53,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:28:53,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:28:53,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:54,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:54,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:54,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:54,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:28:54,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:28:54,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:56,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:56,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:56,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:56,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:28:56,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:28:56,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:57,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:57,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:57,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:57,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:28:57,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:28:57,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:57,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:57,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:57,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:58,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:28:58,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:28:58,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:58,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:58,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:58,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:58,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:28:58,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:28:58,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:28:59,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:28:59,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:59,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:59,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:28:59,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:28:59,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:00,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:00,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:00,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:01,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:29:01,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:29:01,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:03,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:03,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:03,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:03,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:29:03,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:29:03,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:06,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:06,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:06,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:06,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:29:06,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:29:06,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:09,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:09,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:10,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:10,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:29:10,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:29:10,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:15,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:15,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:15,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:16,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 02:29:16,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 02:29:16,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:16,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:16,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:16,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:16,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:29:16,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:29:16,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:21,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:21,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:21,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:21,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 02:29:21,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 02:29:21,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:21,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:21,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:21,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:21,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:29:21,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:29:21,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:25,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:25,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:25,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:25,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:29:25,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:29:25,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:25,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:25,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:25,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:26,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:29:26,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:29:26,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:27,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:27,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:27,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:27,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:29:27,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:29:27,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:30,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:30,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:30,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:30,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-02 02:29:30,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-02 02:29:30,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:34,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:34,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:34,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:34,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:29:34,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:29:34,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:34,714 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:29:34,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:29:34,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:29:34,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 02:29:34,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-02 02:29:34,991 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:29:38,469 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:29:38,497 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:29:38,596 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.116 +2025-10-02 02:29:38,597 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-02 02:29:38,599 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 02:29:39,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:39,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:39,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:39,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 02:29:39,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 02:29:39,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:40,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:40,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:40,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:40,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:29:40,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:29:40,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:41,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:41,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:41,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:41,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:29:41,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:29:41,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:43,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:43,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:43,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:43,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:29:43,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:29:43,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:45,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:45,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:45,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:45,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:29:45,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:29:45,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:45,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:45,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:45,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:45,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:29:45,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:29:45,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:46,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:46,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:46,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:46,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:29:46,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:29:46,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:48,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:29:48,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:29:48,708 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.356 +2025-10-02 02:29:48,709 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 02:29:48,709 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:29:48,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:48,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:48,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:49,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:29:49,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:29:49,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:49,185 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:29:49,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:29:49,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:29:49,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s +2025-10-02 02:29:49,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image) +2025-10-02 02:29:49,506 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:29:49,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:49,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:49,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:50,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:29:50,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:29:50,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:52,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:52,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:52,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:52,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:29:52,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:29:52,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:53,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:53,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:53,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:53,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:29:53,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:29:53,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:54,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:54,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:54,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:54,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:29:54,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:29:54,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:54,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:54,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:54,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:54,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:29:54,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:29:54,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:55,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:55,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:55,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:56,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:29:56,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:29:56,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:56,208 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:29:56,243 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:29:56,329 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.104 +2025-10-02 02:29:56,329 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 02:29:56,330 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:29:57,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:57,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:57,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:57,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:29:57,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:29:57,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:58,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:58,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:58,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:58,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:29:58,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:29:58,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:59,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:59,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:59,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:59,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:29:59,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:29:59,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:29:59,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:29:59,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:59,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:59,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-02 02:29:59,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-02 02:29:59,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:02,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:02,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:02,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:03,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:30:03,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:30:03,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:03,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:03,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:03,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:03,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:30:03,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:30:03,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:04,417 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:30:04,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:30:04,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:30:04,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-02 02:30:04,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-02 02:30:04,708 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:30:05,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:05,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:05,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:05,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:30:05,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:30:05,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:07,990 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:30:08,031 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:30:08,112 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.423 +2025-10-02 02:30:08,113 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 02:30:08,113 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:30:10,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:10,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:10,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:10,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:30:10,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:30:10,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:11,434 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:30:11,458 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:30:11,538 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.840 +2025-10-02 02:30:11,538 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 02:30:11,538 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:30:12,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:12,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:12,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:12,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:30:12,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:30:12,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:14,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:30:14,551 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:30:14,632 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.156 +2025-10-02 02:30:14,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 02:30:14,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:30:15,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:15,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:15,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:15,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:30:15,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:30:15,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:16,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:16,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:16,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:16,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:30:16,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:30:16,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:16,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:16,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:16,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:16,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:30:16,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:30:16,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:19,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:19,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:19,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:20,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:30:20,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:30:20,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:25,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:25,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:25,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:25,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 02:30:25,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 02:30:25,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:25,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:25,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:25,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:26,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:30:26,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:30:26,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:26,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:26,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:26,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:26,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:30:26,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:30:26,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:27,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:27,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:27,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:27,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:30:27,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:30:27,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:30,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:30,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:30,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:30,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:30:30,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:30:30,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:31,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:31,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:31,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:31,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:30:31,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:30:31,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:31,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:31,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:31,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:31,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:30:31,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:30:31,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:32,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:32,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:32,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:32,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:30:32,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:30:32,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:34,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:34,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:34,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:34,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 02:30:34,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 02:30:34,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:35,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:35,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:35,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:35,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:30:35,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:30:35,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:37,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:37,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:37,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:37,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:30:37,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:30:37,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:38,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:38,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:38,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:38,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:30:38,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:30:38,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:39,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:39,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:39,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:39,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:30:39,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:30:39,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:40,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:40,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:40,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:40,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:30:40,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:30:40,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:44,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:44,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:44,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:44,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:30:44,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:30:44,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:44,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:44,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:44,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:44,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:30:44,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:30:44,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:44,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:44,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:44,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:44,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:30:44,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:30:44,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:44,925 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:30:44,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:30:44,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:30:45,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.256s +2025-10-02 02:30:45,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.256s (avg: 0.128s/image) +2025-10-02 02:30:45,182 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:30:47,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:47,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:47,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:47,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:30:47,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:30:47,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:49,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:49,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:49,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:50,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:30:50,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:30:50,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:50,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:50,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:50,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:50,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:30:50,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:30:50,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:50,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:50,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:50,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:50,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:30:50,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:30:50,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:52,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:52,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:52,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:52,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:30:52,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:30:52,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:52,354 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:30:52,376 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:30:52,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.339 +2025-10-02 02:30:52,471 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 02:30:52,472 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:30:53,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:53,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:53,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:53,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:30:53,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:30:53,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:56,520 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:30:56,547 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:30:56,642 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.234 +2025-10-02 02:30:56,643 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-02 02:30:56,644 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 02:30:56,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:56,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:56,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:57,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:30:57,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:30:57,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:58,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:58,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:58,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:58,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:30:58,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:30:58,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:30:59,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:30:59,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:59,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:59,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:30:59,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:30:59,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:03,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:03,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:03,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:03,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:31:03,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:31:03,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:03,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:31:03,890 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:31:03,976 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.758 +2025-10-02 02:31:03,976 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 02:31:03,978 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:31:04,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:04,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:04,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:05,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:31:05,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:31:05,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:05,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:05,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:05,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:06,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:31:06,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:31:06,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:06,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:06,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:06,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:06,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:31:06,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:31:06,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:07,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:07,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:07,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:07,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:31:07,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:31:07,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:10,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:10,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:10,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:10,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:31:10,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:31:10,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:11,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:11,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:12,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:12,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:31:12,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:31:12,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:16,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:16,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:16,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:16,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:31:16,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:31:16,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:16,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:16,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:16,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:16,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:31:16,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:31:16,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:16,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:16,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:16,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:16,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:31:16,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:31:16,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:17,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:17,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:17,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:17,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:31:17,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:31:17,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:19,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:19,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:19,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:19,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:31:19,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:31:19,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:20,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:20,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:20,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:20,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:31:20,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:31:20,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:20,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:20,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:20,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:21,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:31:21,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:31:21,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:21,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:21,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:21,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:21,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:31:21,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:31:21,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:22,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:22,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:22,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:22,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:31:22,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:31:22,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:23,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:23,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:23,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:23,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:31:23,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:31:23,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:25,646 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:31:25,682 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:31:25,772 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.409 +2025-10-02 02:31:25,772 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 02:31:25,773 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:31:26,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:26,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:26,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:26,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:31:26,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:31:26,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:26,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:26,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:26,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:26,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:31:26,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:31:26,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:27,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:27,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:27,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:27,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:31:27,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:31:27,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:27,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:27,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:27,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:28,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:31:28,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:31:28,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:28,513 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:31:28,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:31:28,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:31:28,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 02:31:28,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 02:31:28,813 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:31:29,016 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:31:29,037 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:31:29,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.169 +2025-10-02 02:31:29,122 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 02:31:29,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 02:31:29,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:29,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:29,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:29,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:31:29,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:31:29,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:30,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:30,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:30,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:30,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:31:30,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:31:30,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:33,759 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:31:33,793 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:31:33,882 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.825 +2025-10-02 02:31:33,883 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 02:31:33,883 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:31:34,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:34,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:34,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:34,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:31:34,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:31:34,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:34,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:34,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:34,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:34,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:31:34,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:31:34,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:35,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:35,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:35,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:35,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:31:35,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:31:35,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:36,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:36,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:36,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:36,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:31:36,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:31:36,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:36,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:36,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:36,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:37,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:31:37,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:31:37,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:38,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:38,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:38,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:38,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:31:38,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:31:38,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:39,277 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:31:39,307 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 751, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:31:39,389 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.451 +2025-10-02 02:31:39,390 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 02:31:39,391 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:31:40,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:40,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:40,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:40,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:31:40,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:31:40,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:41,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:41,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:41,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:41,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:31:41,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:31:41,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:42,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:42,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:42,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:42,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:31:42,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:31:42,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:43,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:43,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:43,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:43,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:31:43,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:31:43,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:45,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:45,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:45,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:45,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:31:45,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:31:45,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:48,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:48,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:48,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:48,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:31:48,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:31:48,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:48,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:48,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:48,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:49,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:31:49,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:31:49,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:49,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:49,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:49,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:49,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:31:49,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:31:49,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:49,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:49,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:49,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:50,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:31:50,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:31:50,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:53,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:53,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:53,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:53,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:31:53,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:31:53,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:54,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:54,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:54,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:54,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:31:54,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:31:54,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:54,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:54,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:54,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:55,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:31:55,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:31:55,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:58,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:58,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:58,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:58,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:31:58,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:31:58,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:31:58,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:31:58,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:58,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:59,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:31:59,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:31:59,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:01,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:01,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:01,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:01,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:32:01,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:32:01,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:01,833 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:32:01,861 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:32:01,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=186.988 +2025-10-02 02:32:01,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 02:32:01,947 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:32:02,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:02,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:02,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:02,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:32:02,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:32:02,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:03,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:03,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:03,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:03,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:32:03,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:32:03,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:03,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:03,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:03,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:03,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:32:03,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:32:03,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:06,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:06,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:06,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:06,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:32:06,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:32:06,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:09,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:09,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:09,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:09,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:32:09,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:32:09,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:10,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:10,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:10,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:10,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:32:10,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:32:10,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:13,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:13,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:13,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:13,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:32:13,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:32:13,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:14,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:32:14,499 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:32:14,579 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.662 +2025-10-02 02:32:14,579 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 02:32:14,579 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:32:16,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:16,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:16,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:16,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:32:16,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:32:16,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:18,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:18,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:18,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:18,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:32:18,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:32:18,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:19,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:19,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:20,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:20,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:32:20,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:32:20,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:20,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:20,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:20,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:20,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:32:20,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:32:20,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:21,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:21,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:21,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:21,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:32:21,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:32:21,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:22,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:22,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:22,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:22,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:32:22,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:32:22,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:22,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:22,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:22,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:23,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:32:23,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:32:23,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:24,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:24,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:24,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:24,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:32:24,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:32:24,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:27,313 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:32:27,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:32:27,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:32:27,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 02:32:27,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 02:32:27,598 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:32:28,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:28,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:28,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:28,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:32:28,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:32:28,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:29,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:29,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:29,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:29,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:32:29,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:32:29,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:30,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:30,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:30,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:31,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:32:31,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:32:31,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:31,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:31,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:31,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:31,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:32:31,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:32:31,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:32,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:32,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:32,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:32,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:32:32,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:32:32,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:33,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:33,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:33,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:33,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:32:33,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:32:33,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:34,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:34,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:34,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:34,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:32:34,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:32:34,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:34,543 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:32:34,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:32:34,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:32:34,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s +2025-10-02 02:32:34,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.323s (avg: 0.162s/image) +2025-10-02 02:32:34,867 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:32:37,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:37,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:37,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:38,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:32:38,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:32:38,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:38,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:38,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:38,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:38,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:32:38,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:32:38,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:38,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:38,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:38,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:39,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:32:39,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:32:39,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:39,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:39,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:39,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:39,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:32:39,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:32:39,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:40,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:40,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:40,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:40,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:32:40,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:32:40,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:42,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:42,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:42,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:42,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:32:42,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:32:42,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:43,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:43,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:43,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:43,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:32:43,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:32:43,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:46,585 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:32:46,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:32:46,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:32:46,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 02:32:46,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-02 02:32:46,863 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:32:47,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:47,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:47,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:48,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:32:48,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:32:48,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:48,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:48,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:48,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:48,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:32:48,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:32:48,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:51,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:51,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:51,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:51,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:32:51,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:32:51,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:51,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:51,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:51,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:52,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:32:52,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:32:52,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:52,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:52,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:52,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:52,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:32:52,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:32:52,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:53,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:53,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:53,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:53,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:32:53,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:32:53,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:56,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:56,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:56,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:56,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:32:56,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:32:56,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:57,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:57,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:57,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:57,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:32:57,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:32:57,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:32:57,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:32:57,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:57,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:57,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:32:57,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:32:57,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:00,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:00,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:00,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:00,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:33:00,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:33:00,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:00,339 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:33:00,362 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:33:00,445 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.623 +2025-10-02 02:33:00,446 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 02:33:00,449 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:33:00,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:00,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:00,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:00,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:33:00,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:33:00,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:02,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:02,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:02,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:02,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:33:02,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:33:02,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:04,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:04,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:04,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:04,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:33:04,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:33:04,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:05,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:05,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:05,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:05,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:33:05,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:33:05,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:07,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:07,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:07,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:07,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:33:07,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:33:07,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:08,222 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:33:08,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:33:08,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:33:08,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-02 02:33:08,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-02 02:33:08,527 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:33:08,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:08,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:08,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:08,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:33:08,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:33:08,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:09,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:09,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:09,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:09,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:33:09,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:33:09,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:10,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:10,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:10,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:10,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:33:10,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:33:10,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:13,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:13,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:13,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:13,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:33:13,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:33:13,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:14,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:14,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:14,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:14,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:33:14,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:33:14,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:14,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:14,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:14,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:15,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:33:15,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:33:15,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:15,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:15,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:15,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:16,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:33:16,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:33:16,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:17,406 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:33:17,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:33:17,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:33:17,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 02:33:17,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 02:33:17,705 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:33:17,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:17,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:18,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:18,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:33:18,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:33:18,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:18,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:18,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:18,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:18,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:33:18,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:33:18,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:20,640 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:33:20,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:33:20,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:33:20,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-02 02:33:20,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-02 02:33:20,921 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:33:21,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:21,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:21,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:21,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:33:21,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:33:21,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:21,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:21,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:21,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:21,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:33:21,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:33:21,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:22,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:22,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:22,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:23,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:33:23,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:33:23,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:25,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:25,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:25,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:25,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:33:25,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:33:25,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:25,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:25,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:25,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:25,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:33:25,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:33:25,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:25,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:25,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:25,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:26,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:33:26,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:33:26,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:26,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:26,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:26,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:27,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:33:27,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:33:27,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:28,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:28,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:28,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:28,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +2025-10-02 02:33:28,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +2025-10-02 02:33:28,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:29,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:29,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:29,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:29,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:33:29,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:33:29,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:30,247 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:33:30,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:33:30,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:33:30,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 02:33:30,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 02:33:30,531 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:33:34,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:34,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:34,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:34,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:33:34,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:33:34,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:34,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:34,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:34,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:34,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:33:34,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:33:34,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:35,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:35,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:35,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:35,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:33:35,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:33:35,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:35,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:35,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:35,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:35,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:33:35,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:33:35,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:38,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:38,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:38,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:38,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:33:38,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:33:38,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:42,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:42,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:42,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:42,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:33:42,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:33:42,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:44,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:44,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:44,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:45,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:33:45,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:33:45,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:47,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:47,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:47,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:48,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:33:48,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:33:48,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:48,246 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:33:48,261 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:33:48,338 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.541 +2025-10-02 02:33:48,339 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:33:48,339 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:33:48,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:48,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:48,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:49,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:33:49,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:33:49,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:49,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:49,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:49,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:49,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:33:49,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:33:49,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:52,211 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:33:52,232 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:33:52,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.470 +2025-10-02 02:33:52,319 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 02:33:52,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:33:52,412 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:33:52,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(743, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:33:52,497 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.349 +2025-10-02 02:33:52,498 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-02 02:33:52,498 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 02:33:53,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:53,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:53,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:54,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:33:54,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:33:54,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:54,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:54,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:54,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:54,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:33:54,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:33:54,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:33:56,188 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:33:56,214 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:33:56,297 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.849 +2025-10-02 02:33:56,297 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 02:33:56,298 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:33:57,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:33:57,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:57,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:57,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:33:57,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:33:57,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:05,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:05,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:05,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:05,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:34:05,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:34:05,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:07,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:07,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:07,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:07,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:34:07,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:34:07,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:08,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:08,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:08,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:08,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:34:08,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:34:08,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:10,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:10,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:10,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:10,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:34:10,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:34:10,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:11,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:11,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:11,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:11,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:34:11,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:34:11,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:12,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:12,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:12,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:12,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:34:12,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:34:12,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:15,396 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:34:15,434 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(986, 986, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:34:15,535 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=156.641 +2025-10-02 02:34:15,535 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-02 02:34:15,537 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-02 02:34:16,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:16,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:16,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:16,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:34:16,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:34:16,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:17,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:17,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:17,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:17,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:34:17,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:34:17,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:18,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:18,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:18,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:18,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:34:18,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:34:18,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:20,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:20,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:20,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:20,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:34:20,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:34:20,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:33,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:33,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:33,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:33,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:34:33,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:34:33,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:38,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:38,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:38,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:38,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:34:38,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:34:38,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:39,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:39,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:39,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:39,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:34:39,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:34:39,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:40,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:40,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:40,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:41,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:34:41,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:34:41,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:42,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:42,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:42,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:42,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:34:42,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:34:42,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:43,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:43,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:43,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:43,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:34:43,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:34:43,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:44,070 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:34:44,095 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:34:44,188 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.717 +2025-10-02 02:34:44,188 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 02:34:44,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 02:34:46,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:46,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:46,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:46,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:34:46,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:34:46,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:48,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:48,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:48,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:48,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:34:48,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:34:48,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:49,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:49,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:49,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:49,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:34:49,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:34:49,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:49,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:49,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:49,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:49,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:34:49,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:34:49,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:52,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:52,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:52,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:52,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:34:52,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:34:52,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:54,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:54,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:54,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:54,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:34:54,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:34:54,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:55,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:55,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:55,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:55,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:34:55,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:34:55,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:55,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:55,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:55,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:55,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:34:55,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:34:55,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:56,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:56,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:56,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:56,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:34:56,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:34:56,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:57,350 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:34:57,373 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:34:57,466 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.984 +2025-10-02 02:34:57,466 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 02:34:57,467 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 02:34:57,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:57,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:57,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:58,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:34:58,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:34:58,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:34:59,499 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:34:59,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:34:59,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:34:59,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-02 02:34:59,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-02 02:34:59,766 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:34:59,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:34:59,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:59,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:00,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +2025-10-02 02:35:00,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image) +2025-10-02 02:35:00,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:00,584 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:35:00,610 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:35:00,699 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.670 +2025-10-02 02:35:00,699 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 02:35:00,701 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 02:35:01,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:01,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:01,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:01,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:35:01,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:35:01,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:02,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:02,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:02,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:02,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:35:02,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:35:02,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:03,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:03,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:03,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:03,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:35:03,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:35:03,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:03,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:03,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:03,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:03,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:35:03,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:35:03,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:03,902 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:35:03,926 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:35:04,013 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.457 +2025-10-02 02:35:04,013 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 02:35:04,015 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:35:04,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:04,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:04,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:04,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:35:04,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:35:04,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:10,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:10,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:10,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:11,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:35:11,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:35:11,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:12,181 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:35:12,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:35:12,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:35:12,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-02 02:35:12,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-02 02:35:12,493 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:35:15,300 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:35:15,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:35:15,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:35:15,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 02:35:15,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-02 02:35:15,607 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:35:15,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:15,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:15,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:15,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:35:15,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:35:15,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:16,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:16,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:16,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:16,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:35:16,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:35:16,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:17,109 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:35:17,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:35:17,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:35:17,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 02:35:17,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 02:35:17,388 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:35:17,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:17,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:17,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:17,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:35:17,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:35:17,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:20,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:20,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:20,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:20,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:35:20,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:35:20,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:21,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:21,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:21,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:21,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:35:21,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:35:21,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:23,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:23,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:23,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:23,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:35:23,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:35:23,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:23,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:23,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:23,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:23,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:35:23,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:35:23,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:24,306 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:35:24,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:35:24,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:35:24,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 02:35:24,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-02 02:35:24,577 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:35:25,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:25,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:25,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:25,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:35:25,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:35:25,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:25,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:25,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:25,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:25,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:35:25,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:35:25,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:26,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:26,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:26,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:26,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:35:26,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:35:26,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:26,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:26,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:26,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:27,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:35:27,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:35:27,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:27,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:27,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:27,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:27,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:35:27,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:35:27,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:28,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:28,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:28,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:28,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:35:28,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:35:28,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:29,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:29,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:29,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:29,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:35:29,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:35:29,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:30,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:30,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:30,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:30,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:35:30,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:35:30,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:31,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:31,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:31,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:31,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:35:31,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:35:31,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:31,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:31,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:31,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:31,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:35:31,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:35:31,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:32,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:32,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:32,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:32,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:35:32,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:35:32,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:32,547 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:35:32,570 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:35:32,649 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.088 +2025-10-02 02:35:32,649 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 02:35:32,649 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:35:32,831 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:35:32,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:35:32,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:35:33,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 02:35:33,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 02:35:33,118 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:35:33,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:33,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:33,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:33,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:35:33,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:35:33,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:34,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:34,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:34,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:34,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:35:34,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:35:34,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:35,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:35,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:35,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:35,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:35:35,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:35:35,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:36,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:36,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:36,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:36,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:35:36,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:35:36,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:36,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:36,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:36,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:36,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:35:36,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:35:36,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:38,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:38,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:38,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:38,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:35:38,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:35:38,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:39,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:39,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:39,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:40,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:35:40,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:35:40,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:40,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:40,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:40,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:40,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:35:40,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:35:40,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:40,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:40,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:40,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:41,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:35:41,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:35:41,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:42,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:42,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:42,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:42,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:35:42,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:35:42,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:42,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:42,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:42,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:42,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:35:42,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:35:42,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:42,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:42,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:42,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:42,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:35:42,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:35:42,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:45,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:45,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:45,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:45,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:35:45,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:35:45,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:45,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:45,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:45,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:45,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:35:45,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:35:45,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:46,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:46,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:46,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:46,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:35:46,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:35:46,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:46,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:46,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:46,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:47,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:35:47,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:35:47,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:48,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:48,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:48,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:48,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:35:48,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:35:48,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:49,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:49,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:49,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:49,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:35:49,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:35:49,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:49,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:49,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:49,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:49,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:35:49,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:35:49,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:51,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:51,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:51,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:51,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:35:51,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:35:51,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:51,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:51,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:51,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:52,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:35:52,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:35:52,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:52,168 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:35:52,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:35:52,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:35:52,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 02:35:52,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 02:35:52,458 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:35:52,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:52,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:53,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:53,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:35:53,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:35:53,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:54,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:54,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:54,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:54,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:35:54,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:35:54,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:55,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:55,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:55,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:55,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:35:55,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:35:55,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:56,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:56,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:56,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:56,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:35:56,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:35:56,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:35:59,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:35:59,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:59,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:59,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:35:59,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:35:59,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:02,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:02,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:02,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:02,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:36:02,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:36:02,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:02,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:02,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:02,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:02,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:36:02,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:36:02,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:02,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:02,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:02,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:02,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:36:02,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:36:02,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:03,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:03,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:03,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:04,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:36:04,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:36:04,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:04,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:04,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:04,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:04,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:36:04,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:36:04,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:08,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:08,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:08,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:08,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:36:08,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:36:08,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:08,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:08,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:08,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:08,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:36:08,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:36:08,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:09,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:09,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:09,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:09,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:36:09,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:36:09,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:10,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:10,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:10,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:10,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:36:10,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:36:10,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:10,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:10,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:10,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:10,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:36:10,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:36:10,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:13,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:13,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:13,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:13,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:36:13,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:36:13,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:14,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:14,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:14,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:14,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:36:14,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:36:14,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:14,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:14,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:14,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:14,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:36:14,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:36:14,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:15,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:15,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:15,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:16,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:36:16,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:36:16,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:18,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:18,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:18,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:18,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:36:18,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:36:18,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:18,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:18,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:18,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:18,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:36:18,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:36:18,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:24,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:24,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:24,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:24,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 02:36:24,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 02:36:24,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:26,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:26,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:26,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:26,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:36:26,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:36:26,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:28,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:36:28,380 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:36:28,460 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.091 +2025-10-02 02:36:28,461 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 02:36:28,461 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:36:33,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:33,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:33,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:33,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:36:33,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:36:33,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:33,551 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:36:33,572 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:36:33,649 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.572 +2025-10-02 02:36:33,649 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:36:33,651 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:36:34,632 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:36:34,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:36:34,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:36:34,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 02:36:34,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 02:36:34,920 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:36:37,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:37,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:37,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:37,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:36:37,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:36:37,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:39,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:39,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:39,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:39,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:36:39,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:36:39,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:42,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:42,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:42,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:42,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:36:42,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:36:42,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:43,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:43,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:43,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:43,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:36:43,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:36:43,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:43,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:43,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:43,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:43,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:36:43,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:36:43,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:47,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:47,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:47,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:47,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:36:47,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:36:47,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:51,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:51,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:51,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:51,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:36:51,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:36:51,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:52,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:52,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:52,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:52,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:36:52,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:36:52,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:53,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:53,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:53,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:53,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:36:53,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:36:53,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:53,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:53,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:53,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:53,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:36:53,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:36:53,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:54,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:54,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:54,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:54,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:36:54,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:36:54,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:58,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:58,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:58,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:58,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:36:58,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:36:58,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:36:59,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:36:59,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:59,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:59,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:36:59,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:36:59,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:02,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:02,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:02,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:02,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:37:02,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:37:02,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:02,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:02,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:02,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:02,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:37:02,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:37:02,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:04,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:04,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:04,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:04,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:37:04,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:37:04,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:05,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:05,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:05,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:05,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:37:05,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:37:05,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:05,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:05,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:05,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:05,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:37:05,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:37:05,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:05,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:05,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:05,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:05,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:37:05,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:37:05,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:07,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:07,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:08,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:08,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:37:08,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:37:08,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:11,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:11,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:11,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:11,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:37:11,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:37:11,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:12,227 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:12,264 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:12,359 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.028 +2025-10-02 02:37:12,359 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 02:37:12,361 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 02:37:13,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:13,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:13,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:13,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:37:13,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:37:13,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:13,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:13,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:13,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:13,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:37:13,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:37:13,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:16,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:16,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:16,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:16,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:37:16,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:37:16,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:16,915 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:16,946 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:17,038 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.103 +2025-10-02 02:37:17,038 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 02:37:17,038 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 02:37:18,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:18,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:18,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:18,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:37:18,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:37:18,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:18,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:18,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:18,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:18,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:37:18,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:37:18,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:19,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:19,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:19,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:19,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:37:19,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:37:19,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:20,969 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:20,995 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:21,081 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.937 +2025-10-02 02:37:21,082 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 02:37:21,083 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:37:21,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:21,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:21,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:21,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:37:21,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:37:21,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:22,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:22,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:22,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:22,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:37:22,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:37:22,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:24,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:24,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:24,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:24,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:37:24,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:37:24,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:26,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:26,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:26,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:26,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 02:37:26,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 02:37:26,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:27,203 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:27,225 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:27,309 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.244 +2025-10-02 02:37:27,309 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 02:37:27,309 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:37:28,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:28,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:28,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:29,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:37:29,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:37:29,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:29,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:29,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:29,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:29,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:37:29,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:37:29,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:30,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:30,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:31,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:31,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:37:31,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:37:31,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:31,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:31,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:31,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:31,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 02:37:31,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 02:37:31,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:34,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:34,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:34,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:35,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:37:35,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:37:35,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:35,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:35,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:35,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:35,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:37:35,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:37:35,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:37,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:37,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:37,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:37,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 02:37:37,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 02:37:37,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:37,435 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:37,461 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:37,550 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.155 +2025-10-02 02:37:37,550 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 02:37:37,551 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:37:37,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:37,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:37,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:37,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:37:37,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:37:37,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:38,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:38,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:38,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:38,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:37:38,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:37:38,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:39,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:39,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:39,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:39,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:37:39,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:37:39,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:41,236 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:37:41,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:37:41,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:37:41,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.333s +2025-10-02 02:37:41,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.333s (avg: 0.167s/image) +2025-10-02 02:37:41,571 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:37:41,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:41,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:41,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:41,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:37:41,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:37:41,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:43,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:43,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:43,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:43,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:37:43,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:37:43,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:43,528 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:43,554 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:43,648 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.241 +2025-10-02 02:37:43,648 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 02:37:43,650 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:37:44,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:44,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:44,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:44,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:37:44,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:37:44,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:46,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:46,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:46,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:46,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:37:46,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:37:46,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:49,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:49,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:49,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:49,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:37:49,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:37:49,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:49,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:49,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:50,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:50,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:37:50,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:37:50,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:50,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:50,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:50,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:50,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:37:50,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:37:50,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:53,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:53,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:53,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:53,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:37:53,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:37:53,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:53,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:53,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:53,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:53,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:37:53,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:37:53,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:55,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:55,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:55,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:56,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:37:56,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:37:56,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:37:58,451 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:58,468 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:58,556 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.524 +2025-10-02 02:37:58,557 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 02:37:58,557 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:37:58,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:37:58,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:58,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:58,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 02:37:58,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 02:37:58,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:01,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:01,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:01,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:01,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:38:01,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:38:01,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:01,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:01,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:01,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:02,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:38:02,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:38:02,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:03,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:03,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:03,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:03,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:38:03,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:38:03,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:05,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:05,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:05,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:05,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:38:05,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:38:05,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:05,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:05,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:05,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:06,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:38:06,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:38:06,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:09,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:09,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:09,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:09,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:38:09,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:38:09,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:09,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:09,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:09,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:09,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:38:09,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:38:09,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:12,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:12,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:12,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:12,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:38:12,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:38:12,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:14,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:14,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:14,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:14,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:38:14,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:38:14,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:18,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:18,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:19,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:19,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:38:19,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:38:19,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:25,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:25,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:25,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:25,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:38:25,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:38:25,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:26,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:26,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:26,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:26,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:38:26,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:38:26,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:27,076 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:38:27,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:38:27,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:38:27,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 02:38:27,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 02:38:27,366 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:38:29,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:29,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:29,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:29,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:38:29,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:38:29,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:29,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:29,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:29,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:30,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:38:30,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:38:30,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:30,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:30,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:30,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:30,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:38:30,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:38:30,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:35,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:35,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:35,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:35,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:38:35,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:38:35,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:35,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:35,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:35,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:35,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:38:35,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:38:35,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:38,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:38,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:38,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:38,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:38:38,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:38:38,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:39,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:39,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:39,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:39,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:38:39,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:38:39,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:40,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:40,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:40,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:40,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:38:40,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:38:40,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:41,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:41,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:42,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:42,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:38:42,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:38:42,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:44,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:44,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:44,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:44,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:38:44,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:38:44,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:46,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:46,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:46,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:46,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:38:46,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:38:46,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:47,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:47,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:47,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:48,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:38:48,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:38:48,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:49,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:49,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:49,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:49,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:38:49,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:38:49,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:49,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:49,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:49,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:49,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:38:49,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:38:49,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:51,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:51,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:51,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:51,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:38:51,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:38:51,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:52,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:52,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:52,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:52,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:38:52,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:38:52,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:53,138 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:38:53,164 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:38:53,248 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.828 +2025-10-02 02:38:53,249 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 02:38:53,249 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:38:54,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:54,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:54,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:54,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:38:54,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:38:54,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:54,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:54,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:54,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:55,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:38:55,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:38:55,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:38:58,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:38:58,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:58,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:58,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:38:58,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:38:58,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:00,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:00,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:00,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:01,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:39:01,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:39:01,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:02,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:02,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:02,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:02,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:39:02,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:39:02,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:04,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:04,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:04,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:04,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:39:04,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:39:04,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:04,451 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:39:04,477 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:39:04,560 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.215 +2025-10-02 02:39:04,560 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 02:39:04,560 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:39:05,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:05,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:05,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:05,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:39:05,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:39:05,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:07,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:07,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:07,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:07,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:39:07,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:39:07,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:08,872 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:39:08,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:39:08,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:39:09,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-02 02:39:09,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-02 02:39:09,137 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:39:11,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:11,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:11,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:11,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:39:11,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:39:11,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:14,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:14,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:14,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:14,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:39:14,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:39:14,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:16,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:16,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:16,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:16,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:39:16,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:39:16,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:18,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:18,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:18,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:18,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:39:18,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:39:18,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:20,138 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:39:20,172 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:39:20,261 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.746 +2025-10-02 02:39:20,261 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 02:39:20,262 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:39:21,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:21,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:21,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:21,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:39:21,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:39:21,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:21,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:21,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:21,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:21,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:39:21,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:39:21,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:22,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:22,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:23,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:23,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:39:23,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:39:23,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:24,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:24,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:24,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:24,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:39:24,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:39:24,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:24,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:39:24,728 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:39:24,815 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.538 +2025-10-02 02:39:24,815 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 02:39:24,815 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:39:24,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:24,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:24,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:25,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:39:25,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:39:25,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:28,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:28,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:28,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:28,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:39:28,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:39:28,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:29,253 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:39:29,279 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:39:29,368 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.110 +2025-10-02 02:39:29,368 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 02:39:29,369 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:39:30,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:30,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:30,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:30,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:39:30,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:39:30,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:31,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:31,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:31,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:31,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:39:31,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:39:31,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:32,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:32,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:32,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:32,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:39:32,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:39:32,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:33,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:33,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:33,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:33,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:39:33,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:39:33,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:34,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:34,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:34,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:35,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:39:35,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:39:35,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:35,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:35,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:35,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:35,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:39:35,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:39:35,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:36,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:36,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:36,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:36,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:39:36,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:39:36,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:37,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:37,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:37,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:37,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:39:37,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:39:37,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:38,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:38,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:38,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:38,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:39:38,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:39:38,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:39,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:39,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:39,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:39,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:39:39,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:39:39,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:41,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:41,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:41,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:41,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:39:41,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:39:41,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:41,780 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:39:41,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:39:41,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:39:42,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 02:39:42,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 02:39:42,074 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:39:42,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:42,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:42,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:42,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:39:42,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:39:42,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:44,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:44,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:44,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:44,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:39:44,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:39:44,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:45,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:45,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:45,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:45,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:39:45,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:39:45,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:45,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:45,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:45,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:45,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:39:45,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:39:45,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:46,394 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:39:46,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:39:46,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:39:46,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 02:39:46,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-02 02:39:46,660 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:39:46,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:46,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:46,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:46,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:39:46,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:39:46,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:48,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:48,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:48,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:48,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:39:48,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:39:48,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:50,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:50,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:50,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:50,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:39:50,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:39:50,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:51,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:51,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:51,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:51,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:39:51,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:39:51,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:51,818 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:39:51,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:39:51,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:39:52,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 02:39:52,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-02 02:39:52,119 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:39:55,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:55,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:55,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:55,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:39:55,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:39:55,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:57,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:57,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:57,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:57,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:39:57,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:39:57,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:57,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:57,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:57,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:57,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:39:57,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:39:57,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:39:59,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:39:59,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:59,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:00,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:40:00,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:40:00,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:04,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:04,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:04,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:04,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:40:04,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:40:04,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:08,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:08,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:08,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:08,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:40:08,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:40:08,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:11,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:11,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:11,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:11,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:40:11,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:40:11,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:14,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:14,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:14,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:14,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:40:14,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:40:14,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:15,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:15,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:15,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:15,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:40:15,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:40:15,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:17,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:17,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:17,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:17,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:40:17,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:40:17,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:17,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:17,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:17,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:17,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:40:17,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:40:17,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:21,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:21,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:21,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:21,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:40:21,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:40:21,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:29,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:29,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:29,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:29,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:40:29,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:40:29,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:30,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:30,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:30,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:30,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:40:30,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:40:30,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:32,719 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:40:32,741 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:40:32,833 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.346 +2025-10-02 02:40:32,833 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 02:40:32,835 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 02:40:35,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:35,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:35,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:36,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:40:36,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:40:36,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:36,313 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:40:36,335 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:40:36,428 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.562 +2025-10-02 02:40:36,428 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 02:40:36,430 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 02:40:39,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:39,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:39,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:39,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:40:39,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:40:39,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:39,994 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:40:40,018 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:40:40,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.278 +2025-10-02 02:40:40,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 02:40:40,110 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 02:40:42,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:42,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:42,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:42,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:40:42,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:40:42,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:45,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:40:45,575 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:40:45,664 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.477 +2025-10-02 02:40:45,664 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 02:40:45,664 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:40:46,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:46,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:46,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:46,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:40:46,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:40:46,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:48,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:48,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:48,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:48,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:40:48,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:40:48,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:49,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:49,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:49,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:49,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:40:49,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:40:49,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:50,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:50,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:50,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:50,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:40:50,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:40:50,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:51,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:51,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:51,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:51,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:40:51,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:40:51,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:54,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:54,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:54,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:54,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:40:54,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:40:54,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:54,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:54,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:54,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:54,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:40:54,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:40:54,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:55,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:40:55,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:55,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:55,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:40:55,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:40:55,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:40:57,143 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:40:57,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:40:57,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:40:57,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 02:40:57,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 02:40:57,421 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:41:00,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:00,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:01,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:01,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:41:01,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:41:01,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:04,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:04,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:05,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:05,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:41:05,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:41:05,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:06,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:06,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:07,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:07,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:41:07,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:41:07,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:07,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:07,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:07,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:07,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:41:07,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:41:07,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:08,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:08,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:08,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:08,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:41:08,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:41:08,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:09,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:09,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:09,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:10,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:41:10,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:41:10,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:13,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:13,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:13,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:13,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:41:13,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:41:13,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:14,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:14,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:14,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:14,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:41:14,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:41:14,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:14,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:14,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:14,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:14,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:41:14,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:41:14,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:17,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:17,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:17,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:17,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:41:17,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:41:17,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:19,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:19,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:19,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:20,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:41:20,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:41:20,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:23,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:23,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:23,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:24,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:41:24,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:41:24,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:25,410 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:41:25,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:25,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:25,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 02:41:25,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 02:41:25,703 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:41:26,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:26,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:26,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:27,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:41:27,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:41:27,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:28,033 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:41:28,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:28,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:28,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 02:41:28,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 02:41:28,327 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:41:31,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:31,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:31,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:31,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:41:31,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:41:31,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:32,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:32,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:32,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:32,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:41:32,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:41:32,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:33,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:33,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:33,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:33,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:41:33,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:41:33,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:33,920 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:41:33,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:33,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:34,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 02:41:34,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 02:41:34,209 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:41:37,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:37,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:37,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:37,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:41:37,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:41:37,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:38,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:38,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:38,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:38,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:41:38,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:41:38,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:39,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:39,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:39,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:39,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:41:39,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:41:39,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:42,763 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:41:42,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:42,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:43,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 02:41:43,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 02:41:43,060 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:41:43,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:43,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:43,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:43,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:41:43,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:41:43,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:43,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:43,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:43,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:43,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +2025-10-02 02:41:43,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image) +2025-10-02 02:41:43,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:45,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:45,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:45,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:45,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:41:45,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:41:45,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:45,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:45,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:45,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:45,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:41:45,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:41:45,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:46,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:46,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:46,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:46,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:41:46,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:41:46,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:47,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:47,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:47,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:47,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:41:47,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:41:47,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:47,932 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:41:47,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:47,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:48,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 02:41:48,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-02 02:41:48,199 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:41:48,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:48,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:48,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:48,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:41:48,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:41:48,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:50,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:50,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:50,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:50,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:41:50,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:41:50,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:51,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:51,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:51,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:51,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:41:51,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:41:51,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:51,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:51,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:51,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:51,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:41:51,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:41:51,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:51,942 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:41:51,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:51,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:52,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.236s +2025-10-02 02:41:52,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.236s (avg: 0.118s/image) +2025-10-02 02:41:52,179 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:41:52,446 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:41:52,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:52,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:52,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.252s +2025-10-02 02:41:52,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.252s (avg: 0.126s/image) +2025-10-02 02:41:52,700 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:41:55,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:55,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:56,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:56,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:41:56,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:41:56,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:56,245 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:41:56,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:56,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:56,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-02 02:41:56,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +2025-10-02 02:41:56,505 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:41:56,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:56,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:56,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:56,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:41:56,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:41:56,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:57,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:57,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:57,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:57,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:41:57,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:41:57,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:58,854 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:41:58,873 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:41:58,956 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.475 +2025-10-02 02:41:58,957 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 02:41:58,957 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:41:58,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:58,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:59,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:59,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:41:59,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:41:59,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:59,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:59,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:59,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:59,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:41:59,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:41:59,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:41:59,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:41:59,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:59,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:00,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:42:00,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:42:00,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:00,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:00,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:00,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:00,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:42:00,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:42:00,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:01,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:01,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:01,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:01,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:42:01,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:42:01,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:02,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:02,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:02,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:02,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:42:02,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:42:02,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:03,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:03,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:03,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:03,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:42:03,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:42:03,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:03,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:03,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:03,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:03,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:42:03,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:42:03,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:04,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:04,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:04,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:04,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:42:04,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:42:04,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:05,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:05,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:05,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:05,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:42:05,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:42:05,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:06,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:06,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:06,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:06,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:42:06,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:42:06,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:07,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:07,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:07,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:07,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:42:07,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:42:07,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:08,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:08,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:08,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:08,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:42:08,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:42:08,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:09,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:09,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:09,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:09,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:42:09,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:42:09,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:12,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:12,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:12,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:13,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:42:13,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:42:13,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:13,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:13,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:13,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:13,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:42:13,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:42:13,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:14,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:14,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:14,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:15,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:42:15,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:42:15,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:15,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:15,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:15,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:15,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:42:15,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:42:15,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:16,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:16,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:16,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:16,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:42:16,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:42:16,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:17,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:17,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:17,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:17,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:42:17,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:42:17,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:18,041 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:42:18,065 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:42:18,146 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.585 +2025-10-02 02:42:18,146 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 02:42:18,146 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:42:19,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:19,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:19,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:20,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:42:20,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:42:20,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:21,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:21,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:21,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:21,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:42:21,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:42:21,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:22,265 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:42:22,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:42:22,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:42:22,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 02:42:22,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 02:42:22,547 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:42:26,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:26,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:26,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:26,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:42:26,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:42:26,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:26,705 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:42:26,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:42:26,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:42:27,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 02:42:27,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 02:42:27,001 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:42:32,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:32,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:32,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:32,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:42:32,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:42:32,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:32,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:32,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:32,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:32,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:42:32,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:42:32,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:33,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:33,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:33,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:33,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:42:33,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:42:33,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:34,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:34,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:34,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:34,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:42:34,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:42:34,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:35,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:35,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:35,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:36,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:42:36,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:42:36,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:36,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:36,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:36,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:37,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:42:37,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:42:37,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:37,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:37,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:37,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:37,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:42:37,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:42:37,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:37,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:37,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:37,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:37,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:42:37,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:42:37,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:38,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:38,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:38,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:38,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:42:38,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:42:38,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:40,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:40,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:40,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:40,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:42:40,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:42:40,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:40,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:40,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:40,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:41,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:42:41,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:42:41,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:42,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:42,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:42,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:42,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:42:42,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:42:42,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:42,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:42,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:42,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:42,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:42:42,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:42:42,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:43,153 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:42:43,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:42:43,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:42:43,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 02:42:43,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 02:42:43,430 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:42:44,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:44,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:44,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:44,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:42:44,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:42:44,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:47,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:47,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:47,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:47,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:42:47,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:42:47,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:49,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:49,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:49,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:49,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:42:49,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:42:49,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:49,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:49,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:49,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:49,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:42:49,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:42:49,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:51,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:51,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:51,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:51,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:42:51,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:42:51,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:52,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:52,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:52,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:52,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:42:52,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:42:52,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:54,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:54,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:54,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:54,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:42:54,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:42:54,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:54,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:54,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:54,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:54,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:42:54,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:42:54,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:57,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:57,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:57,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:57,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:42:57,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:42:57,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:42:58,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:42:58,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:58,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:58,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:42:58,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:42:58,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:00,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:00,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:00,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:00,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:43:00,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:43:00,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:01,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:01,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:01,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:01,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:43:01,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:43:01,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:01,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:01,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:02,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:02,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:43:02,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:43:02,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:02,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:02,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:02,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:02,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:43:02,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:43:02,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:02,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:02,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:02,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:03,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:43:03,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:43:03,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:03,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:03,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:04,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:04,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:43:04,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:43:04,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:05,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:05,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:05,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:06,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:43:06,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:43:06,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:06,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:06,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:06,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:06,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:43:06,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:43:06,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:07,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:07,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:07,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:08,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.254s +2025-10-02 02:43:08,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.254s (avg: 0.254s/image) +2025-10-02 02:43:08,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:08,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:08,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:08,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:08,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:43:08,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:43:08,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:12,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:12,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:12,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:12,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:43:12,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:43:12,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:14,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:14,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:14,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:14,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.266s +2025-10-02 02:43:14,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.266s (avg: 0.266s/image) +2025-10-02 02:43:14,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:15,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:15,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:15,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:15,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:43:15,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:43:15,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:17,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:17,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:17,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:17,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:43:17,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:43:17,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:19,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:19,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:19,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:19,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.213s +2025-10-02 02:43:19,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.213s (avg: 0.213s/image) +2025-10-02 02:43:19,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:20,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:20,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:20,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:20,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:43:20,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:43:20,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:20,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:20,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:20,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:21,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.243s +2025-10-02 02:43:21,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.243s (avg: 0.243s/image) +2025-10-02 02:43:21,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:22,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:22,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:22,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:22,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:43:22,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:43:22,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:22,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:22,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:22,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:22,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:43:22,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:43:22,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:25,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:25,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:25,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:25,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:43:25,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:43:25,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:25,762 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:43:25,790 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:43:25,883 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.437 +2025-10-02 02:43:25,883 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 02:43:25,885 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 02:43:26,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:26,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:26,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:26,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.259s +2025-10-02 02:43:26,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.259s (avg: 0.259s/image) +2025-10-02 02:43:26,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:26,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:26,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:26,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:26,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:43:26,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:43:26,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:29,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:29,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:29,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:30,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:43:30,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:43:30,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:30,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:30,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:30,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:30,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:43:30,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:43:30,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:31,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:31,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:31,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:31,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:43:31,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:43:31,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:32,316 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:43:32,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:43:32,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:43:32,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.397s +2025-10-02 02:43:32,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.397s (avg: 0.199s/image) +2025-10-02 02:43:32,715 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:43:33,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:33,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:33,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:33,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:43:33,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:43:33,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:34,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:34,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:34,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:34,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:43:34,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:43:34,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:36,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:36,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:36,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:36,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:43:36,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:43:36,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:39,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:39,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:39,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:39,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:43:39,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:43:39,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:40,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:40,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:40,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:40,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:43:40,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:43:40,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:40,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:40,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:40,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:41,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:43:41,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:43:41,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:41,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:41,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:41,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:41,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:43:41,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:43:41,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:43,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:43,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:43,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:43,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:43:43,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:43:43,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:44,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:44,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:44,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:44,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.224s +2025-10-02 02:43:44,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.224s (avg: 0.224s/image) +2025-10-02 02:43:44,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:47,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:47,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:47,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:47,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:43:47,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:43:47,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:47,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:47,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:47,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:47,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:43:47,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:43:47,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:48,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:48,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:48,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:48,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:43:48,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:43:48,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:49,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:49,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:49,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:49,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.228s +2025-10-02 02:43:49,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.228s (avg: 0.228s/image) +2025-10-02 02:43:49,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:50,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:50,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:50,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:50,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:43:50,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:43:50,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:52,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:52,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:52,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:52,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:43:52,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:43:52,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:52,815 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:43:52,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:43:52,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:43:53,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.340s +2025-10-02 02:43:53,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.340s (avg: 0.170s/image) +2025-10-02 02:43:53,156 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:43:53,561 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:43:53,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:43:53,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:43:53,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 02:43:53,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 02:43:53,842 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:43:56,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:56,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:56,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:56,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:43:56,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:43:56,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:58,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:58,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:58,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:58,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.258s +2025-10-02 02:43:58,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.258s (avg: 0.258s/image) +2025-10-02 02:43:58,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:58,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:58,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:58,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:58,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:43:58,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:43:58,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:59,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:59,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:59,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:59,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:43:59,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:43:59,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:59,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:59,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:59,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:59,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:43:59,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:43:59,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:43:59,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:43:59,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:00,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:00,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:44:00,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:44:00,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:03,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:03,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:03,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:03,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:44:03,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:44:03,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:04,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:04,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:04,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:04,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:44:04,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:44:04,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:05,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:05,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:05,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:05,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:44:05,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:44:05,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:06,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:06,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:06,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:06,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:44:06,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:44:06,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:07,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:07,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:07,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:07,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:44:07,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:44:07,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:08,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:08,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:08,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:08,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:44:08,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:44:08,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:08,939 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:44:08,968 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:44:09,054 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.255 +2025-10-02 02:44:09,054 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 02:44:09,056 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:44:11,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:11,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:11,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:11,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:44:11,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:44:11,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:12,996 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:44:12,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:44:13,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:44:13,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-02 02:44:13,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-02 02:44:13,304 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:44:14,167 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:44:14,189 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:44:14,274 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.452 +2025-10-02 02:44:14,275 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 02:44:14,276 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:44:15,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:15,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:15,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:15,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:44:15,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:44:15,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:15,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:15,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:15,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:16,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:44:16,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:44:16,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:17,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:17,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:17,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:17,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:44:17,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:44:17,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:18,743 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:44:18,775 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:44:18,870 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.596 +2025-10-02 02:44:18,870 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 02:44:18,871 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:44:19,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:19,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:19,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:19,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:44:19,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:44:19,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:21,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:21,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:21,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:21,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:44:21,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:44:21,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:23,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:23,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:23,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:23,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:44:23,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:44:23,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:23,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:23,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:23,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:23,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:44:23,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:44:23,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:26,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:26,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:26,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:26,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:44:26,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:44:26,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:27,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:27,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:27,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:27,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:44:27,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:44:27,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:28,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:28,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:28,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:28,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:44:28,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:44:28,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:28,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:28,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:28,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:28,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:44:28,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:44:28,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:30,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:30,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:30,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:30,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:44:30,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:44:30,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:31,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:31,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:31,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:31,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:44:31,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:44:31,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:31,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:31,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:31,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:32,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:44:32,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:44:32,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:32,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:32,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:32,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:33,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:44:33,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:44:33,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:33,220 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:44:33,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:44:33,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:44:33,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 02:44:33,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-02 02:44:33,518 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:44:35,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:35,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:35,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:35,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:44:35,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:44:35,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:37,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:37,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:37,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:37,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:44:37,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:44:37,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:37,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:37,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:37,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:37,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:44:37,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:44:37,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:42,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:42,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:42,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:42,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:44:42,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:44:42,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:42,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:42,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:42,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:42,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:44:42,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:44:42,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:44,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:44,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:44,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:44,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:44:44,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:44:44,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:46,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:46,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:46,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:46,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:44:46,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:44:46,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:50,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:50,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:50,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:51,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:44:51,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:44:51,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:55,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:55,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:55,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:55,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 02:44:55,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 02:44:55,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:55,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:55,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:55,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:56,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:44:56,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:44:56,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:56,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:56,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:56,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:57,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:44:57,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:44:57,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:44:57,371 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:44:57,401 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:44:57,491 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.840 +2025-10-02 02:44:57,491 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 02:44:57,491 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:44:59,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:44:59,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:59,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:59,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:44:59,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:44:59,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:00,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:00,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:01,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:01,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:45:01,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:45:01,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:03,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:03,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:03,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:04,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:45:04,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:45:04,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:04,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:04,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:04,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:05,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:45:05,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:45:05,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:05,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:05,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:05,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:05,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:45:05,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:45:05,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:05,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:05,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:05,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:05,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:45:05,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:45:05,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:05,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:05,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:06,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:06,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:45:06,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:45:06,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:10,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:10,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:10,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:10,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:45:10,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:45:10,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:10,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:10,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:10,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:11,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:45:11,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:45:11,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:11,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:11,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:11,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:11,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:45:11,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:45:11,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:11,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:11,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:11,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:11,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:45:11,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:45:11,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:13,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:13,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:13,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:13,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:45:13,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:45:13,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:15,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:15,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:15,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:15,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:45:15,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:45:15,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:16,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:16,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:16,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:16,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 02:45:16,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 02:45:16,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:16,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:16,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:16,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:16,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:45:16,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:45:16,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:17,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:17,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:17,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:17,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:45:17,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:45:17,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:17,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:17,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:17,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:17,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:45:17,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:45:17,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:18,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:18,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:18,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:18,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:45:18,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:45:18,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:19,384 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:45:19,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:45:19,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:45:19,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 02:45:19,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +2025-10-02 02:45:19,701 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:45:20,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:20,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:20,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:20,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:45:20,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:45:20,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:20,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:20,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:20,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:20,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:45:20,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:45:20,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:21,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:21,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:21,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:21,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:45:21,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:45:21,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:21,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:21,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:21,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:22,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:45:22,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:45:22,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:22,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:22,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:22,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:22,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:45:22,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:45:22,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:23,765 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:45:23,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:45:23,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:45:24,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 02:45:24,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-02 02:45:24,048 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:45:24,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:24,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:24,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:24,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:45:24,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:45:24,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:25,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:25,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:25,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:25,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:45:25,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:45:25,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:26,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:26,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:26,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:26,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:45:26,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:45:26,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:26,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:26,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:26,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:27,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:45:27,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:45:27,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:27,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:27,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:27,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:27,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:45:27,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:45:27,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:28,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:28,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:28,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:28,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:45:28,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:45:28,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:29,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:29,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:29,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:29,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:45:29,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:45:29,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:29,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:29,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:29,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:29,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:45:29,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:45:29,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:31,399 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:45:31,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:45:31,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:45:31,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 02:45:31,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-02 02:45:31,700 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:45:32,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:32,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:32,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:32,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:45:32,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:45:32,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:32,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:32,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:32,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:32,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:45:32,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:45:32,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:33,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:33,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:33,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:33,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:45:33,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:45:33,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:33,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:33,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:33,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:33,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:45:33,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:45:33,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:36,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:36,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:36,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:36,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:45:36,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:45:36,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:36,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:36,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:36,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:37,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:45:37,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:45:37,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:37,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:37,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:37,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:37,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:45:37,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:45:37,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:38,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:38,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:38,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:38,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:45:38,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:45:38,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:40,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:40,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:40,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:40,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:45:40,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:45:40,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:40,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:40,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:40,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:40,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:45:40,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:45:40,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:41,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:41,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:41,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:41,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:45:41,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:45:41,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:41,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:41,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:41,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:41,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:45:41,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:45:41,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:41,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:41,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:41,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:41,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:45:41,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:45:41,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:45,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:45,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:45,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:45,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:45:45,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:45:45,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:47,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:47,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:47,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:48,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:45:48,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:45:48,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:50,162 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:45:50,196 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:45:50,284 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.400 +2025-10-02 02:45:50,285 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 02:45:50,285 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:45:50,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:50,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:51,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:51,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:45:51,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:45:51,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:51,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:51,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:51,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:51,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:45:51,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:45:51,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:54,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:54,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:54,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:54,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s +2025-10-02 02:45:54,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image) +2025-10-02 02:45:54,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:55,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:55,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:55,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:55,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:45:55,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:45:55,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:56,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:56,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:56,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:56,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:45:56,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:45:56,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:57,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:57,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:57,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:57,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:45:57,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:45:57,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:45:59,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:45:59,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:59,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:59,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:45:59,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:45:59,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:05,522 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 02:46:05,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 02:46:05,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 02:46:05,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.421s +2025-10-02 02:46:05,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.421s (avg: 0.140s/image) +2025-10-02 02:46:05,945 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 02:46:08,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:08,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:08,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:08,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:46:08,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:46:08,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:08,826 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:46:08,856 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(838, 629, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:46:08,931 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.887 +2025-10-02 02:46:08,932 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 02:46:08,932 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 02:46:09,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:09,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:09,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:09,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:46:09,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:46:09,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:11,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:11,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:11,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:11,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:46:11,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:46:11,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:12,487 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:46:12,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:46:12,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.020 +2025-10-02 02:46:12,595 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 02:46:12,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:46:13,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:13,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:13,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:13,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:46:13,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:46:13,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:14,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:14,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:14,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:14,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:46:14,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:46:14,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:14,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:14,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:14,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:14,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:46:14,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:46:14,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:16,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:16,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:16,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:16,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:46:16,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:46:16,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:16,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:46:16,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:46:16,594 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.777 +2025-10-02 02:46:16,594 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 02:46:16,594 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:46:16,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:16,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:16,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:16,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:46:16,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:46:16,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:19,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:19,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:19,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:19,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:46:19,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:46:19,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:21,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:46:21,382 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(642, 738, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:46:21,450 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.494 +2025-10-02 02:46:21,450 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +2025-10-02 02:46:21,450 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-02 02:46:21,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:21,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:22,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:22,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:46:22,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:46:22,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:22,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:22,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:23,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:23,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:46:23,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:46:23,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:26,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:26,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:26,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:26,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:46:26,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:46:26,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:27,303 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:46:27,319 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(737, 740, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:46:27,387 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.073 +2025-10-02 02:46:27,388 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-02 02:46:27,388 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-02 02:46:27,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:27,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:27,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:27,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:46:27,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:46:27,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:27,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:27,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:27,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:27,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:46:27,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:46:27,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:33,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:33,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:33,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:33,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:46:33,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:46:33,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:34,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:34,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:34,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:34,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:46:34,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:46:34,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:35,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:35,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:36,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:36,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:46:36,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:46:36,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:40,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:40,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:40,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:40,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 02:46:40,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 02:46:40,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:41,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:41,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:41,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:42,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:46:42,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:46:42,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:45,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:45,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:45,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:45,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:46:45,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:46:45,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:46,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:46,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:46,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:46,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:46:46,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:46:46,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:46,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:46,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:46,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:46,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:46:46,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:46:46,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:47,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:47,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:47,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:48,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:46:48,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:46:48,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:49,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:49,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:49,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:49,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:46:49,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:46:49,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:51,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:51,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:51,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:51,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:46:51,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:46:51,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:52,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:52,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:52,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:52,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:46:52,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:46:52,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:52,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:52,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:53,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:53,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 02:46:53,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 02:46:53,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:54,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:54,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:54,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:54,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:46:54,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:46:54,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:55,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:55,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:55,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:55,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:46:55,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:46:55,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:46:58,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:46:58,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:58,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:59,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:46:59,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:46:59,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:00,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:00,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:00,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:00,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:47:00,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:47:00,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:00,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:00,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:00,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:00,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:47:00,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:47:00,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:02,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:02,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:02,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:02,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:47:02,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:47:02,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:02,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:02,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:02,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:02,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:47:02,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:47:02,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:05,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:05,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:05,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:05,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:47:05,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:47:05,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:05,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:05,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:05,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:05,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 02:47:05,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 02:47:05,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:07,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:07,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:07,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:07,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:47:07,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:47:07,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:09,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:09,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:09,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:09,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:47:09,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:47:09,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:11,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:11,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:11,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:11,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.211s +2025-10-02 02:47:11,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.211s (avg: 0.211s/image) +2025-10-02 02:47:11,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:12,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:12,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:12,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:12,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:47:12,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:47:12,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:13,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:13,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:13,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:13,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:47:13,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:47:13,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:15,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:15,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:15,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:15,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:47:15,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:47:15,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:15,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:15,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:15,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:15,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:47:15,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:47:15,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:17,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:17,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:17,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:17,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:47:17,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:47:17,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:18,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:18,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:18,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:18,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:47:18,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:47:18,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:18,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:18,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:19,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:19,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:47:19,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:47:19,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:20,501 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:47:20,529 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:47:20,616 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.190 +2025-10-02 02:47:20,617 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 02:47:20,617 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:47:23,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:23,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:23,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:23,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:47:23,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:47:23,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:24,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:24,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:24,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:24,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:47:24,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:47:24,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:25,050 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:47:25,082 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:47:25,158 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.462 +2025-10-02 02:47:25,159 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 02:47:25,159 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 02:47:25,707 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:47:25,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:47:25,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:47:26,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 02:47:26,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 02:47:26,000 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:47:29,566 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:47:29,594 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:47:29,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.511 +2025-10-02 02:47:29,675 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 02:47:29,676 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:47:30,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:30,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:30,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:30,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:47:30,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:47:30,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:31,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:31,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:31,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:31,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:47:31,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:47:31,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:32,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:32,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:32,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:32,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:47:32,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:47:32,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:33,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:33,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:34,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:34,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:47:34,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:47:34,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:34,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:34,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:34,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:34,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:47:34,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:47:34,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:37,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:47:37,552 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:47:37,630 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.013 +2025-10-02 02:47:37,630 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 02:47:37,630 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:47:38,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:38,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:38,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:38,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:47:38,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:47:38,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:39,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:39,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:39,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:40,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 02:47:40,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 02:47:40,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:40,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:40,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:40,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:40,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:47:40,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:47:40,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:42,532 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:47:42,552 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:47:42,630 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.206 +2025-10-02 02:47:42,631 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 02:47:42,631 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:47:44,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:44,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:44,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:44,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:47:44,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:47:44,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:44,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:44,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:44,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:44,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:47:44,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:47:44,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:46,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:46,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:46,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:46,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:47:46,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:47:46,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:47,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:47,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:47,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:47,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:47:47,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:47:47,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:47,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:47,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:47,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:47,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:47:47,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:47:47,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:49,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:49,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:50,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:50,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:47:50,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:47:50,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:50,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:50,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:50,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:50,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:47:50,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:47:50,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:51,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:51,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:51,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:51,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:47:51,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:47:51,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:52,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:52,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:52,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:52,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:47:52,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:47:52,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:53,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:53,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:53,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:54,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:47:54,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:47:54,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:54,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:54,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:54,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:55,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:47:55,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:47:55,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:56,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:56,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:56,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:56,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:47:56,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:47:56,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:57,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:57,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:57,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:57,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:47:57,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:47:57,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:58,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:58,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:58,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:58,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:47:58,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:47:58,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:58,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:58,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:58,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:58,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:47:58,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:47:58,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:59,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:59,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:59,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:59,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:47:59,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:47:59,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:47:59,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:47:59,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:00,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:00,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:48:00,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:48:00,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:00,479 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:48:00,510 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:48:00,611 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.244 +2025-10-02 02:48:00,611 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-02 02:48:00,612 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 02:48:03,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:03,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:03,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:04,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:48:04,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:48:04,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:04,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:04,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:04,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:04,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:48:04,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:48:04,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:06,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:06,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:06,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:06,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:48:06,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:48:06,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:07,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:07,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:07,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:07,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:48:07,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:48:07,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:07,747 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:48:07,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:48:07,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:48:08,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 02:48:08,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-02 02:48:08,030 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:48:08,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:08,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:08,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:08,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:48:08,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:48:08,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:08,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:08,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:08,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:08,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:48:08,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:48:08,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:11,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:11,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:11,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:11,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:48:11,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:48:11,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:11,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:11,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:12,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:12,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:48:12,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:48:12,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:12,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:12,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:12,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:12,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:48:12,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:48:12,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:15,060 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:48:15,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:48:15,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:48:15,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 02:48:15,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 02:48:15,364 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:48:17,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:17,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:17,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:17,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:48:17,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:48:17,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:18,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:18,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:18,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:18,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:48:18,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:48:18,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:19,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:19,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:19,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:19,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:48:19,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:48:19,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:20,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:20,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:20,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:20,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:48:20,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:48:20,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:22,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:22,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:22,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:22,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:48:22,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:48:22,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:22,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:22,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:22,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:22,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:48:22,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:48:22,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:24,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:24,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:24,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:25,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:48:25,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:48:25,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:26,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:26,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:26,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:26,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:48:26,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:48:26,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:27,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:27,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:27,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:27,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:48:27,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:48:27,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:28,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:28,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:28,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:28,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:48:28,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:48:28,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:30,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:30,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:30,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:30,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:48:30,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:48:30,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:31,661 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:48:31,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:48:31,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:48:31,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 02:48:31,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 02:48:31,938 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:48:32,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:32,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:32,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:32,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:48:32,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:48:32,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:34,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:34,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:34,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:34,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:48:34,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:48:34,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:37,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:37,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:37,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:38,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:48:38,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:48:38,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:38,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:38,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:38,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:38,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:48:38,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:48:38,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:39,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:39,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:39,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:39,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:48:39,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:48:39,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:42,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:42,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:42,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:43,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:48:43,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:48:43,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:43,170 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:48:43,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:48:43,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:48:43,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 02:48:43,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-02 02:48:43,446 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:48:46,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:46,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:46,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:46,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:48:46,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:48:46,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:47,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:47,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:47,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:47,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:48:47,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:48:47,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:47,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:47,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:47,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:47,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:48:47,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:48:47,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:50,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:50,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:50,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:50,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:48:50,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:48:50,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:53,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:53,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:53,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:53,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:48:53,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:48:53,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:54,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:54,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:54,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:54,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:48:54,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:48:54,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:55,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:55,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:55,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:55,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:48:55,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:48:55,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:56,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:56,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:56,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:56,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:48:56,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:48:56,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:58,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:58,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:58,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:58,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:48:58,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:48:58,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:48:58,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:48:58,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:58,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:58,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:48:58,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:48:58,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:01,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:01,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:01,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:01,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:49:01,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:49:01,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:02,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:02,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:02,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:02,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:49:02,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:49:02,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:03,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:03,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:03,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:03,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:49:03,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:49:03,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:06,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:06,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:06,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:06,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:49:06,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:49:06,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:07,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:07,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:07,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:07,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:49:07,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:49:07,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:07,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:07,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:07,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:07,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:49:07,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:49:07,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:10,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:10,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:11,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:11,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:49:11,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:49:11,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:12,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:12,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:12,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:13,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:49:13,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:49:13,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:13,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:13,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:13,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:13,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:49:13,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:49:13,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:15,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:49:15,997 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:49:16,077 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.216 +2025-10-02 02:49:16,077 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 02:49:16,077 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:49:17,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:17,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:17,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:17,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:49:17,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:49:17,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:19,232 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:49:19,253 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:49:19,331 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.770 +2025-10-02 02:49:19,331 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 02:49:19,332 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:49:22,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:22,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:22,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:22,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:49:22,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:49:22,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:23,077 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:49:23,103 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:49:23,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.859 +2025-10-02 02:49:23,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:49:23,180 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:49:27,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:27,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:27,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:28,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:49:28,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:49:28,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:41,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:41,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:41,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:41,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:49:41,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:49:41,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:47,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:47,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:47,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:48,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:49:48,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:49:48,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:49,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:49,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:49,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:49,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:49:49,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:49:49,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:50,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:50,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:50,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:50,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:49:50,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:49:50,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:53,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:53,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:53,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:53,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:49:53,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:49:53,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:49:56,440 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:49:56,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:49:56,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:49:56,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 02:49:56,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-02 02:49:56,740 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:49:57,757 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:49:57,785 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:49:57,876 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.850 +2025-10-02 02:49:57,876 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 02:49:57,878 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 02:49:58,687 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:49:58,724 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:49:58,812 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.015 +2025-10-02 02:49:58,812 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 02:49:58,812 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:49:59,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:49:59,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:59,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:59,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:49:59,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:49:59,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:02,003 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:50:02,035 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:50:02,131 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.378 +2025-10-02 02:50:02,132 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-02 02:50:02,133 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 02:50:03,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:03,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:03,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:04,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:50:04,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:50:04,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:05,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:50:05,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:50:05,899 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.386 +2025-10-02 02:50:05,899 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 02:50:05,899 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 02:50:06,558 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:50:06,593 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:50:06,678 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.332 +2025-10-02 02:50:06,678 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 02:50:06,680 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 02:50:12,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:12,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:12,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:12,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:50:12,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:50:12,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:12,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:12,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:13,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:13,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:50:13,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:50:13,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:15,238 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:50:15,265 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:50:15,359 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.528 +2025-10-02 02:50:15,359 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 02:50:15,361 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:50:15,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:15,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:15,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:15,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:50:15,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:50:15,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:22,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:22,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:22,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:22,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:50:22,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:50:22,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:24,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:24,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:24,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:24,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:50:24,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:50:24,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:24,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:24,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:24,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:24,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:50:24,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:50:24,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:25,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:25,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:25,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:25,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:50:25,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:50:25,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:27,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:27,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:27,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:27,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:50:27,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:50:27,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:29,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:29,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:29,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:29,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:50:29,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:50:29,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:31,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:31,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:32,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:32,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:50:32,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:50:32,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:32,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:32,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:32,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:32,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:50:32,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:50:32,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:32,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:32,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:32,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:32,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:50:32,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:50:32,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:33,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:33,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:33,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:33,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:50:33,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:50:33,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:34,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:34,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:34,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:34,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:50:34,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:50:34,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:35,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:35,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:35,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:35,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:50:35,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:50:35,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:36,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:36,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:36,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:36,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:50:36,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:50:36,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:38,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:38,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:38,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:38,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:50:38,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:50:38,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:39,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:39,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:39,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:39,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:50:39,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:50:39,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:40,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:40,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:40,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:40,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:50:40,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:50:40,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:41,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:41,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:41,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:41,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:50:41,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:50:41,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:44,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:44,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:44,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:44,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:50:44,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:50:44,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:46,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:46,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:46,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:46,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:50:46,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:50:46,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:49,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:49,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:49,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:49,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:50:49,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:50:49,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:50,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:50,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:50,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:50,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:50:50,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:50:50,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:51,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:51,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:51,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:51,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:50:51,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:50:51,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:52,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:52,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:52,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:52,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:50:52,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:50:52,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:53,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:53,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:54,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:54,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:50:54,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:50:54,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:54,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:54,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:54,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:54,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:50:54,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:50:54,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:55,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:55,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:55,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:55,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:50:55,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:50:55,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:58,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:58,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:58,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:58,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:50:58,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:50:58,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:58,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:58,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:58,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:58,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:50:58,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:50:58,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:58,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:58,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:58,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:58,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:50:58,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:50:58,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:50:59,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:50:59,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:59,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:59,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:50:59,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:50:59,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:00,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:00,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:00,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:00,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:51:00,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:51:00,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:02,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:02,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:02,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:02,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:51:02,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:51:02,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:02,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:02,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:02,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:02,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:51:02,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:51:02,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:02,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:02,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:02,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:02,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:51:02,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:51:02,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:05,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:05,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:05,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:05,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:51:05,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:51:05,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:05,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:05,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:05,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:05,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:51:05,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:51:05,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:06,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:06,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:06,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:07,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:51:07,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:51:07,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:07,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:07,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:07,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:07,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:51:07,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:51:07,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:08,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:08,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:08,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:08,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:51:08,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:51:08,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:10,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:10,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:10,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:10,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:51:10,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:51:10,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:12,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:12,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:12,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:12,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:51:12,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:51:12,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:12,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:12,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:12,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:13,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:51:13,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:51:13,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:13,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:13,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:13,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:13,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:51:13,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:51:13,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:14,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:14,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:14,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:14,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:51:14,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:51:14,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:16,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:16,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:16,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:16,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:51:16,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:51:16,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:16,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:16,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:16,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:16,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:51:16,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:51:16,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:21,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:21,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:21,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:21,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:51:21,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:51:21,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:21,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:21,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:21,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:21,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:51:21,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:51:21,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:21,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:21,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:21,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:22,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:51:22,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:51:22,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:23,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:23,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:23,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:23,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:51:23,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:51:23,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:24,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:24,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:24,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:24,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:51:24,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:51:24,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:26,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:26,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:26,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:26,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:51:26,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:51:26,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:26,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:26,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:26,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:26,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:51:26,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:51:26,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:26,852 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:51:26,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:51:26,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:51:27,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-02 02:51:27,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +2025-10-02 02:51:27,174 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:51:27,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:27,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:28,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:28,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:51:28,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:51:28,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:28,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:28,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:28,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:29,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:51:29,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:51:29,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:30,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:30,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:30,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:30,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:51:30,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:51:30,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:30,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:30,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:30,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:30,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:51:30,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:51:30,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:31,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:31,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:31,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:31,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:51:31,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:51:31,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:33,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:33,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:33,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:34,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:51:34,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:51:34,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:34,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:34,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:34,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:34,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:51:34,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:51:34,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:34,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:34,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:34,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:34,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:51:34,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:51:34,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:35,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:35,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:35,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:35,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:51:35,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:51:35,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:36,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:36,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:36,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:37,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:51:37,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:51:37,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:40,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:40,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:40,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:40,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:51:40,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:51:40,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:40,964 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:51:40,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:51:41,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:51:41,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 02:51:41,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 02:51:41,241 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:51:41,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:41,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:41,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:41,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:51:41,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:51:41,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:44,260 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:51:44,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:51:44,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:51:44,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-02 02:51:44,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.154s/image) +2025-10-02 02:51:44,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:51:45,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:45,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:45,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:45,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:51:45,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:51:45,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:46,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:46,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:46,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:46,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:51:46,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:51:46,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:48,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:48,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:48,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:48,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:51:48,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:51:48,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:48,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:48,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:48,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:48,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:51:48,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:51:48,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:49,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:49,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:49,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:49,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:51:49,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:51:49,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:49,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:49,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:49,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:49,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:51:49,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:51:49,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:50,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:50,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:50,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:50,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:51:50,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:51:50,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:51,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:51,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:51,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:51,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:51:51,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:51:51,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:52,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:52,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:52,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:52,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:51:52,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:51:52,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:55,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:55,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:55,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:55,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:51:55,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:51:55,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:55,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:55,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:55,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:55,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:51:55,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:51:55,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:55,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:55,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:55,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:56,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:51:56,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:51:56,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:56,387 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:51:56,411 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:51:56,488 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.543 +2025-10-02 02:51:56,488 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:51:56,488 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:51:57,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:57,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:57,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:57,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:51:57,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:51:57,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:58,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:51:58,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:58,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:58,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:51:58,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:51:58,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:51:59,879 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:51:59,898 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:51:59,972 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.366 +2025-10-02 02:51:59,972 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-02 02:51:59,972 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:52:00,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:00,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:00,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:00,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:52:00,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:52:00,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:02,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:02,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:02,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:03,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:52:03,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:52:03,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:03,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:03,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:03,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:03,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:52:03,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:52:03,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:04,227 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:52:04,249 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(640, 640, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:52:04,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=232.919 +2025-10-02 02:52:04,319 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-02 02:52:04,319 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-02 02:52:04,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:04,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:04,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:04,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:52:04,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:52:04,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:08,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:08,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:08,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:08,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:52:08,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:52:08,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:09,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:09,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:09,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:09,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:52:09,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:52:09,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:10,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:10,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:10,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:10,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:52:10,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:52:10,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:11,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:11,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:11,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:11,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:52:11,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:52:11,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:13,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:13,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:13,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:13,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:52:13,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:52:13,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:13,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:13,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:14,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:14,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:52:14,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:52:14,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:17,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:17,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:17,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:17,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:52:17,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:52:17,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:17,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:17,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:17,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:17,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:52:17,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:52:17,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:17,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:17,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:17,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:18,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 02:52:18,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 02:52:18,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:18,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:18,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:18,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:18,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:52:18,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:52:18,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:20,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:20,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:20,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:20,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:52:20,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:52:20,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:21,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:21,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:21,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:21,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:52:21,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:52:21,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:22,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:22,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:22,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:22,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:52:22,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:52:22,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:25,121 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:52:25,158 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:52:25,244 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.978 +2025-10-02 02:52:25,244 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 02:52:25,245 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:52:25,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:25,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:25,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:25,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:52:25,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:52:25,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:27,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:27,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:27,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:27,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:52:27,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:52:27,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:33,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:33,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:33,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:33,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:52:33,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:52:33,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:36,060 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:52:36,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:52:36,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:52:36,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 02:52:36,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 02:52:36,341 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:52:39,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:39,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:39,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:39,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:52:39,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:52:39,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:44,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:44,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:44,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:44,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:52:44,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:52:44,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:45,020 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:52:45,048 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:52:45,143 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.655 +2025-10-02 02:52:45,143 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 02:52:45,145 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:52:46,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:46,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:46,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:46,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:52:46,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:52:46,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:52,102 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:52:52,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:52:52,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:52:52,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 02:52:52,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-02 02:52:52,401 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:52:53,827 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:52:53,853 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:52:53,936 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.003 +2025-10-02 02:52:53,936 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 02:52:53,936 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:52:54,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:52:54,388 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:52:54,469 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.810 +2025-10-02 02:52:54,469 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 02:52:54,469 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:52:55,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:55,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:55,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:55,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:52:55,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:52:55,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:58,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:52:58,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:58,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:58,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:52:58,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:52:58,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:52:58,308 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:52:58,325 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:52:58,409 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.323 +2025-10-02 02:52:58,409 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 02:52:58,409 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:53:02,378 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:53:02,402 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:53:02,481 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.189 +2025-10-02 02:53:02,481 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 02:53:02,481 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:53:02,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:02,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:02,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:03,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:53:03,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:53:03,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:07,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:07,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:07,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:07,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:53:07,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:53:07,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:08,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:08,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:08,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:08,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:53:08,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:53:08,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:11,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:11,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:11,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:11,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:53:11,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:53:11,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:12,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:12,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:12,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:12,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:53:12,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:53:12,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:14,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:14,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:14,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:14,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:53:14,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:53:14,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:16,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:16,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:16,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:16,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:53:16,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:53:16,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:19,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:19,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:19,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:19,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:53:19,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:53:19,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:20,134 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:53:20,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:53:20,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:53:20,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 02:53:20,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-02 02:53:20,409 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:53:21,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:21,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:21,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:21,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:53:21,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:53:21,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:24,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:24,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:24,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:24,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:53:24,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:53:24,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:25,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:25,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:25,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:25,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:53:25,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:53:25,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:25,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:25,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:25,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:25,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:53:25,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:53:25,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:26,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:26,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:26,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:26,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:53:26,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:53:26,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:29,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:29,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:29,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:29,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:53:29,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:53:29,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:30,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:30,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:30,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:30,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:53:30,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:53:30,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:30,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:30,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:30,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:30,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:53:30,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:53:30,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:34,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:34,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:34,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:34,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:53:34,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:53:34,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:34,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:34,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:34,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:34,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:53:34,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:53:34,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:34,949 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:53:34,964 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:53:35,042 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.940 +2025-10-02 02:53:35,042 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 02:53:35,043 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:53:35,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:35,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:35,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:35,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:53:35,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:53:35,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:35,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:35,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:35,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:35,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:53:35,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:53:35,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:39,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:39,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:39,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:39,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:53:39,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:53:39,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:40,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:40,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:40,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:40,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 02:53:40,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 02:53:40,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:41,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:41,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:41,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:41,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:53:41,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:53:41,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:42,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:42,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:42,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:43,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:53:43,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:53:43,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:44,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:44,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:44,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:44,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:53:44,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:53:44,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:45,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:45,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:45,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:46,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:53:46,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:53:46,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:46,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:46,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:46,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:46,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:53:46,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:53:46,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:47,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:47,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:47,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:47,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:53:47,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:53:47,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:49,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:49,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:49,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:49,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:53:49,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:53:49,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:50,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:50,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:50,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:50,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:53:50,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:53:50,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:50,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:50,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:50,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:50,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:53:50,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:53:50,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:56,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:56,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:56,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:57,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:53:57,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:53:57,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:57,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:57,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:57,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:58,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:53:58,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:53:58,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:53:58,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:53:58,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:58,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:58,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:53:58,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:53:58,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:00,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:00,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:00,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:00,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:54:00,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:54:00,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:02,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:02,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:02,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:02,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:54:02,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:54:02,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:04,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:04,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:04,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:04,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:54:04,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:54:04,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:07,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:07,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:07,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:07,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:54:07,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:54:07,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:08,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:08,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:08,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:08,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:54:08,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:54:08,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:10,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:10,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:10,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:10,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:54:10,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:54:10,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:12,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:12,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:12,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:12,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:54:12,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:54:12,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:12,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:12,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:12,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:12,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:54:12,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:54:12,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:13,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:13,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:13,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:13,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:54:13,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:54:13,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:15,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:15,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:15,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:15,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:54:15,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:54:15,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:17,346 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:54:17,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:54:17,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:54:17,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-02 02:54:17,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.129s/image) +2025-10-02 02:54:17,605 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:54:18,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:18,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:18,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:18,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:54:18,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:54:18,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:19,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:19,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:19,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:20,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:54:20,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:54:20,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:23,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:23,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:23,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:23,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:54:23,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:54:23,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:24,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:24,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:24,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:24,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:54:24,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:54:24,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:25,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:25,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:25,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:25,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:54:25,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:54:25,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:25,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:25,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:25,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:26,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:54:26,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:54:26,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:27,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:27,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:28,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:28,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:54:28,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:54:28,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:28,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:28,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:28,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:28,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:54:28,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:54:28,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:29,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:29,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:29,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:29,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 02:54:29,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 02:54:29,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:32,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:32,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:32,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:33,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:54:33,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:54:33,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:33,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:33,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:33,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:33,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:54:33,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:54:33,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:35,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:35,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:35,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:35,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:54:35,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:54:35,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:36,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:36,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:36,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:37,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:54:37,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:54:37,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:39,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:39,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:39,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:39,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:54:39,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:54:39,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:39,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:39,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:39,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:39,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:54:39,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:54:39,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:40,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:40,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:40,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:40,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:54:40,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:54:40,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:40,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:40,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:40,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:41,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:54:41,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:54:41,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:42,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:42,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:42,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:42,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:54:42,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:54:42,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:43,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:43,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:43,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:43,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:54:43,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:54:43,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:44,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:44,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:44,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:44,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:54:44,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:54:44,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:45,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:45,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:45,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:45,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:54:45,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:54:45,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:46,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:46,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:46,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:46,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:54:46,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:54:46,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:47,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:47,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:47,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:47,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:54:47,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:54:47,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:47,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:47,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:47,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:47,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:54:47,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:54:47,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:48,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:48,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:48,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:48,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:54:48,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:54:48,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:49,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:49,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:49,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:49,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:54:49,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:54:49,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:51,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:51,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:51,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:51,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:54:51,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:54:51,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:52,341 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:54:52,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:54:52,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:54:52,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 02:54:52,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 02:54:52,618 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:54:53,040 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:54:53,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:54:53,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:54:53,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-02 02:54:53,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.131s/image) +2025-10-02 02:54:53,303 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:54:53,443 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:54:53,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:54:53,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:54:53,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 02:54:53,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-02 02:54:53,718 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:54:58,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:58,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:58,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:58,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:54:58,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:54:58,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:58,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:58,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:58,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:58,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:54:58,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:54:58,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:54:58,986 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:54:58,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:54:59,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:54:59,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-02 02:54:59,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.130s/image) +2025-10-02 02:54:59,248 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:54:59,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:54:59,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:59,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:59,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:54:59,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:54:59,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:00,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:00,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:00,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:01,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:55:01,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:55:01,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:03,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:03,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:03,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:03,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:55:03,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:55:03,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:03,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:03,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:03,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:04,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:55:04,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:55:04,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:04,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:04,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:04,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:04,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:55:04,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:55:04,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:05,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:05,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:05,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:05,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:55:05,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:55:05,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:06,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:06,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:06,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:06,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:55:06,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:55:06,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:07,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:07,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:07,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:07,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:55:07,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:55:07,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:07,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:07,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:07,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:07,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:55:07,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:55:07,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:08,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:08,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:08,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:08,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:55:08,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:55:08,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:09,342 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:55:09,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:55:09,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:55:09,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-02 02:55:09,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.155s/image) +2025-10-02 02:55:09,653 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:55:10,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:10,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:10,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:10,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:55:10,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:55:10,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:10,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:10,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:10,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:11,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:55:11,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:55:11,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:12,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:12,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:12,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:12,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:55:12,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:55:12,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:13,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:13,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:13,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:13,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:55:13,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:55:13,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:14,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:14,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:14,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:14,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:55:14,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:55:14,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:15,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:15,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:15,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:15,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:55:15,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:55:15,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:16,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:16,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:16,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:16,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:55:16,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:55:16,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:18,305 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:55:18,337 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:55:18,440 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.613 +2025-10-02 02:55:18,441 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-02 02:55:18,444 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-02 02:55:18,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:18,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:18,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:18,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:55:18,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:55:18,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:18,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:18,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:18,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:19,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:55:19,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:55:19,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:19,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:19,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:19,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:19,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.124s +2025-10-02 02:55:19,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.124s (avg: 0.124s/image) +2025-10-02 02:55:19,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:19,412 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:55:19,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:55:19,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:55:19,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-02 02:55:19,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.129s/image) +2025-10-02 02:55:19,670 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:55:19,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:19,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:19,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:19,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:55:19,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:55:19,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:20,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:20,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:20,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:20,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 02:55:20,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 02:55:20,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:22,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:22,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:22,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:22,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:55:22,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:55:22,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:23,234 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:55:23,259 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:55:23,342 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.931 +2025-10-02 02:55:23,342 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 02:55:23,342 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:55:24,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:24,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:24,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:24,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:55:24,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:55:24,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:25,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:25,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:25,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:25,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:55:25,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:55:25,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:26,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:26,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:26,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:26,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:55:26,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:55:26,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:27,313 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:55:27,341 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(998, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:55:27,432 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.857 +2025-10-02 02:55:27,432 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 02:55:27,434 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 02:55:27,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:27,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:27,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:27,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:55:27,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:55:27,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:28,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:28,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:28,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:28,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:55:28,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:55:28,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:28,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:28,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:28,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:28,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:55:28,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:55:28,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:30,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:30,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:30,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:30,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:55:30,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:55:30,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:33,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:33,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:33,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:33,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:55:33,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:55:33,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:35,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:35,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:35,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:35,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:55:35,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:55:35,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:41,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:41,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:41,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:41,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:55:41,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:55:41,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:43,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:43,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:43,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:43,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:55:43,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:55:43,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:43,619 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:55:43,641 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:55:43,726 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.612 +2025-10-02 02:55:43,726 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 02:55:43,727 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:55:47,125 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:55:47,145 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:55:47,220 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.549 +2025-10-02 02:55:47,221 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 02:55:47,221 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 02:55:48,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:48,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:48,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:48,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:55:48,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:55:48,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:50,242 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:55:50,263 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:55:50,340 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.403 +2025-10-02 02:55:50,340 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 02:55:50,340 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:55:51,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:51,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:51,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:51,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:55:51,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:55:51,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:52,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:52,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:52,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:52,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:55:52,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:55:52,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:57,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:57,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:57,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:57,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:55:57,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:55:57,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:57,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:57,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:57,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:58,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:55:58,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:55:58,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:55:58,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:55:58,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:58,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:58,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:55:58,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:55:58,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:03,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:03,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:03,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:03,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:56:03,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:56:03,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:04,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:04,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:04,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:04,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:56:04,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:56:04,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:05,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:05,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:05,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:05,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:56:05,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:56:05,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:09,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:09,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:09,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:09,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:56:09,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:56:09,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:13,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:13,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:13,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:14,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:56:14,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:56:14,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:16,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:16,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:16,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:17,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:56:17,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:56:17,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:17,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:17,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:17,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:17,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:56:17,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:56:17,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:23,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:23,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:23,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:23,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:56:23,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:56:23,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:24,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:24,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:24,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:24,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:56:24,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:56:24,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:24,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:24,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:24,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:24,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:56:24,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:56:24,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:25,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:25,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:25,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:25,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:56:25,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:56:25,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:26,636 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:56:26,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:56:26,739 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.854 +2025-10-02 02:56:26,740 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 02:56:26,740 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:56:29,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:29,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:29,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:29,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:56:29,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:56:29,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:29,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:29,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:29,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:29,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:56:29,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:56:29,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:30,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:30,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:30,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:30,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:56:30,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:56:30,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:30,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:30,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:30,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:30,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:56:30,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:56:30,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:31,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:31,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:31,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:31,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:56:31,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:56:31,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:33,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:33,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:33,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:33,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:56:33,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:56:33,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:33,716 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:56:33,744 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:56:33,822 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.802 +2025-10-02 02:56:33,822 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 02:56:33,822 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:56:34,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:34,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:34,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:34,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:56:34,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:56:34,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:36,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:36,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:36,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:36,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:56:36,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:56:36,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:37,719 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:56:37,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:56:37,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:56:38,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 02:56:38,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 02:56:38,012 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:56:38,363 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:56:38,377 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(648, 886, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:56:38,453 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.432 +2025-10-02 02:56:38,453 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:56:38,454 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:56:38,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:38,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:38,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:38,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:56:38,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:56:38,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:38,624 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:56:38,643 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:56:38,717 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.814 +2025-10-02 02:56:38,717 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 02:56:38,719 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 02:56:38,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:38,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:39,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:39,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:56:39,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:56:39,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:43,253 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:56:43,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:56:43,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:56:43,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-02 02:56:43,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.161s/image) +2025-10-02 02:56:43,576 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:56:43,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:43,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:43,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:43,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:56:43,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:56:43,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:44,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:44,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:44,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:44,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:56:44,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:56:44,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:44,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:44,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:44,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:44,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:56:44,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:56:44,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:45,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:45,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:45,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:45,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:56:45,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:56:45,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:46,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:46,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:46,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:46,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:56:46,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:56:46,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:47,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:47,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:47,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:47,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:56:47,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:56:47,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:47,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:47,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:47,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:47,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:56:47,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:56:47,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:50,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:50,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:50,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:50,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:56:50,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:56:50,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:50,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:50,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:50,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:50,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:56:50,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:56:50,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:51,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:51,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:51,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:51,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:56:51,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:56:51,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:51,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:51,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:51,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:51,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:56:51,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:56:51,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:52,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:52,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:52,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:52,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:56:52,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:56:52,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:54,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:54,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:54,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:54,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:56:54,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:56:54,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:55,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:55,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:55,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:55,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:56:55,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:56:55,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:57,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:57,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:57,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:58,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:56:58,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:56:58,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:58,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:58,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:58,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:58,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:56:58,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:56:58,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:56:59,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:56:59,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:59,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:59,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:56:59,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:56:59,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:00,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:00,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:00,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:00,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:57:00,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:57:00,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:02,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:02,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:02,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:02,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:57:02,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:57:02,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:03,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:03,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:03,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:03,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:57:03,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:57:03,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:03,880 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 02:57:03,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 02:57:03,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 02:57:04,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.394s +2025-10-02 02:57:04,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.394s (avg: 0.131s/image) +2025-10-02 02:57:04,276 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 02:57:04,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:04,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:04,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:04,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:57:04,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:57:04,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:06,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:06,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:06,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:06,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:57:06,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:57:06,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:09,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:09,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:09,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:09,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:57:09,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:57:09,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:10,635 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:57:10,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:57:10,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:57:10,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 02:57:10,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-02 02:57:10,931 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:57:11,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:11,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:11,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:11,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:57:11,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:57:11,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:11,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:11,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:11,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:11,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:57:11,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:57:11,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:12,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:12,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:12,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:12,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:57:12,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:57:12,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:15,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:15,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:15,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:15,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:57:15,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:57:15,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:15,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:15,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:15,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:16,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:57:16,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:57:16,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:17,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:17,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:17,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:17,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:57:17,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:57:17,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:18,165 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:57:18,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:57:18,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:57:18,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 02:57:18,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 02:57:18,442 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:57:20,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:20,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:20,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:21,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:57:21,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:57:21,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:21,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:21,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:21,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:21,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:57:21,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:57:21,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:22,023 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:57:22,045 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:57:22,123 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.294 +2025-10-02 02:57:22,123 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:57:22,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:57:22,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:22,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:22,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:22,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:57:22,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:57:22,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:24,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:24,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:24,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:24,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:57:24,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:57:24,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:24,922 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:57:24,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:57:24,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:57:25,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 02:57:25,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 02:57:25,220 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:57:25,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:25,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:25,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:25,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:57:25,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:57:25,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:27,672 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:57:27,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:57:27,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:57:27,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 02:57:27,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 02:57:27,960 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:57:28,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:28,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:28,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:28,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:57:28,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:57:28,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:29,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:29,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:29,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:30,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:57:30,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:57:30,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:30,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:30,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:30,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:31,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:57:31,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:57:31,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:31,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:31,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:31,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:31,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:57:31,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:57:31,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:31,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:31,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:31,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:32,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:57:32,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:57:32,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:32,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:32,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:32,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:32,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:57:32,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:57:32,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:33,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:33,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:33,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:33,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:57:33,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:57:33,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:34,857 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:57:34,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:57:34,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:57:35,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 02:57:35,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-02 02:57:35,125 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:57:35,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:35,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:35,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:35,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:57:35,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:57:35,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:36,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:36,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:36,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:37,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:57:37,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:57:37,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:37,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:37,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:37,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:37,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:57:37,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:57:37,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:38,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:38,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:38,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:39,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:57:39,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:57:39,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:39,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:39,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:39,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:40,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:57:40,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:57:40,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:40,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:40,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:40,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:40,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:57:40,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:57:40,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:43,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:43,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:43,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:43,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:57:43,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:57:43,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:44,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:44,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:44,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:44,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:57:44,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:57:44,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:46,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:46,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:46,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:46,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:57:46,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:57:46,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:47,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:47,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:47,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:47,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:57:47,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:57:47,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:47,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:47,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:47,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:47,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 02:57:47,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 02:57:47,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:52,492 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:57:52,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:57:52,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:57:52,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-02 02:57:52,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-02 02:57:52,763 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:57:53,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:53,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:53,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:53,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:57:53,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:57:53,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:54,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:54,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:54,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:54,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:57:54,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:57:54,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:56,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:56,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:56,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:57,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:57:57,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:57:57,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:57,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:57,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:57,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:57,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:57:57,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:57:57,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:58,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:58,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:58,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:58,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:57:58,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:57:58,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:57:59,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:57:59,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:59,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:59,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:57:59,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:57:59,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:00,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:00,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:00,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:00,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:58:00,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:58:00,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:01,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:01,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:01,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:01,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:58:01,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:58:01,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:02,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:02,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:02,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:02,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:58:02,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:58:02,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:06,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:06,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:06,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:06,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:58:06,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:58:06,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:10,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:10,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:10,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:10,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-02 02:58:10,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-02 02:58:10,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:11,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:11,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:11,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:11,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:58:11,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:58:11,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:12,129 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 02:58:12,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 02:58:12,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 02:58:12,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.402s +2025-10-02 02:58:12,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.402s (avg: 0.134s/image) +2025-10-02 02:58:12,532 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 02:58:12,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:12,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:12,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:13,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:58:13,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:58:13,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:16,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:16,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:16,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:16,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:58:16,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:58:16,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:17,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:17,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:17,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:17,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:58:17,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:58:17,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:17,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:17,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:17,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:17,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:58:17,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:58:17,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:21,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:21,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:21,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:21,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:58:21,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:58:21,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:22,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:22,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:22,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:22,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:58:22,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:58:22,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:23,332 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:58:23,354 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:58:23,434 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.244 +2025-10-02 02:58:23,434 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 02:58:23,434 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:58:23,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:23,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:23,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:23,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:58:23,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:58:23,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:26,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:26,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:26,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:26,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:58:26,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:58:26,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:27,982 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:58:28,009 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(804, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:58:28,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.378 +2025-10-02 02:58:28,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 02:58:28,086 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:58:29,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:29,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:29,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:30,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:58:30,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:58:30,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:31,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:31,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:31,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:31,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:58:31,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:58:31,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:31,715 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:58:31,730 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(643, 823, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:58:31,796 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.701 +2025-10-02 02:58:31,796 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.065s +2025-10-02 02:58:31,796 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.066s +2025-10-02 02:58:37,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:37,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:37,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:37,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:58:37,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:58:37,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:41,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:41,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:41,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:41,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:58:41,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:58:41,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:42,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:42,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:42,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:42,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:58:42,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:58:42,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:42,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:42,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:42,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:43,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:58:43,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:58:43,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:44,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:44,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:44,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:44,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:58:44,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:58:44,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:44,900 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:58:44,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:58:44,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:58:45,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-02 02:58:45,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-02 02:58:45,164 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:58:45,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:45,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:45,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:45,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:58:45,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:58:45,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:48,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:48,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:48,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:48,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:58:48,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:58:48,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:48,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:48,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:48,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:48,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:58:48,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:58:48,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:49,056 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:58:49,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:58:49,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:58:49,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 02:58:49,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-02 02:58:49,334 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:58:49,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:49,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:49,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:49,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:58:49,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:58:49,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:50,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:50,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:50,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:50,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:58:50,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:58:50,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:51,006 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:58:51,031 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:58:51,107 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.457 +2025-10-02 02:58:51,107 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 02:58:51,107 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 02:58:51,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:51,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:51,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:51,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:58:51,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:58:51,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:52,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:52,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:52,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:52,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:58:52,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:58:52,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:54,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:54,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:54,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:54,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:58:54,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:58:54,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:54,471 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 02:58:54,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:58:54,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:58:54,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 02:58:54,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-02 02:58:54,750 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 02:58:55,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:55,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:55,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:55,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:58:55,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:58:55,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:58,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:58,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:58,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:58,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:58:58,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:58:58,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:58,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:58,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:58,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:58,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:58:58,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:58:58,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:58:59,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:58:59,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:59,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:59,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:58:59,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:58:59,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:00,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:00,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:00,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:00,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:59:00,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:59:00,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:00,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:00,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:00,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:00,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:59:00,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:59:00,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:00,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:00,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:00,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:00,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:59:00,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:59:00,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:02,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:02,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:02,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:02,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:59:02,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:59:02,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:03,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:03,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:04,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:04,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:59:04,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:59:04,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:04,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:04,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:04,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:04,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:59:04,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:59:04,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:05,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:05,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:05,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:05,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:59:05,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:59:05,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:07,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:07,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:07,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:08,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:59:08,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:59:08,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:13,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:13,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:13,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:13,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:59:13,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:59:13,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:14,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:14,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:14,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:14,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:59:14,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:59:14,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:14,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:14,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:14,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:15,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:59:15,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:59:15,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:15,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:15,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:15,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:16,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:59:16,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:59:16,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:17,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:17,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:17,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:17,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:59:17,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:59:17,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:19,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:19,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:19,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:19,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:59:19,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:59:19,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:19,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:19,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:19,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:19,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:59:19,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:59:19,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:22,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:22,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:22,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:22,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:59:22,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:59:22,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:23,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:23,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:23,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:24,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:59:24,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:59:24,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:24,042 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:59:24,065 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:59:24,145 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.811 +2025-10-02 02:59:24,146 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 02:59:24,146 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:59:28,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:28,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:28,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:28,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:59:28,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:59:28,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:28,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:28,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:28,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:28,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:59:28,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:59:28,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:29,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:29,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:29,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:29,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:59:29,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:59:29,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:31,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:31,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:31,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:31,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:59:31,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:59:31,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:32,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:32,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:32,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:32,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:59:32,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:59:32,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:34,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:34,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:34,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:34,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:59:34,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:59:34,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:35,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:35,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:35,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:36,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:59:36,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:59:36,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:38,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:38,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:38,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:38,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:59:38,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:59:38,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:39,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:39,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:39,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:40,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:59:40,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:59:40,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:42,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:42,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:42,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:42,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:59:42,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:59:42,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:43,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:43,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:43,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:43,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:59:43,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:59:43,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:45,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:45,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:45,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:46,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:59:46,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:59:46,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:47,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:47,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:47,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:47,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:59:47,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:59:47,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:50,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:50,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:50,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:50,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:59:50,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:59:50,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:52,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:52,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:52,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:52,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:59:52,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:59:52,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:54,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:54,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:54,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:54,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:59:54,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:59:54,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 02:59:57,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 02:59:57,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:57,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:57,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:59:57,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:59:57,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:00,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:00,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:00,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:00,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:00:00,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:00:00,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:03,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:03,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:03,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:03,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:00:03,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:00:03,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:05,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:05,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:05,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:05,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:00:05,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:00:05,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:05,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:05,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:05,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:05,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 03:00:05,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 03:00:05,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:08,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:08,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:08,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:09,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:00:09,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:00:09,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:11,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:11,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:11,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:11,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:00:11,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:00:11,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:11,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:11,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:11,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:12,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:00:12,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:00:12,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:13,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:13,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:13,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:13,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:00:13,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:00:13,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:13,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:13,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:13,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:13,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:00:13,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:00:13,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:15,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:15,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:15,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:15,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:00:15,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:00:15,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:15,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:15,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:16,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:16,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:00:16,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:00:16,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:17,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:17,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:17,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:18,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:00:18,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:00:18,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:18,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:18,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:18,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:18,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:00:18,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:00:18,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:20,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:20,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:20,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:20,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:00:20,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:00:20,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:22,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:22,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:22,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:22,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:00:22,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:00:22,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:22,502 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:00:22,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:00:22,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:00:22,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 03:00:22,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 03:00:22,783 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:00:23,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:23,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:23,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:23,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:00:23,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:00:23,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:24,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:24,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:24,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:24,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:00:24,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:00:24,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:25,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:25,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:25,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:25,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:00:25,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:00:25,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:26,018 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:00:26,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:00:26,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:00:26,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-02 03:00:26,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-02 03:00:26,293 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:00:27,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:27,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:27,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:27,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:00:27,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:00:27,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:30,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:30,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:30,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:30,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:00:30,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:00:30,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:32,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:32,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:32,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:32,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:00:32,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:00:32,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:32,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:32,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:32,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:33,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:00:33,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:00:33,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:33,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:33,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:33,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:33,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:00:33,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:00:33,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:34,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:34,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:34,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:34,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:00:34,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:00:34,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:36,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:36,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:36,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:36,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:00:36,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:00:36,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:36,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:36,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:37,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:37,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:00:37,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:00:37,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:39,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:39,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:39,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:39,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:00:39,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:00:39,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:41,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:41,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:41,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:41,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:00:41,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:00:41,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:42,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:42,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:42,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:42,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:00:42,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:00:42,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:43,025 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:00:43,047 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:00:43,124 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.316 +2025-10-02 03:00:43,124 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 03:00:43,125 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 03:00:45,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:45,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:45,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:45,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:00:45,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:00:45,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:45,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:45,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:45,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:46,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:00:46,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:00:46,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:48,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:48,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:48,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:49,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 03:00:49,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 03:00:49,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:52,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:52,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:52,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:52,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:00:52,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:00:52,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:00:54,485 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:00:54,518 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:00:54,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.827 +2025-10-02 03:00:54,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 03:00:54,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 03:00:55,686 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:00:55,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:00:55,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:00:55,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 03:00:55,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-02 03:00:55,993 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:00:58,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:00:58,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:58,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:58,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:00:58,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:00:58,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:02,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:02,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:02,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:02,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:01:02,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:01:02,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:05,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:05,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:05,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:05,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:01:05,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:01:05,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:07,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:07,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:07,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:07,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:01:07,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:01:07,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:09,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:09,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:09,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:09,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:01:09,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:01:09,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:11,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:11,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:11,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:11,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:01:11,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:01:11,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:13,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:13,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:14,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:14,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:01:14,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:01:14,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:16,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:16,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:16,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:16,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:01:16,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:01:16,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:18,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:18,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:18,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:18,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:01:18,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:01:18,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:19,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:19,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:19,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:19,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:01:19,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:01:19,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:24,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:24,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:24,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:24,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:01:24,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:01:24,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:25,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:25,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:25,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:25,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:01:25,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:01:25,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:28,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:28,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:28,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:28,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 03:01:28,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 03:01:28,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:31,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:31,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:31,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:31,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:01:31,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:01:31,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:33,071 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:33,103 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:33,197 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.745 +2025-10-02 03:01:33,197 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 03:01:33,197 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 03:01:36,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:36,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:36,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:36,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:01:36,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:01:36,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:37,899 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:37,925 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:38,002 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.379 +2025-10-02 03:01:38,003 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 03:01:38,003 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 03:01:39,265 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:39,299 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:39,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=175.558 +2025-10-02 03:01:39,379 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 03:01:39,379 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 03:01:42,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:42,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:43,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:43,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 03:01:43,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 03:01:43,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:43,131 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:43,150 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:43,228 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.664 +2025-10-02 03:01:43,228 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 03:01:43,228 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 03:01:44,231 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:44,263 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:44,337 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.574 +2025-10-02 03:01:44,338 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 03:01:44,338 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 03:01:44,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:44,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:44,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:44,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:01:44,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:01:44,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:45,066 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:01:45,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:01:45,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:01:45,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 03:01:45,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 03:01:45,344 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:01:47,837 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:47,863 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:47,945 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.085 +2025-10-02 03:01:47,945 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 03:01:47,945 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 03:01:48,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:48,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:48,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:48,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:01:48,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:01:48,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:51,858 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:51,882 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:51,958 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.392 +2025-10-02 03:01:51,959 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 03:01:51,959 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 03:01:53,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:53,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:53,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:53,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:01:53,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:01:53,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:53,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:53,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:53,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:54,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:01:54,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:01:54,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:54,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:54,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:54,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:54,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 03:01:54,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 03:01:54,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:54,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:54,910 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:55,000 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.373 +2025-10-02 03:01:55,001 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 03:01:55,002 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 03:01:56,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:56,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:56,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:56,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 03:01:56,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 03:01:56,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:57,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:57,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:57,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:57,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:01:57,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:01:57,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:58,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:58,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:58,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:58,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 03:01:58,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 03:01:58,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:01:59,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:01:59,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:59,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:59,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:01:59,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:01:59,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:00,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:00,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:00,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:00,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:02:00,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:02:00,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:00,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:02:00,637 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:02:00,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.297 +2025-10-02 03:02:00,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-02 03:02:00,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 03:02:01,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:01,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:01,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:01,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:02:01,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:02:01,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:02,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:02,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:02,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:03,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:02:03,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:02:03,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:04,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:04,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:04,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:04,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:02:04,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:02:04,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:05,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:05,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:05,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:05,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:02:05,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:02:05,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:08,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:08,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:08,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:08,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:02:08,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:02:08,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:08,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:08,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:08,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:08,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 03:02:08,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 03:02:08,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:09,248 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:02:09,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:02:09,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:02:09,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 03:02:09,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 03:02:09,534 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:02:12,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:12,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:12,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:12,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:02:12,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:02:12,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:14,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:14,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:14,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:14,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:02:14,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:02:14,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:15,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:15,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:15,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:15,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:02:15,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:02:15,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:16,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:16,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:16,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:16,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:02:16,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:02:16,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:17,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:17,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:17,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:17,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:02:17,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:02:17,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:21,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:21,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:21,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:22,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:02:22,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:02:22,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:22,432 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:02:22,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:02:22,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:02:22,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 03:02:22,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 03:02:22,724 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:02:23,511 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:02:23,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:02:23,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:02:23,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 03:02:23,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-02 03:02:23,789 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:02:26,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:26,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:26,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:26,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:02:26,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:02:26,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:26,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:26,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:26,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:26,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-02 03:02:26,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-02 03:02:26,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:27,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:27,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:27,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:27,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:02:27,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:02:27,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:28,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:28,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:28,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:28,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:02:28,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:02:28,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:29,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:29,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:29,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:29,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.126s +2025-10-02 03:02:29,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.126s (avg: 0.126s/image) +2025-10-02 03:02:29,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:29,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:29,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:29,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:29,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:02:29,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:02:29,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:33,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:33,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:33,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:33,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:02:33,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:02:33,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:34,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:34,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:34,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:34,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:02:34,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:02:34,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:34,679 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:02:34,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:02:34,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:02:34,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 03:02:34,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 03:02:34,974 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:02:35,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:35,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:35,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:35,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 03:02:35,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 03:02:35,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:36,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:36,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:36,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:36,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:02:36,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:02:36,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:39,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:39,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:39,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:39,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 03:02:39,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 03:02:39,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:39,718 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:02:39,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:02:39,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:02:39,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 03:02:39,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 03:02:39,996 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:02:40,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:40,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:40,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:40,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:02:40,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:02:40,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:42,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:42,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:42,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:42,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 03:02:42,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 03:02:42,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:43,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:43,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:43,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:43,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:02:43,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:02:43,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:45,626 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:02:45,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:02:45,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:02:45,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-02 03:02:45,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +2025-10-02 03:02:45,939 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:02:46,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:46,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:46,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:46,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:02:46,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:02:46,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:46,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:46,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:46,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:46,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 03:02:46,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 03:02:46,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:47,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:47,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:48,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:48,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 03:02:48,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 03:02:48,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:48,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:48,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:48,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:48,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:02:48,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:02:48,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:50,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:50,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:50,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:50,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:02:50,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:02:50,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:50,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:50,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:50,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:51,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 03:02:51,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 03:02:51,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:52,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:52,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:52,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:52,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:02:52,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:02:52,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:52,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:52,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:52,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:52,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:02:52,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:02:52,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:56,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:56,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:56,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:56,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-02 03:02:56,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-02 03:02:56,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:56,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:56,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:56,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:57,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:02:57,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:02:57,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:57,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:57,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:58,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:58,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:02:58,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:02:58,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:58,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:58,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:58,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:58,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:02:58,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:02:58,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:02:59,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:02:59,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:59,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:59,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:02:59,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:02:59,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:00,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:00,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:00,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:00,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:03:00,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:03:00,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:02,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:02,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:02,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:02,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:03:02,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:03:02,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:04,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:04,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:04,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:04,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:03:04,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:03:04,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:06,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:06,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:06,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:06,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:03:06,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:03:06,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:07,411 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:03:07,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:03:07,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:03:07,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +2025-10-02 03:03:07,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.319s (avg: 0.160s/image) +2025-10-02 03:03:07,731 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:03:11,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:11,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:11,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:11,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 03:03:11,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 03:03:11,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:16,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:16,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:16,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:16,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:03:16,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:03:16,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:18,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:18,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:18,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:18,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 03:03:18,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 03:03:18,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:18,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:18,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:18,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:18,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:03:18,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:03:18,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:20,497 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:03:20,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:03:20,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:03:20,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 03:03:20,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 03:03:20,802 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:03:23,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:23,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:23,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:23,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:03:23,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:03:23,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:24,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:24,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:24,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:24,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:03:24,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:03:24,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:25,882 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:03:25,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:03:25,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:03:26,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 03:03:26,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-02 03:03:26,165 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:03:26,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:26,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:26,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:26,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:03:26,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:03:26,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:29,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:29,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:29,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:29,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:03:29,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:03:29,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:33,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:33,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:33,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:33,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:03:33,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:03:33,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:33,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:33,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:33,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:34,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:03:34,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:03:34,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:34,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:34,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:34,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:34,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 03:03:34,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 03:03:34,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:34,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:34,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:34,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:34,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:03:34,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:03:34,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:38,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:38,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:38,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:38,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:03:38,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:03:38,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:38,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:38,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:38,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:38,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 03:03:38,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 03:03:38,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:38,788 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:03:38,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:03:38,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:03:39,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.252s +2025-10-02 03:03:39,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.252s (avg: 0.126s/image) +2025-10-02 03:03:39,041 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:03:39,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:39,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:39,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:39,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:03:39,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:03:39,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:39,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:39,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:39,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:39,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 03:03:39,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 03:03:39,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:41,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:41,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:41,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:41,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:03:41,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:03:41,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:44,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:44,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:44,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:44,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:03:44,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:03:44,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:44,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:44,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:44,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:44,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:03:44,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:03:44,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:44,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:44,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:44,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:45,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:03:45,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:03:45,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:45,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:45,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:46,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:46,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:03:46,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:03:46,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:46,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:46,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:46,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:46,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:03:46,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:03:46,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:48,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:48,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:48,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:48,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 03:03:48,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 03:03:48,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:49,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:49,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:49,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:49,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:03:49,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:03:49,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:51,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:51,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:51,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:51,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:03:51,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:03:51,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:51,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:51,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:51,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:52,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:03:52,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:03:52,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:52,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:52,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:52,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:52,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:03:52,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:03:52,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:52,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:52,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:52,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:52,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:03:52,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:03:52,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:54,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:54,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:54,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:54,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:03:54,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:03:54,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:54,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:54,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:54,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:55,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:03:55,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:03:55,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:55,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:55,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:55,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:55,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:03:55,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:03:55,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:57,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:57,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:57,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:57,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:03:57,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:03:57,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:59,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:03:59,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:59,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:59,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:03:59,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:03:59,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:03:59,828 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:03:59,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:03:59,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:04:00,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 03:04:00,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 03:04:00,112 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:04:00,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:00,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:00,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:00,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 03:04:00,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 03:04:00,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:00,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:00,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:00,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:00,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:04:00,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:04:00,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:02,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:02,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:02,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:02,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:04:02,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:04:02,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:04,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:04,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:04,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:05,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:04:05,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:04:05,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:05,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:05,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:05,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:06,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:04:06,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:04:06,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:06,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:06,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:06,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:06,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:04:06,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:04:06,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:07,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:07,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:07,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:07,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:04:07,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:04:07,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:10,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:10,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:10,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:11,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 03:04:11,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 03:04:11,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:11,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:11,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:11,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:11,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:04:11,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:04:11,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:12,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:12,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:12,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:12,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:04:12,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:04:12,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:13,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:13,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:13,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:13,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:04:13,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:04:13,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:13,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:13,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:13,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:13,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 03:04:13,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 03:04:13,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:16,388 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:04:16,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:04:16,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:04:16,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-02 03:04:16,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-02 03:04:16,697 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:04:16,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:16,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:16,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:17,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 03:04:17,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 03:04:17,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:17,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:17,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:17,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:17,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 03:04:17,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 03:04:17,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:18,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:18,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:18,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:19,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:04:19,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:04:19,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:20,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:20,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:20,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:20,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:04:20,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:04:20,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:20,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:20,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:21,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:21,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:04:21,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:04:21,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:21,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:21,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:21,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:21,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:04:21,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:04:21,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:21,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:21,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:21,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:22,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:04:22,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:04:22,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:24,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:24,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:24,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:25,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:04:25,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:04:25,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:26,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:26,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:26,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:26,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:04:26,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:04:26,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:26,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:26,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:26,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:26,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:04:26,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:04:26,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:27,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:27,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:27,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:27,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 03:04:27,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 03:04:27,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:28,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:28,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:28,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:28,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:04:28,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:04:28,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:29,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:29,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:29,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:29,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:04:29,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:04:29,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:32,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:32,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:32,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:33,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 03:04:33,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 03:04:33,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:33,446 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:04:33,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:04:33,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:04:33,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 03:04:33,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 03:04:33,722 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:04:38,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:38,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:38,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:38,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:04:38,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:04:38,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:41,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:41,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:41,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:41,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:04:41,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:04:41,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:42,315 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:04:42,338 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:04:42,414 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.485 +2025-10-02 03:04:42,414 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 03:04:42,415 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 03:04:43,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:43,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:43,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:44,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 03:04:44,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 03:04:44,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:44,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:44,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:44,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:44,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:04:44,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:04:44,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:45,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:45,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:45,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:46,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:04:46,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:04:46,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:47,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:47,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:48,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:48,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:04:48,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:04:48,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:48,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:48,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:48,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:48,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:04:48,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:04:48,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:49,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:49,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:49,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:49,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 03:04:49,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 03:04:49,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:53,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:53,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:53,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:53,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:04:53,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:04:53,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:54,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:54,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:54,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:54,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:04:54,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:04:54,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:58,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:58,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:58,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:58,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:04:58,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:04:58,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:04:59,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:04:59,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:59,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:59,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:04:59,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:04:59,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:05,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:05,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:05,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:05,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 03:05:05,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 03:05:05,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:06,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:06,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:06,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:06,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 03:05:06,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 03:05:06,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:10,171 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:05:10,198 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 801, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:05:10,283 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.153 +2025-10-02 03:05:10,283 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 03:05:10,284 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 03:05:11,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:11,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:11,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:11,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 03:05:11,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 03:05:11,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:12,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:12,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:12,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:12,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:05:12,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:05:12,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:13,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:13,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:13,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:13,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:05:13,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:05:13,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:17,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:17,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:17,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:18,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:05:18,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:05:18,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:19,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:19,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:19,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:19,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:05:19,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:05:19,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:22,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:22,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:22,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:22,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:05:22,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:05:22,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:24,022 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:05:24,047 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:05:24,142 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.830 +2025-10-02 03:05:24,142 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 03:05:24,142 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 03:05:24,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:24,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:24,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:24,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:05:24,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:05:24,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:25,045 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:05:25,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:05:25,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:05:25,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-02 03:05:25,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.154s/image) +2025-10-02 03:05:25,356 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:05:28,766 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:05:28,802 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:05:28,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.098 +2025-10-02 03:05:28,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 03:05:28,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 03:05:31,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:31,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:31,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:31,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 03:05:31,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 03:05:31,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:32,522 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:05:32,546 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:05:32,619 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.262 +2025-10-02 03:05:32,619 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 03:05:32,619 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 03:05:34,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:34,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:34,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:34,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 03:05:34,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 03:05:34,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:34,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:34,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:34,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:34,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:05:34,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:05:34,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:35,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:35,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:35,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:35,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:05:35,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:05:35,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:36,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:36,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:36,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:36,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 03:05:36,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 03:05:36,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:41,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:41,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:41,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:41,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:05:41,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:05:41,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:42,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:42,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:42,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:43,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:05:43,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:05:43,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:43,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:43,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:44,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:44,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:05:44,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:05:44,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:44,914 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:05:44,937 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:05:45,039 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.882 +2025-10-02 03:05:45,039 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-02 03:05:45,039 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 03:05:46,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:46,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:46,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:46,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 03:05:46,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 03:05:46,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:47,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:47,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:47,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:47,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:05:47,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:05:47,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:51,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:51,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:51,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:51,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:05:51,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:05:51,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:52,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:52,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:52,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:52,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 03:05:52,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 03:05:52,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:52,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:52,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:52,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:52,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:05:52,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:05:52,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:52,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:52,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:53,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:53,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:05:53,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:05:53,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:58,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:58,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:58,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:58,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:05:58,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:05:58,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:05:59,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:05:59,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:59,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:59,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 03:05:59,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 03:05:59,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:00,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:00,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:00,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:00,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:06:00,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:06:00,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:01,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:01,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:01,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:01,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:06:01,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:06:01,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:01,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:01,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:01,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:01,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:06:01,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:06:01,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:03,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:03,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:03,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:03,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:06:03,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:06:03,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:04,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:04,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:04,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:04,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:06:04,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:06:04,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:07,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:07,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:07,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:07,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:06:07,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:06:07,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:08,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:08,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:08,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:08,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:06:08,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:06:08,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:09,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:09,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:09,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:10,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:06:10,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:06:10,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:12,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:12,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:12,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:12,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:06:12,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:06:12,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:15,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:15,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:15,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:15,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:06:15,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:06:15,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:20,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:20,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:20,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:20,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:06:20,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:06:20,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:21,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:21,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:21,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:21,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 03:06:21,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 03:06:21,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:24,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:24,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:24,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:24,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 03:06:24,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 03:06:24,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:26,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:26,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:26,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:26,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:06:26,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:06:26,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:26,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:26,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:26,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:27,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:06:27,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:06:27,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:27,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:27,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:27,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:27,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:06:27,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:06:27,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:28,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:28,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:28,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:28,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 03:06:28,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 03:06:28,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:31,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:31,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:31,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:32,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:06:32,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:06:32,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:32,465 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:06:32,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:06:32,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:06:32,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.328s +2025-10-02 03:06:32,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.328s (avg: 0.164s/image) +2025-10-02 03:06:32,794 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:06:33,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:33,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:33,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:33,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 03:06:33,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 03:06:33,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:38,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:38,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:38,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:38,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:06:38,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:06:38,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:39,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:39,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:39,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:39,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:06:39,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:06:39,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:40,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:40,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:40,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:40,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:06:40,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:06:40,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:40,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:40,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:40,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:40,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:06:40,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:06:40,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:41,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:41,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:41,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:41,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 03:06:41,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 03:06:41,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:42,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:42,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:43,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:43,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:06:43,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:06:43,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:45,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:45,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:45,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:45,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:06:45,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:06:45,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:45,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:45,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:45,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:45,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:06:45,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:06:45,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:46,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:46,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:46,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:46,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:06:46,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:06:46,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:48,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:48,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:48,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:48,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:06:48,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:06:48,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:51,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:51,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:51,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:51,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:06:51,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:06:51,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:52,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:52,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:52,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:52,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:06:52,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:06:52,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:52,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:52,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:52,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:52,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 03:06:52,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 03:06:52,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:53,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:53,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:53,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:53,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:06:53,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:06:53,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:53,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:53,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:53,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:54,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +2025-10-02 03:06:54,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image) +2025-10-02 03:06:54,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:54,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:54,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:54,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:54,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:06:54,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:06:54,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:06:59,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:06:59,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:00,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:00,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:07:00,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:07:00,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:00,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:00,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:00,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:00,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:07:00,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:07:00,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:01,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:01,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:01,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:01,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:07:01,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:07:01,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:01,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:01,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:01,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:01,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:07:01,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:07:01,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:06,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:06,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:06,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:06,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:07:06,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:07:06,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:06,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:06,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:06,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:07,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:07:07,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:07:07,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:09,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:09,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:09,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:09,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 03:07:09,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 03:07:09,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:11,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:11,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:11,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:11,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:07:11,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:07:11,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:15,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:15,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:15,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:15,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:07:15,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:07:15,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:15,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:15,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:16,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:16,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:07:16,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:07:16,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:16,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:16,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:16,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:16,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:07:16,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:07:16,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:19,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:19,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:19,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:19,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 03:07:19,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 03:07:19,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:19,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:19,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:19,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:19,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-02 03:07:19,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-02 03:07:19,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:21,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:21,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:21,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:21,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:07:21,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:07:21,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:22,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:22,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:22,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:22,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:07:22,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:07:22,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:23,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:23,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:24,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:24,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:07:24,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:07:24,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:24,551 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:07:24,572 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:07:24,656 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.108 +2025-10-02 03:07:24,656 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 03:07:24,656 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 03:07:27,715 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:07:27,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:07:27,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:07:28,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 03:07:28,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 03:07:28,002 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:07:28,196 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:07:28,213 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:07:28,295 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.270 +2025-10-02 03:07:28,295 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 03:07:28,295 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 03:07:31,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:31,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:31,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:31,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 03:07:31,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 03:07:31,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:32,168 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:07:32,190 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:07:32,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.061 +2025-10-02 03:07:32,267 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 03:07:32,267 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 03:07:35,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:35,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:35,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:35,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:07:35,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:07:35,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:35,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:35,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:35,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:35,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:07:35,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:07:35,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:36,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:36,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:36,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:37,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 03:07:37,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 03:07:37,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:38,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:38,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:38,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:38,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:07:38,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:07:38,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:41,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:41,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:41,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:41,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:07:41,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:07:41,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:42,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:42,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:42,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:42,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:07:42,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:07:42,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:42,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:42,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:42,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:43,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:07:43,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:07:43,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:44,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:44,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:45,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:45,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 03:07:45,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 03:07:45,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:46,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:46,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:46,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:46,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:07:46,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:07:46,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:48,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:48,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:48,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:48,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:07:48,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:07:48,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:50,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:50,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:50,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:51,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:07:51,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:07:51,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:54,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:54,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:54,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:54,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:07:54,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:07:54,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:07:59,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:07:59,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:59,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:00,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:08:00,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:08:00,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:02,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:02,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:02,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:02,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:08:02,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:08:02,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:06,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:06,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:06,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:06,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:08:06,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:08:06,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:11,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:11,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:11,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:11,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:08:11,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:08:11,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:12,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:12,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:12,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:12,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:08:12,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:08:12,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:15,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:15,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:15,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:15,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:08:15,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:08:15,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:19,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:19,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:19,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:19,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:08:19,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:08:19,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:20,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:20,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:20,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:20,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:08:20,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:08:20,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:22,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:22,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:22,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:22,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:08:22,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:08:22,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:23,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:23,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:23,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:23,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:08:23,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:08:23,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:25,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:25,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:25,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:25,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:08:25,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:08:25,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:27,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:27,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:27,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:27,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:08:27,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:08:27,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:33,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:33,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:33,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:34,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:08:34,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:08:34,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:35,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:35,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:35,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:35,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:08:35,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:08:35,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:39,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:39,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:39,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:39,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:08:39,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:08:39,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:43,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:43,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:43,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:43,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:08:43,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:08:43,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:47,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:47,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:47,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:47,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:08:47,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:08:47,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:48,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:08:48,068 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 642, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:08:48,137 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.341 +2025-10-02 03:08:48,137 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-02 03:08:48,137 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-02 03:08:48,748 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:08:48,772 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:08:48,854 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.553 +2025-10-02 03:08:48,855 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 03:08:48,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 03:08:50,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:50,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:50,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:50,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:08:50,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:08:50,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:51,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:51,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:51,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:52,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:08:52,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:08:52,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:52,621 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:08:52,645 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:08:52,733 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.683 +2025-10-02 03:08:52,733 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 03:08:52,734 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 03:08:53,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:53,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:53,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:54,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:08:54,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:08:54,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:55,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:55,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:55,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:55,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:08:55,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:08:55,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:56,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:56,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:56,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:56,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:08:56,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:08:56,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:08:57,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:08:57,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:57,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:57,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:08:57,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:08:57,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:01,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:01,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:01,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:02,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:09:02,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:09:02,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:03,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:03,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:03,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:03,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:09:03,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:09:03,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:03,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:03,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:03,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:03,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:09:03,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:09:03,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:06,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:06,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:06,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:06,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:09:06,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:09:06,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:11,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:11,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:11,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:11,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:09:11,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:09:11,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:12,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:12,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:12,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:12,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:09:12,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:09:12,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:17,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:17,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:17,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:17,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:09:17,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:09:17,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:21,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:21,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:21,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:21,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:09:21,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:09:21,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:27,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:27,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:27,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:27,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:09:27,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:09:27,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:29,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:29,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:29,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:29,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:09:29,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:09:29,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:30,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:30,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:30,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:30,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:09:30,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:09:30,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:35,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:35,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:35,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:35,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:09:35,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:09:35,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:36,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:36,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:36,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:36,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:09:36,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:09:36,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:37,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:37,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:37,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:37,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:09:37,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:09:37,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:41,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:41,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:41,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:42,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:09:42,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:09:42,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:42,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:42,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:42,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:42,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 03:09:42,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 03:09:42,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:43,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:43,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:43,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:43,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:09:43,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:09:43,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:43,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:43,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:43,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:44,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:09:44,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:09:44,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:46,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:46,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:46,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:46,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:09:46,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:09:46,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:47,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:47,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:47,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:47,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:09:47,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:09:47,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:49,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:49,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:49,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:49,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:09:49,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:09:49,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:50,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:50,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:50,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:50,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:09:50,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:09:50,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:50,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:50,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:50,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:51,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:09:51,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:09:51,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:51,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:51,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:51,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:51,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:09:51,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:09:51,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:54,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:54,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:54,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:54,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:09:54,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:09:54,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:55,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:55,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:55,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:56,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:09:56,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:09:56,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:58,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:58,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:58,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:58,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:09:58,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:09:58,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:09:58,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:09:58,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:58,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:58,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:09:58,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:09:58,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:05,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:05,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:05,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:05,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:10:05,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:10:05,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:06,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:06,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:06,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:07,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:10:07,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:10:07,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:07,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:07,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:07,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:07,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:10:07,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:10:07,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:08,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:08,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:08,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:08,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:10:08,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:10:08,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:10,020 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:10:10,044 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:10:10,128 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.638 +2025-10-02 03:10:10,128 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 03:10:10,129 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 03:10:11,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:11,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:11,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:11,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:10:11,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:10:11,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:12,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:12,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:12,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:12,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:10:12,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:10:12,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:13,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:13,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:13,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:14,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:10:14,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:10:14,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:15,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:15,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:15,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:15,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:10:15,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:10:15,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:18,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:18,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:18,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:18,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:10:18,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:10:18,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:18,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:18,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:18,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:19,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:10:19,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:10:19,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:19,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:19,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:19,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:19,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:10:19,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:10:19,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:20,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:20,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:20,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:20,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:10:20,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:10:20,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:23,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:23,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:23,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:24,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:10:24,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:10:24,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:25,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:25,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:25,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:25,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:10:25,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:10:25,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:25,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:25,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:25,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:25,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:10:25,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:10:25,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:26,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:26,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:26,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:26,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:10:26,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:10:26,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:27,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:27,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:27,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:27,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:10:27,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:10:27,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:29,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:29,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:29,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:30,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:10:30,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:10:30,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:31,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:31,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:31,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:31,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:10:31,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:10:31,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:32,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:32,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:32,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:32,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:10:32,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:10:32,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:33,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:33,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:33,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:33,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:10:33,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:10:33,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:34,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:34,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:34,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:34,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:10:34,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:10:34,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:37,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:37,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:37,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:37,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:10:37,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:10:37,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:37,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:37,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:37,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:37,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:10:37,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:10:37,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:40,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:40,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:40,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:40,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:10:40,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:10:40,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:41,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:41,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:41,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:41,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:10:41,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:10:41,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:43,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:43,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:43,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:43,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:10:43,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:10:43,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:47,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:47,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:47,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:47,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:10:47,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:10:47,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:47,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:47,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:47,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:47,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:10:47,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:10:47,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:51,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:51,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:51,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:51,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:10:51,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:10:51,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:54,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:54,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:54,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:55,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:10:55,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:10:55,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:57,972 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:10:57,999 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:10:58,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.870 +2025-10-02 03:10:58,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 03:10:58,088 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 03:10:58,515 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:10:58,536 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:10:58,623 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.578 +2025-10-02 03:10:58,624 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 03:10:58,625 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 03:10:58,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:58,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:58,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:59,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:10:59,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:10:59,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:10:59,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:10:59,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:59,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:59,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 03:10:59,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 03:10:59,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:01,608 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:11:01,637 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:11:01,723 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.140 +2025-10-02 03:11:01,724 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 03:11:01,725 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 03:11:01,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:01,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:02,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:02,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:11:02,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:11:02,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:04,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:04,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:04,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:04,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:11:04,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:11:04,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:06,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:06,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:06,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:06,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:11:06,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:11:06,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:06,626 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:11:06,647 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:11:06,738 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.952 +2025-10-02 03:11:06,738 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 03:11:06,739 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 03:11:09,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:09,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:09,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:10,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:11:10,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:11:10,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:11,090 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:11:11,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:11:11,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:11:11,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 03:11:11,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 03:11:11,389 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:11:11,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:11,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:11,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:12,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:11:12,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:11:12,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:13,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:13,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:13,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:13,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:11:13,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:11:13,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:14,386 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:11:14,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:11:14,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:11:14,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 03:11:14,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 03:11:14,672 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:11:15,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:15,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:16,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:16,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:11:16,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:11:16,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:16,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:16,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:16,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:16,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 03:11:16,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 03:11:16,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:21,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:21,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:22,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:22,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:11:22,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:11:22,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:22,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:22,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:22,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:22,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:11:22,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:11:22,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:22,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:22,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:22,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:22,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 03:11:22,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 03:11:22,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:26,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:26,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:26,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:26,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:11:26,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:11:26,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:26,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:26,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:26,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:26,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 03:11:26,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 03:11:26,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:29,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:29,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:29,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:29,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:11:29,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:11:29,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:33,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:33,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:33,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:33,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:11:33,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:11:33,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:37,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:37,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:37,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:37,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:11:37,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:11:37,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:41,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:41,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:41,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:41,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:11:41,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:11:41,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:42,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:42,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:42,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:42,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:11:42,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:11:42,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:43,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:43,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:43,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:44,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:11:44,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:11:44,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:46,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:46,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:46,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:46,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:11:46,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:11:46,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:47,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:47,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:47,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:47,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:11:47,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:11:47,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:52,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:52,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:52,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:52,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:11:52,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:11:52,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:53,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:53,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:53,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:53,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:11:53,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:11:53,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:11:57,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:11:57,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:57,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:57,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:11:57,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:11:57,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:03,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:03,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:03,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:03,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:12:03,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:12:03,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:04,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:04,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:04,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:04,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:12:04,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:12:04,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:05,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:05,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:05,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:06,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:12:06,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:12:06,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:07,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:07,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:08,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:08,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:12:08,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:12:08,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:10,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:10,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:10,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:10,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:12:10,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:12:10,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:10,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:10,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:10,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:11,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:12:11,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:12:11,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:12,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:12,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:12,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:12,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:12:12,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:12:12,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:13,590 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:12:13,610 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:12:13,699 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.531 +2025-10-02 03:12:13,699 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 03:12:13,700 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 03:12:15,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:15,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:15,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:16,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:12:16,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:12:16,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:17,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:17,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:17,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:17,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:12:17,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:12:17,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:18,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:18,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:18,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:18,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:12:18,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:12:18,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:19,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:19,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:19,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:19,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:12:19,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:12:19,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:23,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:23,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:23,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:23,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:12:23,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:12:23,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:24,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:24,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:24,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:24,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:12:24,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:12:24,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:27,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:27,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:27,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:27,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:12:27,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:12:27,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:28,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:28,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:28,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:28,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:12:28,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:12:28,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:29,227 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:12:29,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:12:29,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:12:29,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-02 03:12:29,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-02 03:12:29,501 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:12:37,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:37,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:37,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:37,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:12:37,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:12:37,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:37,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:37,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:37,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:37,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:12:37,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:12:37,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:38,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:38,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:38,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:38,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:12:38,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:12:38,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:38,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:38,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:38,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:38,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:12:38,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:12:38,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:42,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:42,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:42,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:43,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:12:43,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:12:43,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:47,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:47,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:47,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:47,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:12:47,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:12:47,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:48,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:48,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:49,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:49,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:12:49,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:12:49,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:50,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:50,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:50,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:50,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:12:50,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:12:50,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:52,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:52,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:52,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:53,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:12:53,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:12:53,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:54,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:54,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:54,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:54,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:12:54,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:12:54,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:56,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:56,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:56,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:56,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 03:12:56,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 03:12:56,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:12:59,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:12:59,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:59,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:59,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:12:59,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:12:59,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:02,012 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:13:02,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:13:02,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:13:02,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-02 03:13:02,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-02 03:13:02,293 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:13:06,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:06,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:06,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:06,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:13:06,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:13:06,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:09,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:09,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:09,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:09,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:13:09,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:13:09,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:09,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:09,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:10,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:10,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:13:10,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:13:10,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:15,225 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:13:15,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:13:15,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:13:15,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-02 03:13:15,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-02 03:13:15,529 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:13:15,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:15,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:15,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:15,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:13:15,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:13:15,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:17,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:17,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:17,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:17,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:13:17,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:13:17,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:17,487 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:13:17,522 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:13:17,616 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.155 +2025-10-02 03:13:17,616 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 03:13:17,619 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 03:13:20,319 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:13:20,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:13:20,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:13:20,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 03:13:20,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-02 03:13:20,625 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:13:21,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:21,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:21,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:21,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 03:13:21,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 03:13:21,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:23,255 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:13:23,283 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:13:23,363 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.731 +2025-10-02 03:13:23,363 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 03:13:23,363 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 03:13:24,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:24,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:24,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:24,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:13:24,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:13:24,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:26,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:26,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:26,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:26,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:13:26,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:13:26,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:28,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:28,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:28,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:28,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 03:13:28,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 03:13:28,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:30,783 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:13:30,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:13:30,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:13:31,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-02 03:13:31,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-02 03:13:31,054 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:13:31,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:31,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:31,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:31,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:13:31,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:13:31,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:32,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:32,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:32,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:32,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:13:32,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:13:32,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:33,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:33,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:33,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:33,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:13:33,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:13:33,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:34,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:34,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:34,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:34,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:13:34,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:13:34,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:35,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:35,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:35,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:35,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:13:35,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:13:35,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:37,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:37,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:37,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:37,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:13:37,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:13:37,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:39,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:39,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:39,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:39,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:13:39,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:13:39,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:40,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:40,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:40,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:40,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:13:40,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:13:40,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:41,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:41,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:41,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:41,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:13:41,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:13:41,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:44,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:44,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:44,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:44,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:13:44,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:13:44,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:45,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:45,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:45,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:45,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:13:45,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:13:45,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:45,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:45,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:45,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:45,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:13:45,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:13:45,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:46,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:46,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:46,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:46,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 03:13:46,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 03:13:46,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:46,786 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:13:46,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:13:46,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:13:47,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 03:13:47,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-02 03:13:47,072 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:13:51,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:51,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:51,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:52,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:13:52,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:13:52,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:53,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:53,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:53,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:53,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:13:53,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:13:53,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:55,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:55,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:55,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:55,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:13:55,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:13:55,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:56,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:56,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:56,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:56,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:13:56,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:13:56,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:13:59,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:13:59,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:59,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:00,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:14:00,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:14:00,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:00,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:00,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:00,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:00,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:14:00,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:14:00,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:08,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:08,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:08,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:08,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:14:08,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:14:08,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:11,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:11,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:11,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:11,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:14:11,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:14:11,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:13,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:13,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:13,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:13,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:14:13,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:14:13,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:15,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:15,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:15,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:15,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:14:15,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:14:15,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:18,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:18,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:18,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:18,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:14:18,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:14:18,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:20,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:20,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:20,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:20,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:14:20,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:14:20,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:22,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:22,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:22,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:22,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:14:22,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:14:22,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:25,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:25,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:25,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:25,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:14:25,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:14:25,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:27,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:27,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:27,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:27,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:14:27,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:14:27,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:33,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:33,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:33,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:33,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:14:33,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:14:33,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:35,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:35,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:35,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:35,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:14:35,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:14:35,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:40,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:40,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:40,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:41,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:14:41,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:14:41,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:42,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:42,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:42,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:42,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:14:42,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:14:42,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:46,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:46,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:46,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:47,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:14:47,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:14:47,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:48,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:48,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:48,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:48,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:14:48,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:14:48,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:14:53,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:14:53,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:53,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:54,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:14:54,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:14:54,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:15:00,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:15:00,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:00,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:00,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:15:00,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:15:00,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:15:09,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:15:09,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:09,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:09,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:15:09,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:15:09,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:15:15,003 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:15:15,038 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:15:15,138 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.931 +2025-10-02 03:15:15,138 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-02 03:15:15,140 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-02 03:15:15,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:15:15,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:15,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:15,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:15:15,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:15:15,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:15:23,616 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:15:23,653 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:15:23,743 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.672 +2025-10-02 03:15:23,744 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 03:15:23,744 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 03:15:31,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:15:31,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:31,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:31,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:15:31,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:15:31,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:15:36,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:15:36,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:36,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:36,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:15:36,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:15:36,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:15:38,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:15:38,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:38,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:38,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:15:38,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:15:38,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:15:41,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:15:41,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:41,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:41,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:15:41,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:15:41,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:15:46,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:15:46,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:46,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:46,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:15:46,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:15:46,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:15:53,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:15:53,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:53,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:53,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:15:53,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:15:53,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:00,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:00,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:01,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:01,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:16:01,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:16:01,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:02,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:02,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:02,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:02,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:16:02,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:16:02,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:06,350 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:16:06,378 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:16:06,463 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.817 +2025-10-02 03:16:06,464 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 03:16:06,464 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 03:16:07,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:07,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:07,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:07,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:16:07,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:16:07,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:07,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:07,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:07,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:07,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:16:07,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:16:07,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:07,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:07,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:07,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:08,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 03:16:08,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 03:16:08,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:11,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:16:11,946 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:16:12,040 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.260 +2025-10-02 03:16:12,040 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 03:16:12,041 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 03:16:19,105 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:16:19,132 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:16:19,223 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.789 +2025-10-02 03:16:19,224 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 03:16:19,225 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 03:16:19,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:19,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:19,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:19,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:16:19,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:16:19,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:21,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:21,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:21,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:21,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:16:21,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:16:21,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:23,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:23,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:23,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:24,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:16:24,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:16:24,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:24,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:24,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:24,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:24,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:16:24,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:16:24,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:29,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:29,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:29,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:29,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:16:29,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:16:29,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:29,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:29,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:29,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:29,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:16:29,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:16:29,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:34,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:34,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:35,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:35,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:16:35,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:16:35,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:37,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:37,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:37,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:37,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:16:37,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:16:37,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:37,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:37,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:37,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:38,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:16:38,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:16:38,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:40,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:40,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:40,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:41,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:16:41,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:16:41,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:43,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:43,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:44,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:44,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 03:16:44,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 03:16:44,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:49,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:49,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:49,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:49,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:16:49,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:16:49,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:52,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:52,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:52,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:52,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:16:52,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:16:52,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:54,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:54,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:54,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:54,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:16:54,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:16:54,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:55,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:55,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:55,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:55,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:16:55,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:16:55,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:16:56,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:16:56,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:56,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:56,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:16:56,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:16:56,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:01,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:01,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:01,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:01,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:17:01,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:17:01,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:01,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:01,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:01,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:02,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:17:02,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:17:02,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:02,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:02,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:02,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:02,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:17:02,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:17:02,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:03,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:03,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:03,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:03,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:17:03,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:17:03,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:04,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:04,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:04,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:04,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:17:04,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:17:04,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:05,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:05,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:05,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:05,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:17:05,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:17:05,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:09,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:09,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:09,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:09,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:17:09,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:17:09,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:09,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:09,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:10,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:10,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:17:10,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:17:10,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:10,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:10,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:10,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:10,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:17:10,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:17:10,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:11,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:11,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:11,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:12,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:17:12,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:17:12,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:13,464 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:17:13,491 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:17:13,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.358 +2025-10-02 03:17:13,587 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-02 03:17:13,589 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 03:17:14,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:14,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:14,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:15,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:17:15,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:17:15,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:17,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:17,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:17,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:17,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:17:17,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:17:17,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:19,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:19,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:19,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:19,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:17:19,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:17:19,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:20,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:20,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:20,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:20,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:17:20,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:17:20,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:20,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:20,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:20,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:20,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:17:20,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:17:20,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:21,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:21,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:22,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:22,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:17:22,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:17:22,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:22,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:22,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:23,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:23,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:17:23,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:17:23,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:23,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:23,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:23,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:24,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:17:24,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:17:24,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:26,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:26,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:26,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:26,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:17:26,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:17:26,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:28,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:28,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:28,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:28,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:17:28,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:17:28,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:29,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:29,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:29,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:29,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:17:29,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:17:29,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:29,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:29,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:29,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:29,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:17:29,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:17:29,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:31,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:31,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:31,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:31,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:17:31,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:17:31,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:32,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:32,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:32,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:32,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:17:32,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:17:32,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:34,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:34,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:34,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:34,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:17:34,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:17:34,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:34,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:34,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:34,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:35,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:17:35,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:17:35,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:36,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:36,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:36,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:36,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:17:36,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:17:36,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:41,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:41,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:41,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:41,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:17:41,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:17:41,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:41,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:41,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:41,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:42,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:17:42,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:17:42,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:42,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:42,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:42,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:42,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:17:42,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:17:42,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:43,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:43,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:43,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:43,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:17:43,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:17:43,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:43,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:43,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:44,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:44,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:17:44,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:17:44,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:46,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:46,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:46,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:47,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:17:47,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:17:47,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:47,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:47,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:47,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:47,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:17:47,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:17:47,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:50,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:50,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:50,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:50,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:17:50,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:17:50,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:52,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:52,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:52,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:52,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:17:52,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:17:52,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:54,902 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:17:54,924 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:17:55,009 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.224 +2025-10-02 03:17:55,009 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 03:17:55,009 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 03:17:56,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:56,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:56,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:56,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:17:56,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:17:56,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:56,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:56,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:56,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:56,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:17:56,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:17:56,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:58,293 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:17:58,325 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:17:58,410 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=199.892 +2025-10-02 03:17:58,410 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 03:17:58,412 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 03:17:59,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:59,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:59,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:59,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:17:59,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:17:59,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:17:59,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:17:59,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:59,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:00,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:18:00,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:18:00,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:00,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:00,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:00,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:00,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:18:00,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:18:00,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:01,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:01,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:01,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:01,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:18:01,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:18:01,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:03,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:03,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:03,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:03,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:18:03,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:18:03,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:03,969 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:18:03,984 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:18:04,070 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.824 +2025-10-02 03:18:04,071 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 03:18:04,071 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 03:18:04,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:04,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:04,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:04,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 03:18:04,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 03:18:04,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:06,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:06,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:06,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:06,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:18:06,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:18:06,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:08,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:08,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:08,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:08,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:18:08,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:18:08,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:10,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:10,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:10,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:10,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:18:10,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:18:10,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:10,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:10,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:10,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:10,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:18:10,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:18:10,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:12,792 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:18:12,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:18:12,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:18:13,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 03:18:13,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 03:18:13,077 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:18:13,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:13,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:13,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:13,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:18:13,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:18:13,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:16,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:16,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:16,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:16,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:18:16,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:18:16,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:17,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:17,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:17,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:18,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 03:18:18,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 03:18:18,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:18,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:18,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:18,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:18,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:18:18,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:18:18,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:18,966 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:18:18,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:18:19,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:18:19,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 03:18:19,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-02 03:18:19,267 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:18:22,366 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:18:22,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:18:22,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:18:22,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 03:18:22,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 03:18:22,652 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:18:25,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:25,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:25,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:25,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:18:25,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:18:25,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:26,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:26,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:26,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:26,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 03:18:26,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 03:18:26,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:30,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:30,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:30,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:30,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:18:30,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:18:30,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:31,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:31,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:31,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:31,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:18:31,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:18:31,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:33,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:33,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:33,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:33,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 03:18:33,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 03:18:33,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:35,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:35,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:35,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:35,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:18:35,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:18:35,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:39,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:39,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:39,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:39,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:18:39,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:18:39,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:40,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:40,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:40,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:40,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:18:40,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:18:40,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:43,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:43,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:43,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:43,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 03:18:43,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 03:18:43,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:45,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:45,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:45,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:45,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 03:18:45,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 03:18:45,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:47,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:47,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:47,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:47,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:18:47,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:18:47,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:48,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:48,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:48,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:48,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:18:48,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:18:48,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:49,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:49,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:49,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:49,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:18:49,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:18:49,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:50,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:50,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:50,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:50,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:18:50,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:18:50,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:53,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:53,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:53,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:53,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:18:53,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:18:53,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:53,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:53,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:53,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:53,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:18:53,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:18:53,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:54,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:54,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:54,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:54,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:18:54,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:18:54,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:55,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:55,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:55,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:55,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:18:55,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:18:55,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:56,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:56,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:56,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:56,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:18:56,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:18:56,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:58,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:58,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:58,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:58,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:18:58,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:18:58,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:18:59,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:18:59,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:59,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:59,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:18:59,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:18:59,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:00,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:00,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:00,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:01,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:19:01,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:19:01,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:02,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:02,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:02,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:02,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:19:02,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:19:02,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:03,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:03,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:03,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:03,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:19:03,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:19:03,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:04,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:04,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:04,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:05,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:19:05,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:19:05,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:07,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:07,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:07,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:07,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:19:07,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:19:07,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:08,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:08,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:08,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:08,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:19:08,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:19:08,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:13,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:13,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:13,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:13,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:19:13,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:19:13,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:15,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:15,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:15,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:15,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:19:15,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:19:15,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:17,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:17,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:17,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:17,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:19:17,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:19:17,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:19,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:19,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:19,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:19,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:19:19,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:19:19,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:21,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:21,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:21,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:21,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:19:22,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:19:22,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:23,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:23,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:23,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:23,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:19:23,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:19:23,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:27,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:27,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:27,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:27,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:19:27,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:19:27,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:28,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:28,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:29,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:29,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:19:29,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:19:29,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:32,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:32,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:32,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:32,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:19:32,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:19:32,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:33,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:33,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:33,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:33,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:19:33,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:19:33,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:37,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:37,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:37,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:37,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:19:37,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:19:37,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:38,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:38,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:38,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:38,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 03:19:38,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 03:19:38,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:19:48,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:19:48,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:48,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:48,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:19:48,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:19:48,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:04,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:04,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:04,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:05,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:20:05,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:20:05,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:11,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:11,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:11,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:11,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:20:11,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:20:11,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:15,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:15,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:15,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:16,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:20:16,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:20:16,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:17,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:17,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:17,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:18,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:20:18,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:20:18,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:18,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:18,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:18,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:18,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 03:20:18,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 03:20:18,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:20,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:20,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:20,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:20,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:20:20,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:20:20,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:20,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:20,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:20,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:20,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:20:20,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:20:20,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:24,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:24,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:24,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:24,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:20:24,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:20:24,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:25,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:25,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:25,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:25,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:20:25,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:20:25,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:34,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:34,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:34,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:34,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:20:34,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:20:34,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:42,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:42,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:42,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:42,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:20:42,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:20:42,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:50,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:50,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:50,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:50,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:20:50,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:20:50,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:51,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:51,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:51,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:51,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:20:51,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:20:51,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:52,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:52,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:52,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:52,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:20:52,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:20:52,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:54,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:54,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:54,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:54,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:20:54,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:20:54,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:58,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:58,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:58,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:58,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:20:58,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:20:58,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:58,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:58,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:58,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:59,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:20:59,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:20:59,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:20:59,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:20:59,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:59,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:59,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:20:59,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:20:59,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:01,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:01,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:01,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:01,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:21:01,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:21:01,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:03,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:03,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:03,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:03,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:21:03,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:21:03,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:03,967 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:21:03,993 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:21:04,074 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.569 +2025-10-02 03:21:04,074 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 03:21:04,074 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 03:21:05,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:05,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:05,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:05,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:21:05,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:21:05,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:08,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:08,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:09,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:09,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:21:09,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:21:09,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:09,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:09,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:09,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:09,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:21:09,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:21:09,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:12,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:12,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:12,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:12,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:21:12,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:21:12,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:13,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:13,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:13,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:13,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 03:21:13,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 03:21:13,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:14,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:14,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:14,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:14,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:21:14,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:21:14,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:17,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:17,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:17,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:17,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:21:17,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:21:17,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:18,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:18,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:18,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:18,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:21:18,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:21:18,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:19,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:19,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:19,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:19,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:21:19,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:21:19,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:22,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:22,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:22,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:22,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:21:22,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:21:22,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:24,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:24,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:24,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:24,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:21:24,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:21:24,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:25,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:25,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:25,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:26,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:21:26,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:21:26,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:27,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:27,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:27,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:27,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:21:27,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:21:27,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:36,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:36,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:36,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:36,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:21:36,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:21:36,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:37,622 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:21:37,652 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:21:37,733 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.402 +2025-10-02 03:21:37,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 03:21:37,734 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 03:21:39,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:39,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:39,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:39,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 03:21:39,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 03:21:39,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:43,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:43,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:43,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:43,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:21:43,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:21:43,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:44,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:44,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:44,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:44,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:21:44,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:21:44,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:46,701 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:21:46,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:21:46,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:21:47,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-02 03:21:47,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-02 03:21:47,016 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:21:52,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:52,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:52,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:53,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:21:53,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:21:53,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:54,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:54,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:54,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:54,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:21:54,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:21:54,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:55,050 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:21:55,081 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(912, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:21:55,169 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.230 +2025-10-02 03:21:55,169 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 03:21:55,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 03:21:55,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:55,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:55,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:55,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 03:21:55,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 03:21:55,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:21:58,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:21:58,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:58,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:58,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:21:58,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:21:58,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:00,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:00,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:00,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:00,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 03:22:00,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 03:22:00,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:06,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:06,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:06,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:06,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:22:06,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:22:06,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:07,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:07,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:07,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:07,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:22:07,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:22:07,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:07,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:07,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:07,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:08,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:22:08,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:22:08,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:10,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:10,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:10,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:10,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 03:22:10,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 03:22:10,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:13,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:13,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:13,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:13,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:22:13,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:22:13,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:15,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:15,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:15,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:15,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 03:22:15,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 03:22:15,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:15,879 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:22:15,903 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:22:15,982 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.774 +2025-10-02 03:22:15,983 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 03:22:15,983 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 03:22:19,215 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:22:19,237 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:22:19,310 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.116 +2025-10-02 03:22:19,310 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-02 03:22:19,310 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 03:22:20,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:20,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:20,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:20,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:22:20,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:22:20,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:20,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:20,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:20,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:20,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:22:20,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:22:20,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:22,739 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:22:22,762 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:22:22,835 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.986 +2025-10-02 03:22:22,835 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-02 03:22:22,836 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 03:22:23,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:23,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:23,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:23,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:22:23,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:22:23,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:23,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:23,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:23,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:23,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:22:23,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:22:23,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:28,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:28,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:28,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:28,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:22:28,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:22:28,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:29,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:29,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:29,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:29,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:22:29,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:22:29,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:29,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:29,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:29,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:29,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:22:29,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:22:29,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:31,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:31,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:31,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:31,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:22:31,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:22:31,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:36,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:36,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:36,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:37,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:22:37,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:22:37,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:37,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:37,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:37,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:37,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:22:37,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:22:37,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:40,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:40,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:40,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:41,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 03:22:41,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 03:22:41,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:41,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:41,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:41,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:42,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:22:42,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:22:42,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:42,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:42,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:42,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:42,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:22:42,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:22:42,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:44,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:44,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:44,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:44,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:22:44,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:22:44,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:45,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:45,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:45,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:45,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:22:45,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:22:45,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:46,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:46,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:46,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:46,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:22:46,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:22:46,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:47,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:47,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:47,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:47,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:22:47,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:22:47,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:49,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:49,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:49,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:49,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 03:22:49,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 03:22:49,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:49,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:49,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:49,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:49,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:22:49,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:22:49,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:50,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:50,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:50,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:51,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:22:51,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:22:51,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:51,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:51,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:52,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:52,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 03:22:52,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 03:22:52,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:53,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:53,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:53,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:53,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:22:53,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:22:53,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:53,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:53,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:53,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:53,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:22:53,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:22:53,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:54,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:54,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:54,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:54,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:22:54,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:22:54,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:55,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:55,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:55,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:55,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:22:55,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:22:55,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:55,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:55,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:55,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:56,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:22:56,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:22:56,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:56,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:56,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:56,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:56,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:22:56,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:22:56,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:57,367 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:22:57,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:22:57,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:22:57,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 03:22:57,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-02 03:22:57,653 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:22:58,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:58,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:58,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:58,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:22:58,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:22:58,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:22:59,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:22:59,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:00,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:00,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:23:00,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:23:00,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:03,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:03,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:03,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:03,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:23:03,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:23:03,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:04,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:04,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:05,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:05,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:23:05,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:23:05,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:06,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:06,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:06,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:06,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:23:06,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:23:06,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:07,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:07,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:07,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:07,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:23:07,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:23:07,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:07,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:07,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:07,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:08,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:23:08,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:23:08,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:09,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:09,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:09,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:09,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:23:09,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:23:09,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:09,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:09,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:09,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:10,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:23:10,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:23:10,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:10,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:10,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:10,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:10,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:23:10,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:23:10,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:11,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:11,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:12,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:12,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:23:12,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:23:12,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:14,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:14,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:14,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:14,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:23:14,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:23:14,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:14,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:14,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:14,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:15,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:23:15,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:23:15,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:20,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:20,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:20,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:20,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:23:20,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:23:20,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:20,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:20,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:20,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:20,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.125s +2025-10-02 03:23:20,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.125s (avg: 0.125s/image) +2025-10-02 03:23:20,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:20,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:20,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:20,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:20,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 03:23:20,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 03:23:20,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:21,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:21,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:21,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:21,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:23:21,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:23:21,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:21,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:21,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:21,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:21,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:23:21,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:23:21,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:25,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:25,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:25,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:25,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:23:25,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:23:25,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:26,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:26,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:26,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:26,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:23:26,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:23:26,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:27,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:27,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:27,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:27,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:23:27,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:23:27,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:29,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:29,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:29,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:29,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:23:29,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:23:29,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:32,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:32,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:32,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:33,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:23:33,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:23:33,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:33,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:33,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:33,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:34,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:23:34,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:23:34,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:35,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:35,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:35,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:35,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:23:35,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:23:35,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:38,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:38,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:38,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:38,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:23:38,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:23:38,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:38,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:38,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:39,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:39,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:23:39,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:23:39,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:47,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:47,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:47,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:47,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:23:47,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:23:47,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:49,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:49,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:49,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:49,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:23:49,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:23:49,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:51,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:51,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:51,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:51,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:23:51,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:23:51,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:55,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:55,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:55,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:55,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 03:23:55,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 03:23:55,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:23:58,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:23:58,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:58,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:58,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:23:58,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:23:58,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:02,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:02,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:02,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:02,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:24:02,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:24:02,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:03,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:03,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:03,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:03,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:24:03,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:24:03,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:04,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:04,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:04,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:04,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:24:04,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:24:04,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:04,525 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:24:04,543 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:24:04,625 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.025 +2025-10-02 03:24:04,625 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 03:24:04,627 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 03:24:08,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:08,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:08,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:08,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:24:08,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:24:08,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:09,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:09,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:09,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:09,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:24:09,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:24:09,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:13,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:13,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:13,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:13,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:24:13,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:24:13,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:15,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:15,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:15,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:15,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:24:15,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:24:15,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:15,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:15,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:15,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:16,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:24:16,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:24:16,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:21,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:21,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:21,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:21,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:24:21,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:24:21,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:26,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:26,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:26,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:26,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:24:26,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:24:26,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:28,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:28,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:28,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:29,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:24:29,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:24:29,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:32,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:32,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:32,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:32,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:24:32,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:24:32,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:36,549 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 03:24:36,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:24:36,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:24:36,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.338s +2025-10-02 03:24:36,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.338s (avg: 0.169s/image) +2025-10-02 03:24:36,889 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 03:24:38,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:38,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:38,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:38,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:24:38,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:24:38,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:43,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:43,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:43,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:43,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:24:43,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:24:43,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:45,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:45,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:45,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:45,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:24:45,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:24:45,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:50,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:50,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:50,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:50,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:24:50,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:24:50,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:56,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:56,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:56,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:56,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:24:56,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:24:56,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:24:57,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:24:57,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:57,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:57,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:24:57,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:24:57,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:25:03,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:25:03,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:03,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:03,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:25:03,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:25:03,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:25:04,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:25:04,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:04,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:04,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:25:04,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:25:04,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:25:05,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:25:05,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:05,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:05,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:25:05,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:25:05,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:25:09,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:25:09,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:09,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:09,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:25:09,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:25:09,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:25:10,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:25:10,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:10,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:10,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:25:10,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:25:10,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:25:15,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:25:15,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:15,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:15,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:25:15,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:25:15,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:25:16,588 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:25:16,623 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:25:16,709 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.868 +2025-10-02 03:25:16,710 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 03:25:16,710 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 03:25:20,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:25:20,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:20,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:20,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:25:20,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:25:20,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:25:21,199 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:25:21,235 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:25:21,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.224 +2025-10-02 03:25:21,320 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 03:25:21,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 03:25:25,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:25:25,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:25,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:25,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:25:25,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:25:25,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:25:30,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:25:30,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:30,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:30,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:25:30,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:25:30,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:25:33,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:25:33,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:33,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:33,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:25:33,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:25:33,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:25:35,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:25:35,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:35,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:36,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:25:36,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:25:36,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 03:25:37,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 03:25:37,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:37,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:37,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 03:25:37,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 03:25:37,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. diff --git a/logs/main_server.log b/logs/main_server.log index 41cb5e5..aea910d 100644 --- a/logs/main_server.log +++ b/logs/main_server.log @@ -1,102 +1,89361 @@ WARNING:root:jtop library not found. Jetson monitoring will be limited. Please run 'sudo pip install jetson-stats' -INFO: Started server process [192534] +INFO: Started server process [271615] INFO: Waiting for application startup. INFO:main:🚀 인페인팅 서버 시작 중... -2025-10-01 08:18:14,049 - main - INFO - 🚀 인페인팅 서버 시작 중... +2025-10-02 00:42:20,858 - main - INFO - 🚀 인페인팅 서버 시작 중... INFO:main:✅ 공유 객체를 app.state에 저장 완료 -2025-10-01 08:18:14,050 - main - INFO - ✅ 공유 객체를 app.state에 저장 완료 +2025-10-02 00:42:20,858 - main - INFO - ✅ 공유 객체를 app.state에 저장 완료 INFO:main:🔄 상태 저장 백그라운드 작업 생성 중... -2025-10-01 08:18:14,050 - main - INFO - 🔄 상태 저장 백그라운드 작업 생성 중... +2025-10-02 00:42:20,858 - main - INFO - 🔄 상태 저장 백그라운드 작업 생성 중... INFO:main:✅ 상태 저장 백그라운드 작업 생성 완료 -2025-10-01 08:18:14,050 - main - INFO - ✅ 상태 저장 백그라운드 작업 생성 완료 +2025-10-02 00:42:20,858 - main - INFO - ✅ 상태 저장 백그라운드 작업 생성 완료 INFO:main:🚀 세션 풀 초기화 (CUDA 자동 감지) -2025-10-01 08:18:14,050 - main - INFO - 🚀 세션 풀 초기화 (CUDA 자동 감지) +2025-10-02 00:42:20,858 - main - INFO - 🚀 세션 풀 초기화 (CUDA 자동 감지) INFO:app.core.session_pool:Initializing dynamic session pools... -2025-10-01 08:18:14,050 - app.core.session_pool - INFO - Initializing dynamic session pools... -INFO:app.core.session_pool:Pre-loading 2 sessions for simple_lama -2025-10-01 08:18:14,050 - app.core.session_pool - INFO - Pre-loading 2 sessions for simple_lama +2025-10-02 00:42:20,858 - app.core.session_pool - INFO - Initializing dynamic session pools... +INFO:app.core.session_pool:Pre-loading 4 sessions for simple_lama +2025-10-02 00:42:20,858 - app.core.session_pool - INFO - Pre-loading 4 sessions for simple_lama INFO:main:🔄 상태 저장 백그라운드 작업 시작됨 -2025-10-01 08:18:14,050 - main - INFO - 🔄 상태 저장 백그라운드 작업 시작됨 +2025-10-02 00:42:20,858 - main - INFO - 🔄 상태 저장 백그라운드 작업 시작됨 INFO:app.core.session_pool:Creating new session simple_lama_0 for simple_lama... -2025-10-01 08:18:14,051 - app.core.session_pool - INFO - Creating new session simple_lama_0 for simple_lama... +2025-10-02 00:42:20,859 - app.core.session_pool - INFO - Creating new session simple_lama_0 for simple_lama... INFO:app.core.session_pool:Creating new session simple_lama_1 for simple_lama... -2025-10-01 08:18:15,702 - app.core.session_pool - INFO - Creating new session simple_lama_1 for simple_lama... +2025-10-02 00:42:22,402 - app.core.session_pool - INFO - Creating new session simple_lama_1 for simple_lama... +INFO:app.core.session_pool:Creating new session simple_lama_2 for simple_lama... +2025-10-02 00:42:22,403 - app.core.session_pool - INFO - Creating new session simple_lama_2 for simple_lama... +INFO:app.core.session_pool:Creating new session simple_lama_3 for simple_lama... +2025-10-02 00:42:22,403 - app.core.session_pool - INFO - Creating new session simple_lama_3 for simple_lama... INFO:app.models.simple_lama:Loading Simple LAMA model... -2025-10-01 08:18:15,702 - app.models.simple_lama - INFO - Loading Simple LAMA model... +2025-10-02 00:42:22,403 - app.models.simple_lama - INFO - Loading Simple LAMA model... INFO:app.models.simple_lama:실제 SimpleLama 모델 로딩 완료 -2025-10-01 08:18:16,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +2025-10-02 00:42:23,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 INFO:app.models.simple_lama:Simple LAMA model loaded successfully -2025-10-01 08:18:16,694 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +2025-10-02 00:42:23,410 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully INFO:app.models.simple_lama:Loading Simple LAMA model... -2025-10-01 08:18:16,694 - app.models.simple_lama - INFO - Loading Simple LAMA model... +2025-10-02 00:42:23,410 - app.models.simple_lama - INFO - Loading Simple LAMA model... INFO:app.models.simple_lama:실제 SimpleLama 모델 로딩 완료 -2025-10-01 08:18:17,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +2025-10-02 00:42:24,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 INFO:app.models.simple_lama:Simple LAMA model loaded successfully -2025-10-01 08:18:17,473 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +2025-10-02 00:42:24,170 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +INFO:app.models.simple_lama:Loading Simple LAMA model... +2025-10-02 00:42:24,171 - app.models.simple_lama - INFO - Loading Simple LAMA model... +INFO:app.models.simple_lama:실제 SimpleLama 모델 로딩 완료 +2025-10-02 00:42:25,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +INFO:app.models.simple_lama:Simple LAMA model loaded successfully +2025-10-02 00:42:25,022 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully +INFO:app.models.simple_lama:Loading Simple LAMA model... +2025-10-02 00:42:25,022 - app.models.simple_lama - INFO - Loading Simple LAMA model... +INFO:app.models.simple_lama:실제 SimpleLama 모델 로딩 완료 +2025-10-02 00:42:25,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료 +INFO:app.models.simple_lama:Simple LAMA model loaded successfully +2025-10-02 00:42:25,799 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully INFO:app.core.session_pool:Successfully created session simple_lama_0 -2025-10-01 08:18:17,473 - app.core.session_pool - INFO - Successfully created session simple_lama_0 -INFO:app.core.session_pool:➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (7.3%) -2025-10-01 08:18:17,474 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (7.3%) +2025-10-02 00:42:25,800 - app.core.session_pool - INFO - Successfully created session simple_lama_0 +INFO:app.core.session_pool:➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +2025-10-02 00:42:25,800 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) INFO:app.core.session_pool:Successfully created session simple_lama_1 -2025-10-01 08:18:17,474 - app.core.session_pool - INFO - Successfully created session simple_lama_1 -INFO:app.core.session_pool:➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (7.3%) -2025-10-01 08:18:17,474 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (7.3%) +2025-10-02 00:42:25,800 - app.core.session_pool - INFO - Successfully created session simple_lama_1 +INFO:app.core.session_pool:➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +2025-10-02 00:42:25,801 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +INFO:app.core.session_pool:Successfully created session simple_lama_2 +2025-10-02 00:42:25,801 - app.core.session_pool - INFO - Successfully created session simple_lama_2 +INFO:app.core.session_pool:➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +2025-10-02 00:42:25,801 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +INFO:app.core.session_pool:Successfully created session simple_lama_3 +2025-10-02 00:42:25,801 - app.core.session_pool - INFO - Successfully created session simple_lama_3 +INFO:app.core.session_pool:➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) +2025-10-02 00:42:25,801 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (10.6%) INFO:app.core.session_pool:Pre-loading 1 sessions for migan -2025-10-01 08:18:17,474 - app.core.session_pool - INFO - Pre-loading 1 sessions for migan +2025-10-02 00:42:25,802 - app.core.session_pool - INFO - Pre-loading 1 sessions for migan INFO:app.core.session_pool:Creating new session migan_0 for migan... -2025-10-01 08:18:17,475 - app.core.session_pool - INFO - Creating new session migan_0 for migan... +2025-10-02 00:42:25,802 - app.core.session_pool - INFO - Creating new session migan_0 for migan... INFO:app.models.migan:Loading MIGAN ONNX model... -2025-10-01 08:18:17,514 - app.models.migan - INFO - Loading MIGAN ONNX model... +2025-10-02 00:42:25,842 - app.models.migan - INFO - Loading MIGAN ONNX model... INFO:app.models.migan:MIGAN ONNX 런타임 세션 생성 시도... -2025-10-01 08:18:17,514 - app.models.migan - INFO - MIGAN ONNX 런타임 세션 생성 시도... +2025-10-02 00:42:25,843 - app.models.migan - INFO - MIGAN ONNX 런타임 세션 생성 시도... INFO:app.models.migan:MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider'] -2025-10-01 08:18:17,514 - app.models.migan - INFO - MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider'] +2025-10-02 00:42:25,843 - app.models.migan - INFO - MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider'] INFO:app.models.migan:MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] -2025-10-01 08:18:17,785 - app.models.migan - INFO - MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] +2025-10-02 00:42:26,114 - app.models.migan - INFO - MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] INFO:app.models.migan:MIGAN ONNX model loaded successfully -2025-10-01 08:18:17,785 - app.models.migan - INFO - MIGAN ONNX model loaded successfully +2025-10-02 00:42:26,115 - app.models.migan - INFO - MIGAN ONNX model loaded successfully INFO:app.core.session_pool:Successfully created session migan_0 -2025-10-01 08:18:17,785 - app.core.session_pool - INFO - Successfully created session migan_0 -INFO:app.core.session_pool:➕ Session Created (migan). Status -> simple_lama: 2, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (7.7%) -2025-10-01 08:18:17,786 - app.core.session_pool - INFO - ➕ Session Created (migan). Status -> simple_lama: 2, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (7.7%) +2025-10-02 00:42:26,115 - app.core.session_pool - INFO - Successfully created session migan_0 +INFO:app.core.session_pool:➕ Session Created (migan). Status -> simple_lama: 4, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (11.0%) +2025-10-02 00:42:26,115 - app.core.session_pool - INFO - ➕ Session Created (migan). Status -> simple_lama: 4, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (11.0%) INFO:app.core.session_pool:Pre-loading 1 sessions for rembg -2025-10-01 08:18:17,786 - app.core.session_pool - INFO - Pre-loading 1 sessions for rembg +2025-10-02 00:42:26,116 - app.core.session_pool - INFO - Pre-loading 1 sessions for rembg INFO:app.core.session_pool:Creating new session rembg_0 for rembg... -2025-10-01 08:18:17,786 - app.core.session_pool - INFO - Creating new session rembg_0 for rembg... +2025-10-02 00:42:26,116 - app.core.session_pool - INFO - Creating new session rembg_0 for rembg... INFO:app.models.bria_rmbg_onnx:BriaRMBGOnnxProcessor 초기화 완료 -2025-10-01 08:18:17,787 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료 +2025-10-02 00:42:26,117 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료 INFO:app.models.bria_rmbg_onnx:Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx -2025-10-01 08:18:17,787 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx +2025-10-02 00:42:26,117 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx INFO:app.models.bria_rmbg_onnx:Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output -2025-10-01 08:18:18,181 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output +2025-10-02 00:42:26,512 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output INFO:app.core.session_pool:Successfully created session rembg_0 -2025-10-01 08:18:18,183 - app.core.session_pool - INFO - Successfully created session rembg_0 -INFO:app.core.session_pool:➕ Session Created (rembg). Status -> simple_lama: 2, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (8.9%) -2025-10-01 08:18:18,183 - app.core.session_pool - INFO - ➕ Session Created (rembg). Status -> simple_lama: 2, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (8.9%) +2025-10-02 00:42:26,512 - app.core.session_pool - INFO - Successfully created session rembg_0 +INFO:app.core.session_pool:➕ Session Created (rembg). Status -> simple_lama: 4, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (12.2%) +2025-10-02 00:42:26,513 - app.core.session_pool - INFO - ➕ Session Created (rembg). Status -> simple_lama: 4, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (12.2%) INFO:app.core.session_pool:Session pools initialized successfully -2025-10-01 08:18:18,184 - app.core.session_pool - INFO - Session pools initialized successfully +2025-10-02 00:42:26,513 - app.core.session_pool - INFO - Session pools initialized successfully INFO:main:✅ 세션 풀 초기화 완료 -2025-10-01 08:18:18,184 - main - INFO - ✅ 세션 풀 초기화 완료 +2025-10-02 00:42:26,513 - main - INFO - ✅ 세션 풀 초기화 완료 INFO:app.core.worker_manager:Starting worker manager... -2025-10-01 08:18:18,184 - app.core.worker_manager - INFO - Starting worker manager... -INFO:app.core.worker_manager:Worker manager started with 2 workers -2025-10-01 08:18:18,185 - app.core.worker_manager - INFO - Worker manager started with 2 workers +2025-10-02 00:42:26,513 - app.core.worker_manager - INFO - Starting worker manager... +INFO:app.core.worker_manager:Worker manager started with 6 workers +2025-10-02 00:42:26,513 - app.core.worker_manager - INFO - Worker manager started with 6 workers INFO:main:✅ 워커 매니저 시작 완료 -2025-10-01 08:18:18,185 - main - INFO - ✅ 워커 매니저 시작 완료 +2025-10-02 00:42:26,513 - main - INFO - ✅ 워커 매니저 시작 완료 INFO:app.core.batch_manager:Starting BatchManager... -2025-10-01 08:18:18,185 - app.core.batch_manager - INFO - Starting BatchManager... +2025-10-02 00:42:26,514 - app.core.batch_manager - INFO - Starting BatchManager... INFO:app.core.batch_manager:BatchManager started successfully. -2025-10-01 08:18:18,185 - app.core.batch_manager - INFO - BatchManager started successfully. +2025-10-02 00:42:26,514 - app.core.batch_manager - INFO - BatchManager started successfully. INFO:main:✅ 배치 관리자 시작 완료 -2025-10-01 08:18:18,185 - main - INFO - ✅ 배치 관리자 시작 완료 +2025-10-02 00:42:26,514 - main - INFO - ✅ 배치 관리자 시작 완료 INFO:main:🎉 인페인팅 서버 시작 완료! -2025-10-01 08:18:18,185 - main - INFO - 🎉 인페인팅 서버 시작 완료! +2025-10-02 00:42:26,514 - main - INFO - 🎉 인페인팅 서버 시작 완료! WARNING:app.utils.discord_notifier:Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다. -2025-10-01 08:18:18,186 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다. +2025-10-02 00:42:26,514 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다. INFO:app.core.session_pool:Idle session reaper started. Timeout: 1800s, Check Interval: 60s -2025-10-01 08:18:18,186 - app.core.session_pool - INFO - Idle session reaper started. Timeout: 1800s, Check Interval: 60s +2025-10-02 00:42:26,514 - app.core.session_pool - INFO - Idle session reaper started. Timeout: 1800s, Check Interval: 60s INFO: Application startup complete. INFO: Uvicorn running on http://0.0.0.0:8008 (Press CTRL+C to quit) -INFO: 127.0.0.1:57608 - "GET /api/v1/health HTTP/1.1" 200 OK -INFO: 127.0.0.1:57612 - "GET /api/v1/health HTTP/1.1" 200 OK -INFO: 127.0.0.1:57626 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 122.35.47.45:52148 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52661 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7025 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:28680 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:42:27,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:27,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:27,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 1.304s +2025-10-02 00:42:28,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 1.304s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 1.304s (avg: 1.304s/image) +2025-10-02 00:42:28,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 1.304s (avg: 1.304s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:42:28,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 3 jobs. +2025-10-02 00:42:28,588 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 00:42:28,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 00:42:28,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 7.058s +2025-10-02 00:42:35,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 7.058s +INFO:app.core.worker_manager:'simple-lama' batch of 3 processed in 7.058s (avg: 2.353s/image) +2025-10-02 00:42:35,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 7.058s (avg: 2.353s/image) +INFO:app.core.batch_manager:Successfully processed batch of 3 jobs. +2025-10-02 00:42:35,647 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +INFO: 175.119.234.181:7026 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52662 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37678 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:33174 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:60343 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:42:42,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:42,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:42,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:42:42,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:42:42,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:42:42,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60345 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7033 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52671 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:61932 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:42:43,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:43,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:43,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:42:43,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:42:43,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:42:43,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:61933 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:42:44,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:44,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:44,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:42:44,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:42:44,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:42:44,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7034 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:42:45,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:45,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:45,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 00:42:45,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 00:42:45,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:42:45,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52672 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:42:48,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:48,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:48,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:42:48,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:42:48,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:42:48,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:56892 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52676 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7050 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:42:53,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:53,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:53,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:42:53,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:42:53,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:42:53,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:56893 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:42:53,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:53,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:53,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:42:53,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:42:53,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:42:53,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7051 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:42:54,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:54,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:54,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:42:54,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:42:54,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:42:54,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52677 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:42:58,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:58,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:58,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:42:58,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:42:58,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:42:58,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52681 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:42:59,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:42:59,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:42:59,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:42:59,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:42:59,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:42:59,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52682 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42922 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:7066 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:02,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:02,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:02,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:43:03,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:43:03,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:03,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7067 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52246 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:43:04,367 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:43:04,389 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 900, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=104.356 +2025-10-02 00:43:12,238 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.356 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 7.848s +2025-10-02 00:43:12,239 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 7.848s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 7.850s +2025-10-02 00:43:12,239 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 7.850s +INFO: 122.35.47.45:52247 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:44664 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:44672 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44676 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51148 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 115.138.85.166:61001 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51164 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.199.161.49:63987 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:17,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:17,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:17,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:43:17,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:43:17,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:17,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61003 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:43:18,360 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:43:18,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:43:18,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 6.752s +2025-10-02 00:43:25,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 6.752s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 6.752s (avg: 3.376s/image) +2025-10-02 00:43:25,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 6.752s (avg: 3.376s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:43:25,114 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:52691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:63988 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57812 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57828 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57836 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.199.161.49:64002 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:29,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:29,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:29,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:43:29,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:43:29,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:29,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64003 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57852 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52695 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:31,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:31,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:31,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:43:32,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:43:32,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:32,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57866 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:32,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:32,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:32,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:43:32,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:43:32,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:32,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52696 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64007 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:33,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:33,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:33,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:43:33,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:43:33,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:33,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64008 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46576 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 118.41.33.196:6390 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46590 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:43:35,429 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:43:35,453 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=69.984 +2025-10-02 00:43:35,540 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.984 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 00:43:35,540 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 00:43:35,540 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 118.41.33.196:6391 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:46592 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.199.161.49:64012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:37,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:37,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:37,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:43:37,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:43:37,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:37,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52700 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46606 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:38,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:38,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:38,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 00:43:38,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 00:43:38,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:38,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52701 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:43:39,450 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:43:39,484 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=69.941 +2025-10-02 00:43:39,561 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.941 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 00:43:39,562 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:43:39,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 118.41.33.196:6396 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:46612 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.199.161.49:64019 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:41,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:41,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:41,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:43:41,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:43:41,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:41,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64020 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46628 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 115.138.85.166:61142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:42,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:42,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:42,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:43:42,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:43:42,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:42,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61143 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46644 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:6400 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:43:43,839 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:43:43,872 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=71.581 +2025-10-02 00:43:43,957 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.581 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 00:43:43,958 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 00:43:43,958 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 118.41.33.196:6401 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:54428 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:44,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:44,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:44,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:43:44,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:43:44,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:44,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52710 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:45,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:45,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:45,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:43:45,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:43:45,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:45,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54440 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 115.138.85.166:61151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54446 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:47,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:47,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:47,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:43:47,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:43:47,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:47,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54448 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.199.161.49:64031 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:49,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:49,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:49,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:43:49,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:43:49,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:49,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64032 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54458 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 115.138.85.166:61158 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:51,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:51,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:51,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:43:51,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:43:51,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:51,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61159 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54466 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 221.154.208.144:55945 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:43:53,373 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:43:53,398 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=85.338 +2025-10-02 00:43:53,481 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.338 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 00:43:53,481 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 00:43:53,481 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 221.154.208.144:55946 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:47350 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 115.138.85.166:61166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:43:54,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:43:54,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:43:54,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:43:54,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:43:54,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:43:54,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61168 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47366 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:43:54,852 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:43:54,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:43:54,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 7.812s +2025-10-02 00:44:02,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 7.812s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 7.812s (avg: 3.906s/image) +2025-10-02 00:44:02,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 7.812s (avg: 3.906s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:44:02,666 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:52719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47398 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 122.35.47.45:52317 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:52318 - "GET /health HTTP/1.1" 200 OK +INFO: 127.0.0.1:40278 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:7093 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:05,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:05,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:05,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:44:06,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:44:06,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:06,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7094 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40288 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.199.161.49:64094 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:06,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:06,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:06,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:44:06,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:44:06,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:06,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64095 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52726 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40292 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:09,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:09,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:09,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:44:09,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:44:09,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:09,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52727 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6421 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:10,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:10,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:10,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:44:10,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:44:10,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:10,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6422 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:10,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:10,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:10,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:44:11,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:44:11,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:11,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64100 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7098 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:11,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:11,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:11,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:44:11,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:44:11,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:11,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7099 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40306 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:64107 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:14,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:14,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:14,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:44:15,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:44:15,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:15,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64108 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:15,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:15,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:15,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:44:15,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:44:15,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:15,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52732 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64117 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:19,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:19,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:19,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:44:19,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:44:19,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:19,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64118 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52737 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:56915 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:22,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:22,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:22,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:44:22,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:44:22,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:22,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52738 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64122 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:22,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:22,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:22,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:44:22,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:44:22,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:22,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:56916 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61195 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:23,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:23,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:23,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:44:23,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:44:23,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:23,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64123 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52348 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:44:23,820 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:44:23,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:44:23,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 00:44:24,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 00:44:24,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:44:24,118 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:61196 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52349 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:61948 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:44:25,592 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:44:25,623 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=45.112 +2025-10-02 00:44:25,710 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.112 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 00:44:25,710 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 00:44:25,710 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 220.77.167.192:61949 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:52742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:52355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64129 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:27,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:27,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:27,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:44:27,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:44:27,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:27,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:27,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:27,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:27,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:44:27,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:44:27,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:27,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64130 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:27,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:27,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:27,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:44:27,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:44:27,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:27,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52743 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61206 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:31,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:31,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:31,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:44:31,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:44:31,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:31,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61207 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64134 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:31,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:31,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:31,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:44:31,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:44:31,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:31,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64135 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:32,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:32,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:32,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:44:32,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:44:32,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:32,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61246 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:36,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:36,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:36,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:44:36,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:44:36,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:36,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64140 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:36,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:36,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:36,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:44:36,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:44:36,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:36,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61249 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52752 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:38,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:38,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:38,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-02 00:44:38,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-02 00:44:38,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:38,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52753 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:39,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:39,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:39,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:44:40,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:44:40,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:40,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64147 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52367 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:44:40,786 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:44:40,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=28.853 +2025-10-02 00:44:40,910 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.853 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 00:44:40,910 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 00:44:40,912 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 122.35.47.45:52368 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:38414 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:61282 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:43,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:43,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:44,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:44:44,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:44:44,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:44,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61283 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52757 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:44,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:44,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:44,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:44:44,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:44:44,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:44,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:45,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:45,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:45,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:44:45,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:44:45,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:45,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52758 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52379 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:47,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:47,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:47,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:44:47,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:44:47,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:47,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52380 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61289 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:48,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:48,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:48,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:44:48,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:44:48,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:48,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64169 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:48,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:48,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:48,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:44:49,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:44:49,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:49,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61290 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:44:52,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:44:52,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:44:52,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:44:52,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:44:52,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:44:52,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:55977 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:00,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:00,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:00,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:45:00,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:45:00,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:00,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:55978 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61305 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:01,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:01,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:01,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 00:45:01,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 00:45:01,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:01,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61306 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:56940 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:05,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:05,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:05,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 00:45:05,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 00:45:05,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:05,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:56941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:61963 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:06,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:06,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:06,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:45:06,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:45:06,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:06,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:61964 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61316 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:06,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:06,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:06,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.123s +2025-10-02 00:45:06,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.123s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.123s (avg: 0.123s/image) +2025-10-02 00:45:06,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.123s (avg: 0.123s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:06,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61317 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:56947 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:09,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:09,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:09,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 00:45:09,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 00:45:09,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:09,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52415 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:55990 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:45:10,641 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:45:10,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:45:10,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 00:45:10,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-02 00:45:10,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:45:10,943 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.81.39.26:56948 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:55991 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64222 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:61325 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:11,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:11,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:11,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:45:12,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:45:12,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:12,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64223 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:12,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:12,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:12,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:45:12,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:45:12,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:12,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61326 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35748 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:7114 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:45:14,747 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:45:14,774 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=182.898 +2025-10-02 00:45:14,865 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=182.898 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 00:45:14,865 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 00:45:14,868 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 175.119.234.181:7115 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:55995 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64229 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:15,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:15,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:15,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:45:15,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:45:15,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:15,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:55996 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:16,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:16,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:16,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:45:16,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:45:16,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:16,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64230 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61340 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:18,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:18,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:18,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:45:18,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:45:18,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:18,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:56957 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:61361 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:20,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:20,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:20,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 00:45:20,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 00:45:20,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:20,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:56958 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:20,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:20,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:20,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:45:21,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:45:21,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:21,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61362 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:21,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:21,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:21,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 00:45:21,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 00:45:21,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:21,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7119 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:22,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:22,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:22,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:45:22,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:45:22,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:22,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7120 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61393 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:24,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:24,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:24,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:45:24,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:45:24,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:24,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61395 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64245 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:25,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:25,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:25,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:45:25,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:45:25,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:25,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64246 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7124 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:28,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:28,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:28,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:45:28,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:45:28,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:28,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7125 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64250 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:29,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:29,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:29,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:45:29,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:45:29,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:29,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61421 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:30,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:30,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:30,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:45:30,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:45:30,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:30,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64251 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52432 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:56967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:45:31,632 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:45:31,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:45:31,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 00:45:31,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 00:45:31,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:45:31,925 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.81.39.26:56968 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52433 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56009 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:33,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:33,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:33,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:45:33,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:45:33,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:33,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56010 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:34,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:34,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:34,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:45:34,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:45:34,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:34,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61427 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:35,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:35,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:35,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:45:35,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:45:35,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:35,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61429 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52439 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:35,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:35,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:35,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:45:35,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:45:35,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:35,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52440 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:56974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:37,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:37,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:37,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:45:37,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:45:37,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:37,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:56975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61436 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:39,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:39,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:39,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:45:39,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:45:39,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:39,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61437 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:56979 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:41,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:41,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:41,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:45:41,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:45:41,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:41,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7136 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:41,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:41,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:41,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:45:42,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:45:42,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:42,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:56980 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55682 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:42,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:42,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:42,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:45:42,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:45:42,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:42,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:44,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:44,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:44,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:45:44,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:45:44,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:44,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61446 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:56986 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:47,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:47,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:47,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:45:47,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:45:47,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:47,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:56987 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52469 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:52,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:52,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:52,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:45:52,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:45:52,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:52,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52470 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:56993 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:52,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:52,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:52,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:45:53,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:45:53,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:53,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:56994 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:54,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:54,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:54,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:45:54,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:45:54,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:54,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61471 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:45:59,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:45:59,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:45:59,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:45:59,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:45:59,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:45:59,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61472 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57003 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:03,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:03,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:04,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:46:04,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:46:04,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:04,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57004 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:05,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:05,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:05,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:46:05,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:46:05,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:05,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:10,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:10,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:10,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:46:10,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:46:10,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:10,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61489 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36930 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.81.39.26:57013 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:13,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:13,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:13,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:46:13,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:46:13,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:13,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57014 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7158 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:14,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:14,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:14,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:46:14,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:46:14,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:14,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7159 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:24,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:24,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:24,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:46:24,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:46:24,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:24,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:46:29,013 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:46:29,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=154.974 +2025-10-02 00:46:29,131 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.974 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 00:46:29,131 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 00:46:29,131 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 118.41.33.196:6439 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:7171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:29,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:29,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:29,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:46:30,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:46:30,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:30,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:46:33,642 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:46:33,674 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=161.285 +2025-10-02 00:46:33,749 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.285 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 00:46:33,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 00:46:33,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 118.41.33.196:6444 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:6448 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:46:37,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:46:37,634 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=208.846 +2025-10-02 00:46:37,711 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=208.846 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 00:46:37,712 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:46:37,712 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 118.41.33.196:6449 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:64335 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57045 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:42,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:42,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:42,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:46:42,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:46:42,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:42,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64337 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49928 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:42,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:42,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:42,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:46:42,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:46:42,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:42,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57046 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:46,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:46,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:46,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:46:46,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:46:46,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:46,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:47,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:47,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:47,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:46:47,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:46:47,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:47,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64346 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7195 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:50,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:50,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:50,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:46:50,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:46:50,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:50,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7196 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6458 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64353 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:57,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:57,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:57,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:46:57,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:46:57,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:57,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6459 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:46:58,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:46:58,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:46:58,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:46:58,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:46:58,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:46:58,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64354 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52563 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64376 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:47:02,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:47:03,007 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=56.391 +2025-10-02 00:47:03,097 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.391 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 00:47:03,098 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 00:47:03,098 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 122.35.47.45:52564 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:03,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:03,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:03,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:47:03,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:47:03,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:03,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64388 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:07,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:07,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:07,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:47:08,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:47:08,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:08,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64389 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6475 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:12,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:12,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:12,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:47:12,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:47:12,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:12,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6476 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51114 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:7216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:14,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:14,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:14,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:47:15,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:47:15,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:15,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:17,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:17,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:17,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:47:17,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:47:17,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:17,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56110 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:47:18,794 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:47:18,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=47.216 +2025-10-02 00:47:18,898 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.216 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 00:47:18,898 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:47:18,899 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 221.154.208.144:56111 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:64407 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:22,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:22,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:22,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:47:22,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:47:22,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:22,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64408 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:24,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:24,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:24,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:47:24,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:47:24,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:24,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:25,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:25,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:25,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:47:25,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:47:25,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:25,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:27,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:27,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:27,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:47:27,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:47:27,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:27,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64415 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:29,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:29,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:29,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:47:29,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:47:29,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:29,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64419 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:33,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:33,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:33,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:47:33,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:47:33,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:33,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64420 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7238 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:34,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:34,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:34,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:47:34,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:47:34,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:34,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7239 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6498 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:35,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:35,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:35,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:47:35,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:47:35,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:35,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6499 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64424 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:37,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:37,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:37,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:47:37,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:47:37,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:37,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64426 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64430 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:41,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:41,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:41,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:47:41,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:47:41,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:41,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64431 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6506 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:42,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:42,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:42,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 00:47:42,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 00:47:42,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:42,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6507 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49534 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:52611 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:45,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:45,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:45,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:47:45,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:47:45,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:45,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52612 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6511 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:47,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:47,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:47,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:47:47,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:47:47,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:47,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6512 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52620 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:49,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:49,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:49,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:47:49,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:47:49,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:49,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52621 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6516 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:51,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:51,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:51,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:47:52,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:47:52,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:52,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6517 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:57,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:57,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:57,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 00:47:57,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 00:47:57,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:57,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56147 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6523 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:47:59,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:47:59,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:47:59,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:47:59,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:47:59,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:47:59,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6524 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:02,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:02,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:02,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-02 00:48:02,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-02 00:48:02,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:02,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56162 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52198 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:52688 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:13,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:13,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:13,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 00:48:13,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 00:48:13,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:13,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56163 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:13,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:13,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:13,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:48:13,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:48:13,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:13,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52689 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:20,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:20,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:20,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:48:20,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:48:20,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:20,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52831 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7290 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:22,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:22,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:22,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:48:22,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:48:22,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:22,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7291 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52721 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:23,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:23,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:23,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:48:24,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:48:24,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:24,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52722 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62298 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:24,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:24,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:25,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:48:25,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:48:25,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:25,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62301 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62016 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:48:30,002 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:48:30,030 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=92.371 +2025-10-02 00:48:30,124 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.371 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 00:48:30,125 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 00:48:30,127 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +INFO: 220.77.167.192:62017 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:56187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:32,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:32,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:32,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.206s +2025-10-02 00:48:32,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.206s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.206s (avg: 0.206s/image) +2025-10-02 00:48:32,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.206s (avg: 0.206s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:32,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:35,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:35,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:35,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:48:35,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:48:35,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:35,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52740 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:36,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:36,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:36,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:48:36,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:48:36,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:36,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:48:36,957 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:48:36,994 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=64.606 +2025-10-02 00:48:37,092 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.606 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.097s +2025-10-02 00:48:37,093 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-02 00:48:37,095 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +INFO: 39.112.59.88:52837 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:62474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:37,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:37,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:37,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:48:37,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:48:37,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:37,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62477 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62022 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:38,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:38,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:38,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:48:38,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:48:38,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:38,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62023 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:40,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:40,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:40,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:48:40,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:48:40,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:40,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:42,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:42,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:42,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:48:43,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:48:43,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:43,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37858 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:52849 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:52757 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:43,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:43,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:43,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 00:48:44,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 00:48:44,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:44,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52758 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:44,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:44,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:44,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:48:44,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:48:44,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:44,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52850 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62028 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7321 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:46,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:46,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:46,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:48:46,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:48:46,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:46,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62029 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:46,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:46,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:46,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:48:46,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:48:46,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:46,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7322 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56201 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:47,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:47,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:47,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 00:48:47,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 00:48:47,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:47,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56202 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52855 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62033 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:54,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:54,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:54,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:48:55,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:48:55,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:55,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62034 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:55,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:55,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:55,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:48:55,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:48:55,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:55,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52856 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62627 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:55,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:55,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:56,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:48:56,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:48:56,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:56,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62628 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7340 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:62644 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:59,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:59,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:59,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:48:59,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:48:59,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:48:59,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:48:59,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:48:59,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:48:59,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:49:00,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:49:00,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:00,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62645 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7346 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:62651 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:02,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:02,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:02,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:49:02,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:49:02,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:02,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7347 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:02,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:02,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:02,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:49:02,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:49:02,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:02,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62652 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52784 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:05,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:05,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:05,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:49:05,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:49:05,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:05,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62663 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:09,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:09,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:09,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:49:09,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:49:09,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:09,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62664 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52791 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:10,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:10,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:10,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:49:10,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:49:10,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:10,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52792 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62670 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:12,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:12,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:12,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:49:12,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:49:12,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:12,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62671 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53192 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:62679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:17,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:17,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:17,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:49:17,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:49:17,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:17,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7398 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:21,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:21,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:21,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:49:21,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:49:21,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:21,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7399 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57104 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:62688 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:23,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:23,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:23,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:49:23,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:49:23,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:23,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57105 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52807 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:23,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:23,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:23,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:49:23,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:49:23,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:23,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62689 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:49:23,846 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:49:23,861 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=46.657 +2025-10-02 00:49:23,955 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.657 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 00:49:23,955 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 00:49:23,956 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 122.35.47.45:52808 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:52878 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:25,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:25,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:25,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:49:25,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:49:25,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:25,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52879 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52883 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7409 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:30,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:30,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:30,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:49:30,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:49:30,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:30,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7411 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:32,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:32,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:32,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:49:33,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:49:33,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:33,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52884 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7416 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:33,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:33,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:33,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:49:33,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:49:33,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:33,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7419 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7436 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56232 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:36,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:36,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:36,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:49:36,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:49:36,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:36,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7437 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52889 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:37,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:37,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:37,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:49:37,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:49:37,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:37,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56233 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:39,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:39,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:39,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:49:40,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:49:40,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:40,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:40,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:40,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:40,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:49:40,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:49:40,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:40,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52890 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6538 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58696 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:49:43,879 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:49:43,919 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=232.475 +2025-10-02 00:49:44,008 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=232.475 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 00:49:44,008 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 00:49:44,008 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 118.41.33.196:6539 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:56243 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:44,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:44,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:44,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:49:44,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:49:44,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:44,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56244 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62050 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:45,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:45,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:45,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 00:49:46,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 00:49:46,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:46,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62051 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6543 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:49:48,785 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:49:48,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=24.389 +2025-10-02 00:49:48,879 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.389 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.069s +2025-10-02 00:49:48,880 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-02 00:49:48,880 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +INFO: 118.41.33.196:6544 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:56248 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:49,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:49,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:49,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:49:49,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:49:49,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:49,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56249 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6548 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62055 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:49:52,611 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:49:52,636 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=20.008 +2025-10-02 00:49:52,718 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.008 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 00:49:52,719 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:49:52,719 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 118.41.33.196:6549 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:53,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:53,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:53,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:49:53,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:49:53,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:53,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62056 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52904 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:53,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:53,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:54,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:49:54,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:49:54,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:54,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52905 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:56,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:56,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:56,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:49:56,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:49:56,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:56,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57129 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:52858 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:59,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:59,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:49:59,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:49:59,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:49:59,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:49:59,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57130 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:49:59,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:49:59,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:00,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:50:00,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:50:00,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:00,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52859 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52913 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56258 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:02,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:02,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:02,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:50:02,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:50:02,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:02,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52914 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:02,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:02,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:02,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:50:02,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:50:02,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:02,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56259 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52865 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:03,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:03,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:03,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:50:03,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:50:03,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:03,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:52866 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:07,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:07,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:07,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:50:07,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:50:07,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:07,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57136 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56263 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:08,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:08,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:08,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:50:08,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:50:08,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:08,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56264 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6555 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:11,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:11,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:11,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:50:11,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:50:11,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:11,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6556 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52889 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52923 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:50:12,433 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:50:12,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:50:12,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 00:50:12,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 00:50:12,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:50:12,726 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:52924 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52890 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53732 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:56268 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:13,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:13,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:13,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:50:13,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:50:13,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:13,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56269 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6560 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:16,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:16,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:16,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:50:16,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:50:16,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:16,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6561 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:16,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:16,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:16,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:50:16,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:50:16,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:16,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:20,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:20,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:20,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:50:20,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:50:20,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:20,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52932 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7504 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:21,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:21,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:21,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:50:21,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:50:21,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:21,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7505 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:21,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:21,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:21,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:50:22,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:50:22,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:22,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52933 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6565 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:22,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:22,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:22,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:50:23,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:50:23,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:23,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6566 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:23,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:23,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:23,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:50:23,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:50:23,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:23,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62079 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52937 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56282 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:26,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:26,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:26,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:50:26,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:50:26,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:26,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56283 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:26,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:26,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:26,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:50:26,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:50:26,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:26,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52938 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57152 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:27,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:27,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:27,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:50:27,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:50:27,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:27,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57153 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62083 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56287 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:31,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:31,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:31,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:50:31,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:50:31,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:31,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62084 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:32,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:32,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:32,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:50:32,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:50:32,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:32,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56288 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:35,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:35,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:35,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:50:35,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:50:35,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:35,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57160 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62926 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:37,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:37,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:37,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:50:37,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:50:37,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:37,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62927 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62088 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64748 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:38,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:38,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:38,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:50:38,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:50:38,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:38,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62089 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:38,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:38,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:38,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:50:38,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:50:38,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:38,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64749 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64754 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:42,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:42,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:42,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:50:42,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:50:42,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:42,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64755 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58022 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:62093 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:44,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:44,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:44,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:50:44,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:50:44,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:44,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62094 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57172 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:45,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:45,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:45,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:50:45,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:50:45,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:45,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57173 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:52932 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:52933 - "GET /health HTTP/1.1" 200 OK +INFO: 115.138.85.166:62972 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:48,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:48,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:48,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:50:48,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:50:48,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:48,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62973 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52965 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:62977 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:50,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:50,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:50,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 00:50:50,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 00:50:50,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:50,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62978 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64787 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:50:50,670 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:50:50,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:50:50,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 00:50:50,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 00:50:50,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:50:50,958 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:52966 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64788 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:55,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:55,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:55,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:50:56,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:50:56,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:56,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:56,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:56,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:56,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:50:56,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:50:56,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:56,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62102 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:58,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:58,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:58,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:50:58,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:50:58,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:58,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62103 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62994 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:50:59,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:50:59,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:50:59,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:50:59,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:50:59,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:50:59,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62995 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52973 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64800 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:51:03,560 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:51:03,611 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=134.065 +2025-10-02 00:51:03,704 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.065 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 00:51:03,704 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 00:51:03,706 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 221.154.208.144:56304 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:63003 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:04,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:04,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:04,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:51:04,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:51:04,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:04,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52974 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:04,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:04,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:04,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 00:51:04,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 00:51:04,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:04,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63004 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:51:04,544 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:51:04,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:51:04,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-02 00:51:04,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-02 00:51:04,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:51:04,855 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:7530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:05,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:05,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:05,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:51:05,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:51:05,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:05,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64801 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63010 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:6603 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:64805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:08,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:08,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:08,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:51:08,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:51:08,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:08,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6604 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:08,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:08,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:08,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:51:09,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:51:09,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:09,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63011 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:09,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:09,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:09,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:51:09,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:51:09,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:09,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63020 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:12,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:12,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:12,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:51:13,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:51:13,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:13,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63021 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:64814 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49600 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:13,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:13,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:13,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:51:13,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:51:13,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:13,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:64815 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:63027 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:6614 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:16,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:16,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:16,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:51:16,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:51:16,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:16,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:16,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:16,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:16,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:51:16,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:51:16,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:16,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63028 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:51:17,036 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:51:17,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:51:17,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 00:51:17,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 00:51:17,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:51:17,313 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:6615 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63034 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:52770 - "GET /health HTTP/1.1" 200 OK +INFO: 125.242.75.181:52772 - "GET /health HTTP/1.1" 200 OK +INFO: 125.242.75.181:52773 - "GET /health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:21,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:21,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:21,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:51:21,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:51:21,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:21,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63035 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:21,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:21,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:21,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:51:21,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:51:21,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:21,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57205 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56320 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:23,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:23,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:23,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:51:23,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:51:23,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:23,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56321 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6625 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:63044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:51:28,847 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:51:28,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:51:28,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 00:51:29,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 00:51:29,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:51:29,140 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.81.39.26:57212 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6626 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:29,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:29,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:29,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:51:29,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:51:29,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:29,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:63080 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:33,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:33,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:33,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:51:33,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:51:33,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:33,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63081 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:33,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:33,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:33,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:51:34,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:51:34,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:34,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:34,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:34,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:34,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:51:35,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:51:35,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:35,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63118 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:37,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:37,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:37,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:51:37,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:51:37,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:37,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63119 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59742 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:63132 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:48,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:48,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:48,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:51:48,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:51:48,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:48,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63133 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7539 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:51:49,951 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(743, 743, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:51:49,970 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(743, 743, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=63.734 +2025-10-02 00:51:50,047 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.734 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 00:51:50,048 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:51:50,048 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 175.119.234.181:7540 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:6647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:53,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:53,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:53,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:51:53,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:51:53,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:53,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:53,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:53,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:53,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:51:53,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:51:53,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:53,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:55,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:55,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:55,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:51:55,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:51:55,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:55,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56339 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7546 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:51:57,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:51:57,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:51:57,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:51:57,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:51:57,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:51:57,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7547 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56343 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:00,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:00,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:00,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:52:00,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:52:00,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:00,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56344 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7551 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62118 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:01,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:01,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:01,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:52:02,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:52:02,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:02,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7552 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:02,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:02,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:02,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:52:02,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:52:02,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:02,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62119 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:07,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:07,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:07,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:52:07,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:52:07,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:07,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:11,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:11,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:11,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:52:11,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:52:11,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:11,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7559 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:12,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:12,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:12,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:52:12,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:52:12,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:12,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62124 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:12,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:12,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:12,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:52:12,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:52:12,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:12,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7560 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44188 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:56362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:15,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:15,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:15,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:52:15,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:52:15,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:15,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56367 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:19,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:19,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:20,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:52:20,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:52:20,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:20,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56368 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62128 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:23,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:23,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:23,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:52:23,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:52:23,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:23,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62129 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56379 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:53044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:25,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:25,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:25,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:52:25,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:52:25,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:25,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56380 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:52:25,555 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:52:25,576 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=90.347 +2025-10-02 00:52:25,659 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.347 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 00:52:25,659 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:52:25,659 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 122.35.47.45:53045 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.81.39.26:57265 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:29,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:29,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:29,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:52:29,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:52:29,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:29,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57266 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56384 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:30,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:30,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:30,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:52:30,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:52:30,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:30,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56385 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53051 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:31,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:31,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:31,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:52:31,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:52:31,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:31,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53052 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62134 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:33,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:33,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:33,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:52:33,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:52:33,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:33,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62135 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7580 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:39,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:39,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:39,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:52:39,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:52:39,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:39,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7581 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:42,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:42,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:42,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:52:42,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:52:42,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:42,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37186 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:7585 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:43,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:43,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:43,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:52:43,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:52:43,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:43,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7586 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57272 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:45,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:45,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:45,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:52:45,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:52:45,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:45,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7593 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:51,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:51,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:51,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:52:51,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:52:51,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:51,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7594 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7598 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:52:54,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:52:54,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:52:54,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:52:54,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:52:54,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:52:54,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7599 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:53:00,029 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:53:00,055 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=48.162 +2025-10-02 00:53:00,147 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.162 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 00:53:00,148 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 00:53:00,149 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 125.242.75.181:64827 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:56413 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:01,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:01,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:01,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:53:01,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:53:01,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:01,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56414 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53003 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:05,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:05,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:05,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:53:06,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:53:06,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:06,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53004 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:06,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:06,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:06,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:53:06,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:53:06,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:06,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56421 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64832 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:07,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:07,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:07,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:53:07,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:53:07,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:07,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64833 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64837 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:12,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:12,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:12,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:53:12,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:53:12,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:12,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64838 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43520 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 125.242.75.181:64842 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:17,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:17,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:17,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:53:17,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:53:17,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:17,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64843 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53110 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:24,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:24,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:24,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:53:24,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:53:24,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:24,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53111 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64847 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:25,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:25,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:25,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:53:25,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:53:25,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:25,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64848 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56440 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:27,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:27,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:27,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:53:27,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:53:27,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:27,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56441 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:31,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:31,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:31,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:53:31,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:53:31,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:31,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53126 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65031 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56449 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:33,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:33,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:33,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:53:33,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:53:33,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:33,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65032 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:33,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:33,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:33,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:53:34,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:53:34,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:34,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56450 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:34,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:34,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:34,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:53:35,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:53:35,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:35,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:38,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:38,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:38,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:53:38,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:53:38,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:38,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:40,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:40,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:40,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 00:53:40,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 00:53:40,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:40,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53140 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:42,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:42,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:42,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:53:42,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:53:42,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:42,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35022 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:62143 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:53:46,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:53:46,723 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=56.824 +2025-10-02 00:53:46,816 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.824 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 00:53:46,817 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 00:53:46,817 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 220.77.167.192:62144 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:53023 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:53:47,387 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:53:47,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=99.131 +2025-10-02 00:53:47,499 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.131 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 00:53:47,499 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 00:53:47,501 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 39.112.59.88:53024 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:53156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:50,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:50,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:50,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:53:50,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:53:50,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:50,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:53:52,696 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:53:52,718 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=76.616 +2025-10-02 00:53:52,804 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.616 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 00:53:52,805 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 00:53:52,805 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 118.41.33.196:6673 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:62150 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:53165 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:65105 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:55,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:55,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:55,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:53:55,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:53:55,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:55,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53166 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:55,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:55,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:55,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:53:55,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:53:55,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:55,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7620 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:55,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:55,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:55,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:53:56,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:53:56,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:56,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65106 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:56,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:56,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:56,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:53:56,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:53:56,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:56,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7621 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6677 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:53:57,062 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:53:57,094 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=93.697 +2025-10-02 00:53:57,186 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.697 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 00:53:57,186 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 00:53:57,186 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 118.41.33.196:6678 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:53173 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53032 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:58,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:58,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:58,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:53:58,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:53:58,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:58,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53174 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:53:59,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:53:59,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:53:59,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:53:59,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:53:59,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:53:59,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53033 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6682 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:54:00,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:54:00,999 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=87.381 +2025-10-02 00:54:01,076 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.381 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 00:54:01,076 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 00:54:01,077 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 118.41.33.196:6683 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:65110 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7625 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:02,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:02,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:02,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:54:02,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:54:02,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:02,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65111 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:02,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:02,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:02,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:54:02,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:54:02,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:02,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7626 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:03,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:03,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:03,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:54:03,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:54:03,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:03,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:03,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:03,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:03,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:54:03,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:54:03,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:03,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53038 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:06,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:06,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:06,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:54:06,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:54:06,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:06,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53039 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:09,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:09,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:09,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:54:09,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:54:09,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:09,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:10,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:10,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:10,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:54:10,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:54:10,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:10,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62162 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60256 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:53203 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53043 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:13,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:13,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:13,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:54:13,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:54:13,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:13,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53204 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:13,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:13,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:14,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:54:14,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:54:14,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:14,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:15,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:15,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:15,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:54:15,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:54:15,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:15,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:17,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:17,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:17,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 00:54:17,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 00:54:17,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:17,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:6690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:18,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:18,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:18,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:54:18,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:54:18,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:18,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65129 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:18,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:18,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:19,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 00:54:19,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 00:54:19,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:19,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:54:19,451 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:54:19,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:54:19,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 00:54:19,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 00:54:19,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:54:19,739 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:65130 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:21,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:21,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:21,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:54:21,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:54:21,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:21,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65136 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:24,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:24,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:24,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 00:54:24,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 00:54:24,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:24,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65137 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53049 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:6698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:54:26,530 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:54:26,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:54:26,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +2025-10-02 00:54:26,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +2025-10-02 00:54:26,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:54:26,792 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:53050 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6699 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:28,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:28,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:28,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:54:28,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:54:28,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:28,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6703 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:31,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:31,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:31,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:54:31,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:54:31,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:31,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6704 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53054 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:32,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:32,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:32,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:54:32,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:54:32,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:32,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53055 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7653 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:35,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:35,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:35,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:54:35,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:54:35,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:35,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53059 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:35,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:35,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:35,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:54:36,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:54:36,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:36,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7654 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:36,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:36,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:36,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:54:36,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:54:36,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:36,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53060 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6711 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:40,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:40,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:40,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:54:40,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:54:40,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:40,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53237 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:41,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:41,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:41,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:54:41,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:54:41,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:41,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53238 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7658 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:42,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:42,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:42,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:54:43,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:54:43,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:43,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7659 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53516 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:53067 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:44,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:44,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:44,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:54:44,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:54:44,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:44,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53068 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:45,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:45,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:45,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 00:54:45,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 00:54:45,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:45,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:46,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:46,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:46,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:54:46,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:54:46,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:46,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6719 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7663 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:48,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:48,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:48,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:54:48,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:54:48,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:48,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6720 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:48,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:48,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:48,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:54:48,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:54:48,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:48,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7664 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64198 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:50,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:50,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:50,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:54:50,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:54:50,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:50,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64199 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:51,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:51,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:51,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:54:51,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:54:51,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:51,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53262 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56503 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:54:52,725 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:54:52,752 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=75.574 +2025-10-02 00:54:52,842 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.574 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 00:54:52,843 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 00:54:52,845 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 221.154.208.144:56504 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:7668 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:54,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:54,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:54,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:54:54,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:54:54,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:54,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7669 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:55,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:55,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:55,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:54:55,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:54:55,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:55,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62174 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:55,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:55,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:56,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:54:56,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:54:56,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:56,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53079 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:56,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:56,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:56,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:54:56,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:54:56,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:56,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62175 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6727 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:54:58,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:54:58,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:54:58,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 00:54:58,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 00:54:58,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:54:58,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6728 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64883 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:54:59,349 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(786, 786, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:54:59,371 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(786, 786, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=30.110 +2025-10-02 00:54:59,455 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.110 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 00:54:59,455 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 00:54:59,456 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 125.242.75.181:64884 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:62179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7673 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:01,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:01,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:01,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:55:01,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:55:01,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:01,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7674 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53095 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:01,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:01,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:01,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:55:02,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:55:02,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:02,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:02,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:02,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:02,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:55:02,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:55:02,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:02,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53096 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6735 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:06,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:06,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:06,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:55:06,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:55:06,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:06,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6736 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7678 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62184 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:08,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:08,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:08,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:55:08,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:55:08,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:08,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62185 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:09,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:09,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:09,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:55:09,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:55:09,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:09,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7679 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53287 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:55:09,642 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:55:09,670 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=76.121 +2025-10-02 00:55:09,751 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.121 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 00:55:09,751 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 00:55:09,752 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 122.35.47.45:53288 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.81.39.26:57310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:12,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:12,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:12,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:55:12,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:55:12,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:12,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57311 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53103 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:12,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:12,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:12,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:55:12,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:55:12,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:12,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53104 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54670 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:62189 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:6743 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:55:14,295 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:55:14,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:55:14,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 00:55:14,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +2025-10-02 00:55:14,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:55:14,611 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:62190 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6744 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:15,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:15,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:15,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:55:15,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:55:15,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:15,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7684 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:16,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:16,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:16,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:55:16,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:55:16,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:16,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53297 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62194 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:19,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:19,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:19,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:55:19,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:55:19,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:19,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62195 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53112 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7688 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:55:21,782 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:55:21,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:55:21,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 00:55:22,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 00:55:22,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:55:22,084 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:53113 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7689 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6751 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57320 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:53306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:23,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:23,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:23,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:55:23,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:55:23,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:23,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6752 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:55:23,588 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:55:23,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:55:23,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 00:55:23,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 00:55:23,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:55:23,865 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.81.39.26:57321 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53307 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:25,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:25,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:25,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:55:25,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:55:25,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:25,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53117 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:26,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:26,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:26,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:55:27,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:55:27,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:27,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53118 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56534 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:27,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:27,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:27,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:55:27,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:55:27,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:27,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56535 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:29,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:29,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:29,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:55:29,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:55:29,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:29,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62205 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56539 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:6759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:55:31,177 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:55:31,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:55:31,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 00:55:31,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-02 00:55:31,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:55:31,483 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:62206 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56540 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:31,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:31,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:31,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:55:31,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:55:31,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:31,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6760 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:53319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:32,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:32,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:32,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:55:32,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:55:32,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:32,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:33,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:33,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:33,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 00:55:33,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 00:55:33,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:33,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53320 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7699 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:35,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:35,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:35,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:55:35,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:55:35,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:35,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7700 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:36,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:36,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:36,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:55:36,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:55:36,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:36,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:53327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:37,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:37,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:37,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:55:37,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:55:37,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:37,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53126 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:37,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:37,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:37,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:55:37,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:55:37,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:37,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:38,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:38,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:38,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 00:55:38,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 00:55:38,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:38,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56547 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:38,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:38,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:38,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:55:38,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:55:38,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:38,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56548 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53131 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:41,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:41,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:41,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:55:41,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:55:41,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:41,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53132 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62215 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:42,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:42,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:42,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:55:42,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:55:42,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:42,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62216 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34112 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:56556 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:43,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:43,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:43,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:55:43,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:55:43,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:43,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56557 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62220 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:47,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:47,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:47,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:55:47,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:55:47,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:47,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62221 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:53,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:53,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:53,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:55:53,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:55:53,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:53,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62226 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53147 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:55,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:55,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:55,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:55:55,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:55:55,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:55,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53148 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57347 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:56,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:56,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:56,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:55:57,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:55:57,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:57,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57348 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53344 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:55:57,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:55:57,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:55:57,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:55:57,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:55:57,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:55:57,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53345 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62230 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53152 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:55:59,141 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:55:59,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:55:59,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 00:55:59,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 00:55:59,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:55:59,440 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:62231 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53153 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53351 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:01,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:01,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:01,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:56:01,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:56:01,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:01,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53352 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:02,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:02,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:02,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:56:02,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:56:02,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:02,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53363 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:03,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:03,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:04,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:56:04,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:56:04,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:04,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53364 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53372 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:06,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:06,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:06,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:56:06,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:56:06,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:06,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64525 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:06,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:06,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:06,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:56:07,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:56:07,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:07,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64526 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53162 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57359 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:09,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:09,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:09,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:56:09,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:56:09,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:09,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53163 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:10,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:10,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:10,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:56:10,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:56:10,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:10,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57360 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56589 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:64535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:12,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:12,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:12,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:56:12,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:56:12,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:12,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56590 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:12,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:12,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:12,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:56:12,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:56:12,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:12,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53388 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56522 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:13,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:13,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:13,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:56:14,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:56:14,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:14,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53389 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56594 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:16,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:16,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:16,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:56:16,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:56:16,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:16,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56595 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:17,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:17,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:17,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 00:56:17,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 00:56:17,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:17,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53396 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64547 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:19,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:19,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:19,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:56:19,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:56:19,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:19,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64548 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53403 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:21,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:21,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:21,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 00:56:21,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 00:56:21,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:21,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53404 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56605 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:22,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:22,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:22,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:56:22,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:56:22,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:22,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56606 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53192 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:23,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:23,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:23,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:56:23,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:56:23,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:23,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53193 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:24,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:24,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:24,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:56:24,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:56:24,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:24,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65297 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7706 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56610 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:64560 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:53415 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:25,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:25,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:25,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:56:25,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:56:25,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:25,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64562 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:56:25,811 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:56:25,839 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=135.895 +2025-10-02 00:56:25,924 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.895 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 00:56:25,924 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 00:56:25,928 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 175.119.234.181:7707 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:26,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:26,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:26,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:56:26,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:56:26,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:26,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56611 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:26,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:26,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:26,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:56:26,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:56:26,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:26,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53416 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53197 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56615 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:29,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:29,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:29,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:56:29,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:56:29,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:29,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56616 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:30,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:30,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:30,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:56:30,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:56:30,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:30,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:31,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:31,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:31,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:56:31,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:56:31,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:31,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53198 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64573 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:32,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:32,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:32,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:56:32,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:56:32,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:32,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64574 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7712 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:33,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:33,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:33,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 00:56:33,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 00:56:33,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:33,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7713 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65314 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:34,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:34,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:34,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:56:34,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:56:34,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:34,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65315 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:35,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:35,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:35,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:56:35,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:56:35,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:35,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64582 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:38,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:38,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:38,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:56:38,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:56:38,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:38,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65320 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56626 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7717 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:39,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:39,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:39,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 00:56:39,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 00:56:39,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:39,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56627 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:39,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:39,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:39,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 00:56:39,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 00:56:39,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:39,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7718 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56638 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:42,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:42,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:43,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:56:43,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:56:43,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:43,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65325 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45460 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:43,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:43,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:43,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:56:44,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:56:44,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:44,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56639 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:46,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:46,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:46,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 00:56:46,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 00:56:46,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:46,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64625 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56643 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:47,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:47,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:48,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:56:48,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:56:48,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:48,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56644 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:48,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:48,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:48,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:56:48,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:56:48,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:48,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64644 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:49,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:49,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:50,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:56:50,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:56:50,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:50,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64647 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56648 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:51,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:51,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:51,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:56:51,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:56:51,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:51,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56649 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:52,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:52,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:52,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:56:52,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:56:52,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:52,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53442 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65356 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:53,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:53,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:53,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 00:56:53,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 00:56:53,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:53,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65357 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53447 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:55,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:55,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:55,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:56:55,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:56:55,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:55,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53448 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65361 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:6777 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:57,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:57,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:57,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:56:57,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:56:57,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:57,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65362 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:56:57,716 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:56:57,728 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=29.401 +2025-10-02 00:56:57,817 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.401 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 00:56:57,817 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 00:56:57,817 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 118.41.33.196:6778 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:53454 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:56:58,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:56:58,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:56:58,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:56:59,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:56:59,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:56:59,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53455 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6782 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:57:01,354 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:57:01,377 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=38.600 +2025-10-02 00:57:01,459 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.600 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 00:57:01,460 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 00:57:01,460 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 118.41.33.196:6783 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:53462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:02,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:02,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:02,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:57:02,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:57:02,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:02,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6787 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:57:04,869 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:57:04,892 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=43.234 +2025-10-02 00:57:04,989 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.234 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.096s +2025-10-02 00:57:04,989 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 00:57:04,990 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 118.41.33.196:6788 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:7732 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53316 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:53474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:16,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:16,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:16,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 00:57:16,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 00:57:16,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:16,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7733 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:57:16,948 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:57:16,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=20.487 +2025-10-02 00:57:17,062 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.487 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 00:57:17,063 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 00:57:17,063 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 122.35.47.45:53475 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:7737 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:21,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:21,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:21,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:57:21,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:57:21,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:21,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7738 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65401 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:22,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:22,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:22,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:57:22,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:57:22,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:22,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65402 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53482 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:23,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:23,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:23,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:57:23,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:57:23,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:23,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6798 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7745 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:26,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:26,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:26,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 00:57:26,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 00:57:26,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:26,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6799 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:27,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:27,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:27,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:57:27,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:57:27,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:27,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7746 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53490 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:28,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:28,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:28,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:57:28,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:57:28,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:28,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53246 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:57:31,995 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 902, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:57:32,024 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 902, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=152.541 +2025-10-02 00:57:32,121 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.541 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.096s +2025-10-02 00:57:32,121 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-02 00:57:32,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +INFO: 39.112.59.88:53247 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:7750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:32,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:32,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:32,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:57:33,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:57:33,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:33,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53498 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:34,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:34,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:34,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:57:34,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:57:34,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:34,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53499 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6806 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:35,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:35,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:35,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:57:35,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:57:35,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:35,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6807 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7756 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:38,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:38,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:38,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 00:57:38,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 00:57:38,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:38,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7757 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53506 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:40,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:40,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:40,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:57:40,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:57:40,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:40,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53507 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:65480 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7761 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:41,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:41,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:41,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:57:42,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:57:42,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:42,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65481 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:42,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:42,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:42,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:57:42,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:57:42,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:42,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7762 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33688 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:7769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:48,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:48,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:48,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:57:48,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:57:48,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:48,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7774 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:52,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:52,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:52,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:57:52,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:57:52,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:52,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7775 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6823 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:54,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:54,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:54,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:57:54,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:57:54,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:54,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6824 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7779 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:57:55,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:57:55,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:57:55,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:57:55,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:57:55,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:57:55,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7780 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64917 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:01,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:01,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:01,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:58:01,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:58:01,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:01,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64918 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57429 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:02,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:02,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:02,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:58:02,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:58:02,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:02,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6831 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:02,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:02,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:02,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:58:02,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:58:02,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:02,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57430 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7787 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:03,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:03,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:03,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:58:03,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:58:03,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:03,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:03,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:03,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:03,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:58:04,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:58:04,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:04,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7788 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:08,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:08,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:08,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:58:08,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:58:08,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:08,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53538 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7793 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:64922 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:09,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:09,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:10,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:58:10,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:58:10,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:10,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64923 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:10,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:10,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:10,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:58:10,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:58:10,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:10,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7794 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53544 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:13,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:13,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:13,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 00:58:13,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 00:58:13,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:13,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53545 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47178 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:65499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:14,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:14,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:14,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:58:14,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:58:14,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:14,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:65500 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7798 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:53552 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:15,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:15,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:16,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:58:16,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:58:16,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:16,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7799 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:64927 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:19,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:19,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:19,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:58:19,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:58:19,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:19,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53553 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:20,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:20,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:20,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 00:58:20,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 00:58:20,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:20,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64913 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:21,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:21,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:22,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:58:22,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:58:22,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:22,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64928 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:22,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:22,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:22,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 00:58:22,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 00:58:22,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:22,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7806 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:23,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:23,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:23,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 00:58:23,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 00:58:23,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:23,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53563 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62256 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:58:24,117 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:58:24,141 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=113.328 +2025-10-02 00:58:24,226 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.328 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 00:58:24,226 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 00:58:24,228 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 220.77.167.192:62257 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:24,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:24,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:24,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 00:58:24,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 00:58:24,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:24,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7807 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53570 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:26,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:26,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:26,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:58:26,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:58:26,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:26,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53571 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53576 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:28,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:28,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:28,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:58:28,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:58:28,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:28,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53577 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64933 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:29,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:29,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:29,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:58:29,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:58:29,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:29,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64934 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7811 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:30,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:30,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:30,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 00:58:30,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 00:58:30,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:30,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7812 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64938 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:37,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:37,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:37,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:58:37,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:58:37,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:37,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64939 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7816 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:38,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:38,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:38,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:58:38,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:58:38,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:38,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7817 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56738 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42528 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:58:43,289 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:58:43,314 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=119.136 +2025-10-02 00:58:43,402 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.136 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 00:58:43,402 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 00:58:43,402 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 221.154.208.144:56739 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 125.242.75.181:64943 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:43,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:43,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:43,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 00:58:43,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 00:58:43,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:43,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64944 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7821 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:46,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:46,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:46,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-02 00:58:46,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-02 00:58:46,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:46,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7822 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65339 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:51,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:51,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:51,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:58:51,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:58:51,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:51,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65340 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:52,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:52,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:52,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 00:58:52,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 00:58:52,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:52,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7827 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6842 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:58:53,480 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:58:53,510 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=105.972 +2025-10-02 00:58:53,607 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.972 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.095s +2025-10-02 00:58:53,607 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-02 00:58:53,609 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +INFO: 118.41.33.196:6843 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:65392 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:58:54,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:58:54,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:58:54,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 00:58:55,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 00:58:55,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:58:55,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65395 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64951 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:58:56,169 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:58:56,191 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=165.053 +2025-10-02 00:58:56,275 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.053 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 00:58:56,276 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 00:58:56,276 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 125.242.75.181:64952 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:53603 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:53604 - "GET /health HTTP/1.1" 200 OK +INFO: 118.41.33.196:6848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:58:58,540 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:58:58,578 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=76.507 +2025-10-02 00:58:58,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.507 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.096s +2025-10-02 00:58:58,675 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-02 00:58:58,677 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +INFO: 118.41.33.196:6849 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:6853 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 00:59:03,198 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 00:59:03,221 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=37.506 +2025-10-02 00:59:03,317 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.506 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.095s +2025-10-02 00:59:03,317 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 00:59:03,318 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 118.41.33.196:6854 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 125.242.75.181:64956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:05,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:05,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:05,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 00:59:05,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 00:59:05,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:05,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49201 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:06,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:06,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:06,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 00:59:06,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 00:59:06,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:06,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49202 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7838 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:07,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:07,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:07,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 00:59:07,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 00:59:07,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:07,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7839 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49209 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:11,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:11,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:11,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:59:11,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:59:11,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:11,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49210 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7843 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39338 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:13,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:13,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:13,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:59:13,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:59:13,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:13,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7844 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64961 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:14,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:14,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:14,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:59:14,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:59:14,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:14,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64962 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49224 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:15,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:15,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:15,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:59:15,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:59:15,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:15,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49225 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:17,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:17,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:17,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:59:17,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:59:17,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:17,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7849 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49229 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:49261 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62279 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:19,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:19,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:19,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 00:59:19,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 00:59:19,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:19,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49230 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:19,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:19,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:20,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:59:20,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:59:20,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:20,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49262 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:20,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:20,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:20,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:59:20,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:59:20,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:20,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62280 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6862 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:22,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:22,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:22,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 00:59:22,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 00:59:22,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:22,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6863 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:23,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:23,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:23,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 00:59:23,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 00:59:23,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:23,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64968 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49286 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:24,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:24,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:24,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:59:24,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:59:24,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:24,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49287 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:27,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:27,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:27,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:59:27,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:59:27,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:27,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49295 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:53632 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:29,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:29,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:29,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:59:29,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:59:29,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:29,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49296 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7859 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:29,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:29,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:29,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:59:29,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:59:29,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:29,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53633 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:29,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:29,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:29,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 00:59:29,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 00:59:29,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:29,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7860 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64972 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:30,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:30,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:30,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 00:59:30,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 00:59:30,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:30,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64973 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6870 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:32,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:32,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:32,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 00:59:32,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 00:59:32,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:32,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6871 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62289 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:34,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:34,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:34,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 00:59:34,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 00:59:34,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:34,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62290 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:35,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:35,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:35,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:59:35,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:59:35,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:35,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:38,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:38,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:38,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:59:39,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:59:39,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:39,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49307 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62294 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:39,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:39,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:39,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:59:39,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:59:39,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:39,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62295 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56788 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:40,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:40,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:40,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 00:59:40,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 00:59:40,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:40,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56789 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:40,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:40,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:40,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:59:41,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:59:41,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:41,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49268 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:41,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:41,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:41,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 00:59:41,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 00:59:41,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:41,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49269 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35048 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:53644 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:49315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:43,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:43,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:43,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:59:43,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:59:43,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:43,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53645 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:44,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:44,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:44,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 00:59:44,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 00:59:44,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:44,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6885 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:49276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56797 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:59:45,739 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:59:45,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:59:45,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 00:59:46,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 00:59:46,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:59:46,024 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:49277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6886 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62299 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7877 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:46,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:46,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:46,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 00:59:46,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 00:59:46,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:46,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56798 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:47,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:47,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:47,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:59:47,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:59:47,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:47,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62300 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:47,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:47,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:47,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 00:59:47,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 00:59:47,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:47,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7878 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49322 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:48,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:48,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:48,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 00:59:48,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 00:59:48,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:48,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49323 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53660 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:49,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:49,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:49,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 00:59:49,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 00:59:49,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:49,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53661 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7882 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 00:59:52,630 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 00:59:52,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 00:59:52,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.330s +2025-10-02 00:59:52,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.330s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.330s (avg: 0.165s/image) +2025-10-02 00:59:52,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.330s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 00:59:52,962 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:49332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7883 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53671 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:53,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:53,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:53,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 00:59:53,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 00:59:53,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:53,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53672 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:55,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:55,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:55,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 00:59:55,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 00:59:55,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:55,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:56,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:56,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:56,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 00:59:56,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 00:59:56,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:56,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49339 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:49319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:57,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:57,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:57,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 00:59:57,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 00:59:57,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:57,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:58,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:58,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:58,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 00:59:58,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 00:59:58,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:58,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49320 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53680 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 00:59:58,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 00:59:58,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 00:59:58,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 00:59:59,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 00:59:59,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 00:59:59,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53681 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:01,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:01,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:01,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:00:01,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:00:01,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:01,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62313 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:02,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:02,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:02,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:00:02,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:00:02,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:02,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62314 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53691 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:03,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:03,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:03,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:00:04,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:00:04,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:04,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53692 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49359 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:04,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:04,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:04,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:00:04,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:00:04,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:04,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49329 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:07,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:07,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:07,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:00:07,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:00:07,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:07,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49330 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7895 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:07,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:07,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:07,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:00:07,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:00:07,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:07,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7896 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:09,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:09,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:09,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:00:09,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:00:09,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:09,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53699 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49370 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:09,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:09,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:09,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:00:10,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:00:10,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:10,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49371 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:11,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:11,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:11,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:00:11,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:00:11,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:11,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59022 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:53706 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:13,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:13,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:13,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:00:13,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:00:13,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:13,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53707 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49405 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:14,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:14,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:14,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:00:14,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:00:14,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:14,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49406 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62321 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:15,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:15,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:15,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:00:15,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:00:15,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:15,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62322 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7904 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:49345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:00:16,720 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:00:16,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:00:16,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-02 01:00:17,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-02 01:00:17,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:00:17,036 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:7905 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49346 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53713 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:49422 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:17,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:17,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:18,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:00:18,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:00:18,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:18,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53714 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:18,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:18,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:18,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:00:18,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:00:18,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:18,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49424 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57466 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:19,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:19,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:19,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:00:19,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:00:19,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:19,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57467 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:21,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:21,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:21,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:00:21,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:00:21,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:21,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53726 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:22,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:22,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:22,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:00:22,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:00:22,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:22,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53727 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:22,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:22,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:22,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:00:22,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:00:22,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:22,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56859 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:23,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:23,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:23,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:00:23,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:00:23,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:23,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56860 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51843 - "GET /health HTTP/1.1" 200 OK +INFO: 220.127.236.236:51844 - "GET /health HTTP/1.1" 200 OK +INFO: 220.127.236.236:51845 - "GET /health HTTP/1.1" 200 OK +INFO: 220.77.167.192:62329 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:28,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:28,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:28,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:00:28,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:00:28,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:28,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62330 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:28,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:28,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:28,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:00:28,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:00:28,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:28,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7915 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:29,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:29,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:29,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:00:30,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:00:30,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:30,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7916 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:31,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:31,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:31,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:00:31,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:00:31,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:31,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49464 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62334 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:33,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:33,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:33,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:00:33,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:00:33,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:33,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62335 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:35,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:35,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:35,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:00:35,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:00:35,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:35,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:5032 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62339 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:36,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:36,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:36,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:00:36,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:00:36,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:36,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62340 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53740 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:00:38,334 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:00:38,365 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=68.422 +2025-10-02 01:00:38,462 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.422 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.096s +2025-10-02 01:00:38,462 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 01:00:38,462 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 122.35.47.45:53741 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:7921 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:39,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:39,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:39,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:00:39,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:00:39,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:39,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7922 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:41,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:41,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:41,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:00:41,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:00:41,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:41,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53748 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:43,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:43,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:43,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:00:43,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:00:43,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:43,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53749 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45304 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:49489 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:46,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:46,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:46,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:00:46,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:00:46,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:46,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49490 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49496 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:49,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:49,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:49,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:00:49,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:00:49,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:49,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53762 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:52,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:52,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:52,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:00:52,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:00:52,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:52,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53763 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:54,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:54,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:54,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:00:54,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:00:54,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:54,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57489 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:57,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:57,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:57,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:00:57,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:00:57,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:57,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57495 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:53772 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:58,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:58,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:58,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:00:58,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:00:58,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:58,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57496 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:00:58,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:00:58,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:00:58,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:00:59,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:00:59,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:00:59,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53773 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6914 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:01:02,593 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:01:02,614 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=159.861 +2025-10-02 01:01:02,700 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.861 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 01:01:02,700 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:01:02,700 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 118.41.33.196:6915 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.81.39.26:57502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:04,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:04,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:04,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:01:04,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:01:04,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:04,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57503 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:05,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:05,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:05,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:01:05,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:01:05,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:05,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6920 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:01:06,923 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:01:06,947 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=117.939 +2025-10-02 01:01:07,022 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.939 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 01:01:07,022 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 01:01:07,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 118.41.33.196:6921 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:6925 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:49411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:01:10,577 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:01:10,600 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=153.484 +2025-10-02 01:01:10,674 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.484 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 01:01:10,674 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 01:01:10,674 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 118.41.33.196:6926 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:10,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:10,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:10,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:01:11,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:01:11,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:11,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7946 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:11,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:11,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:11,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:01:12,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:01:12,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:12,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7947 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33976 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:49417 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:16,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:16,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:16,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:01:16,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:01:16,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:16,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49418 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53477 - "GET /health HTTP/1.1" 200 OK +INFO: 39.112.59.88:53480 - "GET /health HTTP/1.1" 200 OK +INFO: 39.112.59.88:53483 - "GET /health HTTP/1.1" 200 OK +INFO: 61.81.39.26:57507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:17,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:17,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:17,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:01:17,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:01:17,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:17,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57508 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:22,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:22,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:22,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:01:22,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:01:22,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:22,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49446 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56898 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:25,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:25,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:25,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:01:25,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:01:25,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:25,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56899 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:26,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:26,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:26,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:01:27,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:01:27,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:27,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53808 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:29,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:29,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:29,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:01:29,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:01:29,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:29,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53810 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:6933 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:30,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:30,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:30,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:01:30,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:01:30,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:30,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6934 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56905 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:33,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:33,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:33,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:01:33,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:01:33,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:33,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:33,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:33,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:33,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:01:33,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:01:33,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:33,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56906 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53817 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:34,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:34,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:34,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:01:34,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:01:34,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:34,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53818 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57517 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:35,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:35,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:35,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:01:35,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:01:35,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:35,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57518 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49466 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:38,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:38,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:38,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:01:38,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:01:38,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:38,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49467 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53834 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:39,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:39,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:39,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:01:39,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:01:39,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:39,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53835 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:40,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:40,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:40,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:01:40,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:01:40,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:40,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56912 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57524 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:6941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:41,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:41,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:41,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:01:41,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:01:41,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:41,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:49471 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59516 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:43,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:43,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:43,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:01:43,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:01:43,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:43,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:6942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:43,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:43,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:43,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:01:44,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:01:44,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:44,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:44,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:44,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:44,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:01:44,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:01:44,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:44,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49472 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56920 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:47,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:47,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:47,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:01:47,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:01:47,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:47,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56921 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62367 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:49476 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:49,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:49,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:49,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:01:49,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:01:49,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:49,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62368 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:50,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:50,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:50,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:01:50,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:01:50,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:50,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49477 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65016 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:01:53,382 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:01:53,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=113.243 +2025-10-02 01:01:53,532 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.243 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.116s +2025-10-02 01:01:53,532 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.116s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.117s +2025-10-02 01:01:53,532 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.117s +INFO: 125.242.75.181:65017 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:56926 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:54,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:54,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:54,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:01:54,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:01:54,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:54,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56927 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:55,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:55,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:55,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:01:55,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:01:55,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:55,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51910 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:53858 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:57,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:57,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:57,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:01:57,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:01:57,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:57,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51911 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62372 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:57,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:57,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:57,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:01:58,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:01:58,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:58,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53859 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:58,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:58,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:58,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:01:58,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:01:58,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:58,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:01:59,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:01:59,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:01:59,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:01:59,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:01:59,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:01:59,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49489 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53865 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56931 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:02:02,089 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:02:02,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:02:02,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.322s +2025-10-02 01:02:02,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.322s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.322s (avg: 0.161s/image) +2025-10-02 01:02:02,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.322s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:02:02,413 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:53866 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56932 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7966 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:02:04,840 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:02:04,867 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=97.527 +2025-10-02 01:02:04,954 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.527 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 01:02:04,954 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 01:02:04,954 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 175.119.234.181:7967 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:51922 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:05,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:05,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:05,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:02:05,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:02:05,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:05,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51923 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53878 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:08,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:08,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:08,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:02:08,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:02:08,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:08,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53879 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57547 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:12,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:12,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:12,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:02:12,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:02:12,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:12,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57548 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56936 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:13,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:13,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:13,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:02:13,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:02:13,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:13,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56937 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59840 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:51930 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:14,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:14,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:14,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:02:14,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:02:14,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:14,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51931 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53894 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:17,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:17,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:17,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:02:17,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:02:17,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:17,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53895 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7975 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:18,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:18,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:18,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:02:18,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:02:18,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:18,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7976 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:19,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:19,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:19,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:02:19,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:02:19,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:19,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:56942 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:21,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:21,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:21,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 01:02:21,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 01:02:21,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:21,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:21,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:21,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:21,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:02:21,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:02:21,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:21,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56943 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53919 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:26,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:26,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:26,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:02:26,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:02:26,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:26,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53920 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:29,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:29,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:29,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:02:29,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:02:29,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:29,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:56956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:53925 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:30,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:30,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:30,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:02:30,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:02:30,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:30,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:31,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:31,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:31,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:02:31,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:02:31,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:31,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53927 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53934 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:36,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:36,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:36,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:02:36,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:02:36,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:36,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53935 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:39,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:39,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:39,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 01:02:39,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 01:02:39,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:39,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53947 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:41,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:41,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:41,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:02:41,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:02:41,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:41,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53948 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33226 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:53953 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:44,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:44,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:44,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 01:02:44,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 01:02:44,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:44,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53954 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53558 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:46,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:46,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:46,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:02:46,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:02:46,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:46,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53559 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7990 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:49,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:49,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:49,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:02:49,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:02:49,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:49,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7991 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53965 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:50,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:50,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:50,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:02:50,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:02:50,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:50,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53966 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53566 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:51,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:51,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:51,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:02:51,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:02:51,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:51,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53567 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:53973 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:54,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:54,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:54,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:02:54,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:02:54,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:54,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:53974 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7999 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:58,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:58,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:59,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:02:59,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:02:59,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:59,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:02:59,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:02:59,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:02:59,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:02:59,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:02:59,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:02:59,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8000 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:56966 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:02,635 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:02,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=50.221 +2025-10-02 01:03:02,760 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.221 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.098s +2025-10-02 01:03:02,760 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-02 01:03:02,761 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +INFO: 221.154.208.144:56967 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:8006 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:03,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:03,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:03,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:03:03,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:03:03,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:03,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8007 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:03,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:03,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:03,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:03:04,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:03:04,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:04,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53582 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49984 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:05,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:05,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:05,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:03:05,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:03:05,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:05,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49985 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8011 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:08,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:08,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:08,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:03:08,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:03:08,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:08,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8012 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:09,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:09,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:09,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:03:09,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:03:09,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:09,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53589 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:10,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:10,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:10,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:03:10,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:03:10,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:10,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57006 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62379 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:10,808 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:10,832 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=192.804 +2025-10-02 01:03:10,905 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=192.804 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 01:03:10,906 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 01:03:10,906 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 220.77.167.192:62380 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:49630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:11,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:11,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:11,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:03:11,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:03:11,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:11,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49993 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:12,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:12,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:12,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:03:12,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:03:12,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:12,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49994 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8016 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:12,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:12,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:12,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:03:13,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:03:13,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:13,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8017 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37852 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:49635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:14,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:14,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:14,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:03:14,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:03:14,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:14,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:16,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:16,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:16,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:03:16,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:03:16,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:16,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49640 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:17,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:17,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:17,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:03:17,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:03:17,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:17,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49641 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8021 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:18,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:18,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:18,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:03:18,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:03:18,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:18,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8022 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53594 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:18,918 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:18,940 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=52.612 +2025-10-02 01:03:19,037 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.612 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.096s +2025-10-02 01:03:19,038 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 01:03:19,038 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +INFO: 39.112.59.88:53595 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:49645 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:20,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:20,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:20,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:03:20,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:03:20,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:20,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49646 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62384 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:21,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:21,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:21,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:03:21,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:03:21,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:21,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62385 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:23,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:23,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:23,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:03:23,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:03:23,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:23,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:23,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:23,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:23,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:03:23,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:03:23,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:23,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53600 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:26,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:26,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:26,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:03:26,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:03:26,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:26,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53601 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49661 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:27,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:27,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:27,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:03:27,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:03:27,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:27,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49662 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62389 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:29,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:29,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:29,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:03:29,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:03:29,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:29,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62390 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8032 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57025 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:30,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:30,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:30,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:03:30,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:03:30,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:30,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49674 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:03:30,830 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:03:30,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:03:30,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 01:03:31,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-02 01:03:31,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:03:31,098 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:57026 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8033 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54008 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:31,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:31,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:31,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:03:31,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:03:31,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:31,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54009 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49697 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:33,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:33,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:33,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:03:34,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:03:34,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:34,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49698 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8037 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:35,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:35,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:35,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:03:35,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:03:35,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:35,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8038 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:36,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:36,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:36,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:03:36,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:03:36,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:36,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54020 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:37,049 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:37,074 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=132.047 +2025-10-02 01:03:37,158 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.047 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 01:03:37,159 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:03:37,159 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 118.41.33.196:7006 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:62395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:65073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:37,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:37,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:37,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:03:37,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:03:37,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:37,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62396 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:37,898 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:37,923 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=53.313 +2025-10-02 01:03:38,001 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.313 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 01:03:38,002 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 01:03:38,004 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 125.242.75.181:65074 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:49718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:39,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:39,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:39,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:03:39,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:03:39,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:39,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8042 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:39,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:39,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:39,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:03:40,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:03:40,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:40,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54026 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:41,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:41,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:41,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:03:41,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:03:41,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:41,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54027 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7010 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:42,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:42,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=160.936 +2025-10-02 01:03:42,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.936 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 01:03:42,595 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:03:42,595 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 118.41.33.196:7011 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:57420 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:49729 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62400 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:03:45,286 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:03:45,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:03:45,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:03:45,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 01:03:45,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:03:45,579 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:49730 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62401 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:45,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:45,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:46,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:03:46,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:03:46,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:46,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8048 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7015 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54033 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:03:46,985 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:03:47,013 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=170.513 +2025-10-02 01:03:47,098 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=170.513 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 01:03:47,099 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:03:47,099 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 118.41.33.196:7016 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:47,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:47,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:47,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:03:47,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:03:47,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:47,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54034 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49735 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:48,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:48,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:48,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:03:48,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:03:48,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:48,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49736 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8052 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:51,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:51,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:51,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:03:51,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:03:51,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:51,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8053 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54043 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:52,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:52,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:52,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:03:53,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:03:53,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:53,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8057 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:54,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:54,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:54,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:03:54,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:03:54,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:54,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8058 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:54,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:54,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:54,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:03:55,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:03:55,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:55,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57575 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53620 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:56,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:56,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:56,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:03:56,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:03:56,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:56,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53621 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54050 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:58,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:58,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:58,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:03:58,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:03:58,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:58,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54052 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8062 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:03:59,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:03:59,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:03:59,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:03:59,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:03:59,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:03:59,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8063 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53629 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:01,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:01,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:01,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:04:01,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:04:01,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:01,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57582 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57052 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:02,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:02,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:02,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-02 01:04:02,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-02 01:04:02,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:02,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53630 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:02,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:02,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:02,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:04:02,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:04:02,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:02,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57053 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:03,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:03,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:03,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:04:03,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:04:03,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:03,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57057 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:05,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:05,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:05,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:04:05,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:04:05,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:05,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57058 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7022 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53634 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:05,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:05,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:05,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:04:05,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:04:05,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:05,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7023 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:06,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:06,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:06,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:04:06,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:04:06,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:06,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53635 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57586 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:07,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:07,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:07,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:04:07,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:04:07,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:07,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57587 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54067 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:08,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:08,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:08,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:04:08,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:04:08,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:08,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54068 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57062 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7027 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:10,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:10,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:10,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:04:10,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:04:10,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:10,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57063 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:10,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:10,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:10,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 01:04:10,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 01:04:10,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:10,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7028 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57067 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54075 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:12,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:12,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:12,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:04:13,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:04:13,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:13,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57068 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53651 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:13,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:13,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:13,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:04:13,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:04:13,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:13,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54076 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55186 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:13,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:13,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:13,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:04:13,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:04:13,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:13,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53652 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57591 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:14,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:14,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:14,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:04:14,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:04:14,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:14,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57592 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:15,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:15,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:15,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:04:15,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:04:15,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:15,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7032 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:16,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:16,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:16,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:04:16,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:04:16,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:16,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7033 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:17,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:17,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:17,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:04:17,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:04:17,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:17,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53663 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54083 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:18,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:18,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:18,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:04:18,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:04:18,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:18,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54084 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62408 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:19,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:19,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:19,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:04:19,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:04:19,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:19,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62409 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:21,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:21,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:21,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:04:21,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:04:21,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:21,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57597 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:22,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:22,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:22,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:04:22,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:04:22,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:22,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49776 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:23,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:23,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:23,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:04:23,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:04:23,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:23,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49777 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62413 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:24,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:24,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:24,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:04:24,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:04:24,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:24,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62414 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7040 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:27,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:27,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:27,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:04:27,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:04:27,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:27,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7041 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57601 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:28,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:28,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:28,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:04:28,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:04:28,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:28,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57602 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49786 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:29,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:29,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:29,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:04:29,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:04:29,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:29,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49787 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:30,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:30,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:30,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:04:30,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:04:30,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:30,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53684 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62418 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:30,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:30,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:30,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:04:30,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:04:30,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:30,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62419 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54094 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:04:31,199 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:04:31,222 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=34.921 +2025-10-02 01:04:31,304 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.921 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 01:04:31,304 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:04:31,304 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 122.35.47.45:54095 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:7045 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:31,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:31,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:31,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:04:31,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:04:31,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:31,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7046 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49793 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:33,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:33,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:33,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:04:33,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:04:33,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:33,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49794 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57606 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:34,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:34,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:34,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:04:35,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:04:35,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:35,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57607 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62424 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:36,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:36,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:36,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:04:36,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:04:36,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:36,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62425 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54101 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53694 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:36,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:36,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:36,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:04:36,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:04:36,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:36,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54102 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:36,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:36,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:37,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:04:37,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:04:37,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:37,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53695 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7050 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:49798 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:38,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:38,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:38,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:04:39,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:04:39,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:39,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7051 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:39,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:39,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:39,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:04:39,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:04:39,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:39,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49799 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62429 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:40,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:40,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:40,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:04:40,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:04:40,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:40,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62430 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:40,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:40,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:41,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:04:41,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:04:41,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:41,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57611 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7055 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:42,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:42,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:42,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:04:42,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:04:42,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:42,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57612 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:43,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:43,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:43,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:04:43,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:04:43,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:43,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7056 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39044 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:49807 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:44,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:44,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:44,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:04:44,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:04:44,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:44,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49808 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54116 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62434 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:04:46,071 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:04:46,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:04:46,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 01:04:46,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-02 01:04:46,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:04:46,368 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:54117 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62435 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:46,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:46,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:46,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:04:46,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:04:46,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:46,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49814 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7060 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:47,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:47,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:47,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:04:48,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:04:48,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:48,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49815 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53706 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:48,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:48,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:48,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:04:48,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:04:48,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:48,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7061 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:48,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:48,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:48,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:04:48,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:04:48,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:48,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53707 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57616 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:49,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:49,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:49,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:04:49,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:04:49,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:49,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57617 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57116 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:49819 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:51,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:51,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:51,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:04:51,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:04:51,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:51,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57117 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:51,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:51,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:51,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:04:51,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:04:51,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:51,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49820 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54133 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62439 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:04:52,029 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:04:52,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:04:52,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 01:04:52,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 01:04:52,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:04:52,311 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:62440 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54134 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7065 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53712 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:04:54,352 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:04:54,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:04:54,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +2025-10-02 01:04:54,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.317s (avg: 0.159s/image) +2025-10-02 01:04:54,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:04:54,671 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:53713 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7066 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57121 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:55,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:55,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:55,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:04:55,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:04:55,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:55,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57122 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:55,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:55,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:55,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:04:55,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:04:55,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:55,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49827 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57623 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62444 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:57,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:57,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:57,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:04:57,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:04:57,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:57,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57624 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:57,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:57,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:57,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:04:57,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:04:57,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:57,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62445 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53717 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:04:59,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:04:59,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:04:59,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:04:59,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:04:59,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:04:59,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53718 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49832 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:00,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:00,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:00,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:05:00,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:05:00,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:00,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49833 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7071 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57126 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:01,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:01,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:01,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:05:01,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:05:01,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:01,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57127 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:01,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:01,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:01,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:05:02,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:05:02,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:02,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7072 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62449 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:03,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:03,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:03,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:05:03,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:05:03,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:03,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49851 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:03,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:03,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:03,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:05:03,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:05:03,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:03,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62450 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:04,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:04,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:04,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:05:04,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:05:04,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:04,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49852 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53722 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:04,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:04,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:04,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:05:04,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:05:04,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:04,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53723 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57132 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:05,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:05,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:05,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:05:05,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:05:05,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:05,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57133 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7076 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:49862 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:07,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:07,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:07,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:05:07,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:05:07,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:07,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7077 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:08,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:08,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:08,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:05:08,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:05:08,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:08,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49863 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50989 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:09,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:09,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:09,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:05:09,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:05:09,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:09,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50990 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57137 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62454 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:05:09,890 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:05:09,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:05:09,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 01:05:10,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 01:05:10,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:05:10,169 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:62455 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57138 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:10,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:10,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:10,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:05:10,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:05:10,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:10,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49870 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:11,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:11,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:11,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:05:12,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:05:12,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:12,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49871 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50997 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:12,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:12,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:12,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:05:12,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:05:12,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:12,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50998 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7081 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:13,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:13,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:13,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:05:13,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:05:13,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:13,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7082 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58604 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:49875 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:15,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:15,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:15,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:05:15,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:05:15,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:15,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49876 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62459 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:16,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:16,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:16,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:05:16,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:05:16,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:16,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62460 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:17,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:17,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:17,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:05:17,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:05:17,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:17,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53735 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:18,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:18,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:18,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:05:18,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:05:18,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:18,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53736 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7086 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:49880 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:05:19,294 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:05:19,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:05:19,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 01:05:19,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 01:05:19,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:05:19,589 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:49881 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7087 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:21,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:21,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:21,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:05:21,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:05:21,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:21,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54165 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51015 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:22,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:22,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:22,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:05:22,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:05:22,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:22,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51016 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49886 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:23,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:23,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:23,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:05:23,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:05:23,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:23,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49887 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:23,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:23,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:23,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:05:24,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:05:24,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:24,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57649 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:25,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:25,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:25,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:05:25,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:05:25,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:25,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57650 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:25,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:25,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:25,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:05:25,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:05:25,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:25,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54177 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51048 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:26,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:26,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:26,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:05:27,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:05:27,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:27,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51049 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7094 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:27,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:27,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:27,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:05:27,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:05:27,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:27,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7095 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54183 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62468 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:28,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:28,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:28,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:05:28,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:05:28,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:28,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54184 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:28,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:28,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:29,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:05:29,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:05:29,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:29,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62469 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51068 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54189 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:30,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:30,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:30,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:05:30,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:05:30,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:30,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51070 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:30,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:30,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:30,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:05:31,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:05:31,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:31,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54190 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:32,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:32,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:32,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:05:32,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:05:32,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:32,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57147 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:05:34,020 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:05:34,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:05:34,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 01:05:34,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-02 01:05:34,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:05:34,323 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:54197 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7100 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:05:34,497 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:05:34,515 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=70.920 +2025-10-02 01:05:34,592 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.920 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 01:05:34,592 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 01:05:34,593 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 221.154.208.144:57148 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:34,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:34,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:34,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:05:35,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:05:35,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:35,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54202 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:38,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:38,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:38,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:05:38,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:05:38,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:38,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54203 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57152 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57661 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:40,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:40,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:40,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:05:40,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:05:40,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:40,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57153 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:40,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:40,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:40,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:05:40,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:05:40,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:40,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57662 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7104 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:41,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:41,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:41,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:05:41,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:05:41,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:41,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:05:41,358 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:05:41,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:05:41,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.331s +2025-10-02 01:05:41,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.331s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.331s (avg: 0.166s/image) +2025-10-02 01:05:41,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.331s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:05:41,690 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:54211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7105 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35868 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:51108 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54217 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:05:45,133 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:05:45,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:05:45,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 01:05:45,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 01:05:45,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:05:45,434 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:54218 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51109 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:46,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:46,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:46,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:05:46,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:05:46,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:46,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57162 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57668 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:47,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:47,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:47,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:05:47,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:05:47,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:47,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57669 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54224 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:48,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:48,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:48,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:05:48,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:05:48,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:48,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:48,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:48,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:48,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:05:48,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:05:48,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:48,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54225 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65154 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:05:50,105 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:05:50,129 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=147.751 +2025-10-02 01:05:50,215 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.751 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 01:05:50,215 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:05:50,215 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 125.242.75.181:65155 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:51117 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:50,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:50,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:50,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:05:50,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:05:50,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:50,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51118 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54231 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:51,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:51,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:51,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:05:51,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:05:51,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:51,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54232 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7112 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:53,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:53,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:53,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:05:53,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:05:53,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:53,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7113 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:54,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:54,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:54,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:05:54,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:05:54,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:54,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62489 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54238 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:55,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:55,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:55,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:05:55,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:05:55,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:55,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54239 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51126 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:56,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:56,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:57,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:05:57,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:05:57,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:57,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51127 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:49929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:57,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:57,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:57,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:05:57,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:05:57,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:57,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:58,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:58,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:58,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:05:58,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:05:58,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:58,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7117 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:59,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:59,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:59,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:05:59,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:05:59,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:59,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7118 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54250 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:05:59,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:05:59,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:05:59,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:05:59,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:05:59,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:05:59,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54251 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62493 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:01,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:01,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:01,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:06:01,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:06:01,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:01,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62494 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:51135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:02,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:02,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:02,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:06:02,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:06:02,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:02,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54261 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:02,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:02,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:02,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:06:02,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:06:02,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:02,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51136 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7122 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:06,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:06,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:06,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:06:06,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:06:06,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:06,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7123 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:06,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:06,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:06,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:06:06,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:06:06,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:06,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51144 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:08,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:08,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:08,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:06:08,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:06:08,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:08,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:14857 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54280 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:10,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:10,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:10,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:06:10,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:06:10,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:10,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54282 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47950 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:51168 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:14,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:14,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:14,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:06:14,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:06:14,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:14,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51169 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7127 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53786 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:14,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:14,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:14,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:06:15,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:06:15,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:15,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7128 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:15,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:15,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:15,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:06:15,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:06:15,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:15,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53788 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:15,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:15,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:15,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:06:15,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:06:15,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:15,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:19,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:19,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:19,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:06:19,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:06:19,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:19,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:20,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:20,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:20,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:06:20,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:06:20,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:20,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53794 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:22,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:22,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:22,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:06:22,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:06:22,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:22,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51224 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:24,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:24,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:24,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:06:24,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:06:24,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:24,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57207 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:29,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:29,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:29,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:06:29,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:06:29,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:29,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57208 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:49953 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:30,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:30,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:30,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:06:30,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:06:30,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:30,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:49954 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57217 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:35,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:35,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:35,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 01:06:35,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 01:06:35,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:35,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57218 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53827 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:06:37,585 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:06:37,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=49.908 +2025-10-02 01:06:37,712 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.908 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 01:06:37,713 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:06:37,713 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 39.112.59.88:53828 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:50010 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:38,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:38,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:38,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:06:39,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:06:39,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:39,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50011 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:39,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:39,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:39,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:06:39,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:06:39,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:39,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57226 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:42,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:42,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:42,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:06:43,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:06:43,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:43,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54172 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 125.242.75.181:65196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:50022 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:06:47,522 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:06:47,568 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=131.532 +2025-10-02 01:06:47,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.532 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.099s +2025-10-02 01:06:47,669 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 01:06:47,671 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +INFO: 125.242.75.181:65197 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:47,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:47,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:47,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:06:48,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:06:48,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:48,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50023 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:48,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:48,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:49,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:06:49,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:06:49,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:49,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57242 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57249 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:50027 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:53,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:53,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:53,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:06:53,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:06:53,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:53,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57250 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:53,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:53,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:53,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:06:53,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:06:53,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:53,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50028 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:58,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:58,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:58,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:06:58,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:06:58,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:58,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50034 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:06:58,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:06:58,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:06:58,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:06:58,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:06:58,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:06:58,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50035 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57272 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:03,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:03,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:03,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:07:03,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:07:03,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:03,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54333 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:07:03,896 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:07:03,925 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=74.284 +2025-10-02 01:07:04,012 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.284 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 01:07:04,013 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:07:04,013 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 122.35.47.45:54334 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:50042 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:09,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:09,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:09,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:07:09,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:07:09,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:09,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54340 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:09,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:09,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:09,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:07:09,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:07:09,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:09,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53869 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:10,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:10,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:10,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:07:10,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:07:10,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:10,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53870 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:12,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:12,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:12,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:07:12,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:07:12,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:12,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50048 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35298 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:54350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:14,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:14,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:14,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:07:14,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:07:14,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:14,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50055 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62508 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:16,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:16,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:16,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:07:16,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:07:16,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:16,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50056 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:17,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:17,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:17,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:07:17,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:07:17,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:17,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62509 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54356 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57292 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:07:19,576 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:07:19,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:07:19,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 01:07:19,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 01:07:19,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:07:19,864 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:57293 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54357 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53890 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:20,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:20,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:20,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:07:20,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:07:20,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:20,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53891 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:22,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:22,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:22,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:07:22,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:07:22,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:22,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50100 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57694 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53898 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:26,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:26,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:26,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:07:26,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:07:26,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:26,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57695 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:26,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:26,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:26,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:07:27,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:07:27,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:27,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53899 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52149 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:27,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:27,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:27,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 01:07:27,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 01:07:27,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:27,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52150 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:27,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:27,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:27,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:07:27,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:07:27,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:27,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62514 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50113 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:30,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:30,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:30,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:07:30,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:07:30,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:30,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50114 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53905 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7143 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:32,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:32,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:32,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:07:32,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:07:32,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:32,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:07:32,268 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:07:32,298 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=62.291 +2025-10-02 01:07:32,397 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.291 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.098s +2025-10-02 01:07:32,397 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 01:07:32,399 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +INFO: 118.41.33.196:7144 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:50118 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:34,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:34,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:35,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:07:35,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:07:35,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:35,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50119 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8144 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:07:35,579 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:07:35,599 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=104.835 +2025-10-02 01:07:35,681 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.835 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 01:07:35,681 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:07:35,681 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 175.119.234.181:8145 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:7148 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:07:36,854 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:07:36,889 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=67.692 +2025-10-02 01:07:36,982 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.692 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 01:07:36,982 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 01:07:36,984 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 118.41.33.196:7149 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:50125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52158 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:07:38,881 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:07:38,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:07:38,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 01:07:39,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 01:07:39,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:07:39,175 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:50126 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52159 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7153 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:51427 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:07:41,453 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:07:41,485 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=52.745 +2025-10-02 01:07:41,577 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.745 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 01:07:41,578 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 01:07:41,579 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 118.41.33.196:7154 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:53922 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:42,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:42,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:42,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:07:42,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:07:42,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:42,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51428 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:42,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:42,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:42,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:07:42,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:07:42,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:42,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53923 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50133 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:42,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:42,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:43,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:07:43,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:07:43,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:43,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50134 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47718 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:52163 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:43,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:43,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:43,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:07:43,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:07:43,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:43,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52164 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52168 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:51436 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:07:49,145 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:07:49,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:07:49,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 01:07:49,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 01:07:49,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:07:49,449 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:50143 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52169 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:49,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:49,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:49,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:07:49,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:07:49,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:49,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51437 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:51,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:51,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:51,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:07:51,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:07:51,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:51,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54396 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52173 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:54,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:54,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:54,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:07:54,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:07:54,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:54,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52174 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50147 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:54,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:54,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:54,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:07:55,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:07:55,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:55,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50148 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51447 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:55,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:55,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:55,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:07:55,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:07:55,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:55,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51448 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53936 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54408 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:07:56,098 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:07:56,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:07:56,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 01:07:56,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-02 01:07:56,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:07:56,394 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:54409 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53937 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52178 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:58,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:58,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:58,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:07:58,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:07:58,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:58,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52179 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:07:59,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:07:59,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:07:59,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:07:59,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:07:59,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:07:59,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54415 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:00,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:00,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:00,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:08:00,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:08:00,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:00,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7162 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:00,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:00,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:00,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:08:00,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:08:00,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:00,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54416 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:01,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:01,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:01,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:08:01,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:08:01,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:01,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51504 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:02,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:02,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:02,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:08:02,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:08:02,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:02,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52183 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:03,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:03,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:03,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:08:03,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:08:03,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:03,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52184 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54422 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:04,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:04,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:04,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:08:04,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:08:04,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:04,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54423 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:07,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:07,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:07,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:08:07,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:08:07,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:07,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51575 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52189 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:08,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:08,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:08,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:08:08,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:08:08,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:08,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52190 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:08,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:08,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:09,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:08:09,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:08:09,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:09,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57726 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54430 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7169 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45066 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:51584 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:08:18,926 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:08:18,972 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=161.816 +2025-10-02 01:08:19,066 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.816 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 01:08:19,067 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 01:08:19,067 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 221.154.208.144:57346 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.81.39.26:57738 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:21,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:21,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:21,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:08:21,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:08:21,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:21,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7170 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52200 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:08:21,858 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:08:21,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:08:21,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 01:08:22,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-02 01:08:22,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:08:22,155 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:51585 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53976 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:08:22,344 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:08:22,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:08:22,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +2025-10-02 01:08:22,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +2025-10-02 01:08:22,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:08:22,605 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57739 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:08:22,735 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:08:22,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:08:22,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.254s +2025-10-02 01:08:22,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.254s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.254s (avg: 0.127s/image) +2025-10-02 01:08:22,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.254s (avg: 0.127s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:08:22,990 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:52201 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54431 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54446 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52205 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:51599 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57743 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7175 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:29,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:29,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:29,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-02 01:08:29,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-02 01:08:29,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:29,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54447 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:29,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:29,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:29,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:08:29,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:08:29,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:29,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51600 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:08:29,819 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:08:29,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:08:29,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-02 01:08:30,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-02 01:08:30,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:08:30,092 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:52206 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57744 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:30,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:30,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:30,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:08:30,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:08:30,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:30,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7176 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:33,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:33,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:34,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:08:34,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:08:34,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:34,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:34,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:34,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:34,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 01:08:34,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 01:08:34,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:34,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54460 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:35,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:35,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:35,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:08:35,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:08:35,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:35,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54461 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51610 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:36,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:36,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:36,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:08:36,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:08:36,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:36,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51611 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54466 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:08:38,777 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:08:38,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:08:38,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 01:08:39,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-02 01:08:39,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:08:39,046 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:54467 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52218 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51619 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:43,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:43,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:43,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:08:43,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:08:43,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:43,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51620 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52222 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35870 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:43,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:43,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:43,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:08:43,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:08:43,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:43,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:43,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:43,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:43,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:08:44,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:08:44,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:44,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:44,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:44,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:44,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:08:44,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:08:44,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:44,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52223 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54480 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:46,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:46,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:46,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:08:47,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:08:47,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:47,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54481 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:48,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:48,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:48,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:08:48,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:08:48,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:48,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8192 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:49,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:49,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:49,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:08:49,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:08:49,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:49,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8193 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51649 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:49,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:49,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:49,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:08:50,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:08:50,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:50,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51650 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:51,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:51,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:51,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:08:51,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:08:51,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:51,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:52,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:52,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:52,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:08:52,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:08:52,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:52,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:52,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:52,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:52,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 01:08:53,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 01:08:53,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:53,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57373 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:55,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:55,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:55,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:08:55,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:08:55,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:55,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57374 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:56,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:56,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:56,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:08:56,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:08:56,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:56,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54508 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:57,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:57,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:57,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:08:57,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:08:57,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:57,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:08:59,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:08:59,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:08:59,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:08:59,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:08:59,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:08:59,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54514 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57780 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:05,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:05,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:05,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:09:05,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:09:05,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:05,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57384 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:05,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:05,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:05,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:09:05,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:09:05,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:05,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57781 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57388 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:09,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:09,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:10,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 01:09:10,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 01:09:10,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:10,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57389 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50243 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:13,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:13,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:13,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:09:13,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:09:13,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:13,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50244 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34552 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:52018 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:15,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:15,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:15,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:09:15,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:09:15,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:15,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57396 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:15,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:15,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:15,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:09:15,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:09:15,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:15,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52020 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:16,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:16,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:16,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:09:16,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:09:16,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:16,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57402 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:19,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:19,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:19,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:09:19,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:09:19,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:19,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57403 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62531 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:09:20,395 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:09:20,423 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=119.342 +2025-10-02 01:09:20,524 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.342 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.099s +2025-10-02 01:09:20,524 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-02 01:09:20,526 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +INFO: 220.77.167.192:62532 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:52129 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:22,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:22,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:22,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:09:22,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:09:22,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:22,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52130 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:22,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:22,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:22,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:09:22,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:09:22,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:22,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8227 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57407 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:24,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:24,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:24,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:09:24,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:09:24,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:24,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57408 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57793 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:25,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:25,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:25,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:09:25,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:09:25,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:25,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57794 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8231 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:26,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:26,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:26,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:09:26,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:09:26,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:26,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8232 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54543 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:54544 - "GET /health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:27,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:27,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:27,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:09:27,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:09:27,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:27,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57412 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:28,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:28,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:28,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:09:28,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:09:28,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:28,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57413 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57800 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:31,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:31,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:31,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:09:31,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:09:31,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:31,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57801 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57419 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:33,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:33,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:33,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:09:33,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:09:33,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:33,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57420 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:36,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:36,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:36,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:09:36,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:09:36,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:36,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57429 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:38,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:38,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:38,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:09:38,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:09:38,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:38,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57430 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8243 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:39,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:39,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:39,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:09:39,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:09:39,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:39,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8244 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:41,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:41,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:41,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:09:41,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:09:41,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:41,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:42,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:42,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:42,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:09:42,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:09:42,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:42,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33044 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:54575 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:44,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:44,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:44,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:09:45,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:09:45,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:45,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54576 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:46,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:46,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:46,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:09:46,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:09:46,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:46,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57444 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52405 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8251 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:47,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:47,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:47,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:09:47,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:09:47,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:47,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52406 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:48,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:48,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:48,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:09:48,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:09:48,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:48,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8252 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:48,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:48,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:48,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:09:48,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:09:48,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:48,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54048 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:48,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:48,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:48,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:09:49,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:09:49,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:49,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54591 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57817 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:49,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:49,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:49,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:09:49,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:09:49,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:49,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57818 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62546 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:49,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:49,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:49,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:09:50,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:09:50,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:50,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62547 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57448 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:50,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:50,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:50,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:09:50,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:09:50,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:50,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57449 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52442 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:52,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:52,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:52,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:09:52,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:09:52,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:52,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52443 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8261 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54600 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:09:53,257 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:09:53,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:09:53,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 01:09:53,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 01:09:53,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:09:53,561 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8262 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54601 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:54,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:54,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:54,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:09:54,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:09:54,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:54,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:57,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:57,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:57,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:09:57,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:09:57,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:57,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54614 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57453 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:58,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:58,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:58,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:09:58,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:09:58,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:58,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57454 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:58,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:58,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:58,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:09:58,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:09:58,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:58,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52451 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:09:58,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:09:58,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:09:58,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:09:59,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:09:59,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:09:59,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52452 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65230 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:01,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:01,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:01,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:10:01,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:10:01,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:01,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:65231 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52465 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:03,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:03,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:03,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 01:10:03,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 01:10:03,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:03,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52466 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8269 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:04,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:04,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:04,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:10:04,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:10:04,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:04,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8270 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54059 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:06,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:06,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:06,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:10:06,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:10:06,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:06,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54060 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65242 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:08,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:08,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:08,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:10:08,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:10:08,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:08,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:65243 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52476 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:09,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:09,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:09,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:10:09,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:10:09,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:09,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52478 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57835 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54629 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:10,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:10,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:10,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:10:10,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:10:10,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:10,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57836 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:10,994 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:11,008 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=41.590 +2025-10-02 01:10:11,092 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.590 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 01:10:11,092 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:10:11,092 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 122.35.47.45:54630 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:54065 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7189 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39048 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:13,598 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:13,620 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=33.993 +2025-10-02 01:10:13,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.993 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 01:10:13,696 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 01:10:13,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 118.41.33.196:7190 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:13,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:13,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:13,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:10:13,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:10:13,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:13,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54066 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:14,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:14,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:14,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:10:14,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:10:14,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:14,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52489 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65248 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:16,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:16,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:16,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:10:16,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:10:16,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:16,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:65249 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54637 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7194 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:17,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:17,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:17,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:10:17,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:10:17,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:17,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54638 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:17,456 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:17,480 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=69.938 +2025-10-02 01:10:17,561 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.938 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 01:10:17,562 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:10:17,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 118.41.33.196:7195 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:52495 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:18,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:18,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:18,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:10:18,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:10:18,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:18,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52496 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:21,261 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:21,286 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=56.231 +2025-10-02 01:10:21,362 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.231 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 01:10:21,362 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 01:10:21,362 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 118.41.33.196:7200 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 125.242.75.181:65253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:22,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:22,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:22,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:10:23,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:10:23,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:23,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:65255 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:23,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:23,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:23,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:10:23,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:10:23,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:23,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:23,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:23,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:23,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:10:23,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:10:23,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:23,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52505 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54072 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:25,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:25,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:25,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:10:25,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:10:25,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:25,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52506 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:25,637 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:25,657 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=65.481 +2025-10-02 01:10:25,739 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.481 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 01:10:25,740 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:10:25,741 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 39.112.59.88:54073 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:57494 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:28,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:28,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:28,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:10:28,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:10:28,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:28,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57495 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54656 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:29,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:29,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:29,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:10:29,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:10:29,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:29,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54657 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:29,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:29,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:29,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:10:30,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:10:30,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:30,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:65260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52516 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:31,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:31,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:31,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:10:31,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:10:31,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:31,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52517 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62560 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:32,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:32,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:32,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:10:32,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:10:32,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:32,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62561 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:33,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:33,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:33,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:10:33,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:10:33,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:33,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54079 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54663 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:35,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:35,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:35,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:10:35,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:10:35,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:35,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54664 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:52528 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:36,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:36,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:36,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:10:37,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:10:37,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:37,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52529 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:37,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:37,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:37,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:10:37,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:10:37,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:37,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:65265 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62566 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54085 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:39,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:39,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:39,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:10:39,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:10:39,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:39,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62567 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:39,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:39,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:39,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:10:39,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:10:39,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:39,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54086 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54670 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:41,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:41,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:41,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:10:41,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:10:41,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:41,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54672 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52540 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:41,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:41,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:41,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:10:41,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:10:41,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:41,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52541 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40304 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:52578 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62571 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:45,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:45,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:45,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:10:46,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:10:46,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:46,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62572 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:46,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:46,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:46,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:10:46,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:10:46,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:46,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52579 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65269 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:49,426 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:49,450 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=61.864 +2025-10-02 01:10:49,544 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.864 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 01:10:49,544 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 01:10:49,545 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 125.242.75.181:65270 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:52608 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:50,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:50,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:50,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:10:50,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:10:50,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:50,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52609 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54094 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:52,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:52,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:52,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:10:52,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:10:52,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:52,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54095 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:53,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:53,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:53,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:10:53,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:10:53,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:53,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:10:57,892 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:10:57,914 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=87.166 +2025-10-02 01:10:57,997 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.166 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 01:10:57,997 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:10:57,997 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 221.154.208.144:57514 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:52639 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:10:58,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:10:58,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:10:58,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:10:58,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:10:58,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:10:58,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52640 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54700 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:00,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:00,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:00,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:11:00,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:11:00,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:00,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54701 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:01,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:01,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:01,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:11:01,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:11:01,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:01,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57519 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:03,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:03,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:03,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:11:03,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:11:03,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:03,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57520 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:05,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:05,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:05,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:11:05,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:11:05,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:05,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52653 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54101 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54724 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:07,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:07,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:07,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:11:07,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:11:07,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:07,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54102 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:07,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:07,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:08,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:11:08,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:11:08,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:08,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54725 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52665 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57527 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:11:12,527 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:11:12,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:11:12,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 01:11:12,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 01:11:12,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:11:12,830 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:57528 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52667 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47846 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:54736 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:14,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:14,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:15,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:11:15,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:11:15,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:15,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54738 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:16,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:16,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:16,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:11:16,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:11:16,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:16,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:65285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57532 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:17,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:17,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:17,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:11:17,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:11:17,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:17,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57533 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54111 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8290 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:18,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:18,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:18,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 01:11:18,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 01:11:18,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:18,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54112 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54743 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:18,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:18,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:19,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:11:19,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:11:19,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:19,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54744 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:11:19,370 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:11:19,406 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=67.025 +2025-10-02 01:11:19,489 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.025 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 01:11:19,489 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:11:19,489 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 175.119.234.181:8291 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:54117 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:23,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:23,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:23,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:11:23,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:11:23,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:23,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54118 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54756 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:26,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:26,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:26,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:11:26,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:11:26,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:26,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54757 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:28,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:28,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:28,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:11:28,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:11:28,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:28,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54124 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54128 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:11:33,861 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:11:33,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:11:33,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.330s +2025-10-02 01:11:34,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.330s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.330s (avg: 0.165s/image) +2025-10-02 01:11:34,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.330s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:11:34,193 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:54129 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50467 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:34,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:34,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:34,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:11:34,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:11:34,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:34,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50468 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57543 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:35,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:35,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:35,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:11:35,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:11:35,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:35,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57544 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50472 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:37,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:37,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:37,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:11:38,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:11:38,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:38,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50473 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7245 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54134 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:39,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:39,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:39,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:11:39,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:11:39,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:39,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7246 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:39,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:39,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:39,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:11:39,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:11:39,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:39,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54135 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57550 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:41,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:41,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:41,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:11:41,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:11:41,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:41,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57551 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54780 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38338 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:43,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:43,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:43,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:11:43,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:11:43,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:43,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57559 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7250 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:44,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:44,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:44,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:11:44,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:11:44,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:44,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57560 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:11:45,066 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:11:45,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:11:45,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 01:11:45,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-02 01:11:45,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:11:45,349 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:7251 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54141 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:45,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:45,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:45,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:11:45,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:11:45,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:45,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8307 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57564 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:49,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:49,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:49,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:11:49,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:11:49,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:49,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54793 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:49,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:49,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:49,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:11:49,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:11:49,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:49,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54795 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:51,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:51,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:51,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:11:51,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:11:51,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:51,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54147 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:53,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:53,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:53,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:11:54,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:11:54,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:54,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54805 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:55,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:55,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:55,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:11:56,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:11:56,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:56,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:11:57,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:11:57,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:11:57,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:11:57,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:11:57,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:11:57,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:52773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8314 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:07,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:07,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:07,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:12:07,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:12:07,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:07,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52776 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:07,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:07,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:07,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:12:07,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:12:07,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:07,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54825 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:08,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:08,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:08,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:12:08,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:12:08,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:08,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8315 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52783 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:10,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:10,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:10,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:12:10,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:12:10,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:10,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52784 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54163 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:11,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:11,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:11,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:12:11,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:12:11,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:11,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54164 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54839 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:12,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:12,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:12,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:12:12,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:12:12,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:12,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54840 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38468 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:52790 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:14,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:14,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:14,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:12:14,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:12:14,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:14,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52791 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8322 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:16,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:16,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:16,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:12:17,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:12:17,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:17,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8323 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:17,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:17,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:17,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:12:17,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:12:17,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:17,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52799 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:18,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:18,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:18,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:12:18,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:12:18,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:18,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52800 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:20,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:20,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:20,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:12:20,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:12:20,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:20,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:11445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:12:24,285 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:12:24,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:12:24,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 01:12:24,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 01:12:24,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:12:24,585 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:54177 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52810 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8334 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:26,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:26,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:26,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:12:26,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:12:26,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:26,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8335 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52818 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:28,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:28,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:28,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:12:28,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:12:28,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:28,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52819 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8339 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:29,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:29,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:29,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:12:30,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:12:30,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:30,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8340 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52851 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:31,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:31,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:31,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:12:31,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:12:31,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:31,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52852 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54181 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:32,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:32,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:32,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:12:32,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:12:32,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:32,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54182 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52871 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52403 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:36,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:36,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:36,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:12:36,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:12:36,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:36,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:36,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:36,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:36,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:12:36,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:12:36,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:36,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52404 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8347 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:38,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:38,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:38,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:12:38,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:12:38,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:38,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8348 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54188 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:39,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:39,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:39,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:12:39,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:12:39,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:39,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54189 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52897 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:39,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:39,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:39,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:12:40,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:12:40,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:40,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52898 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52409 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:41,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:41,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:41,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:12:41,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:12:41,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:41,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52410 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8352 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:42,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:42,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:42,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:12:42,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:12:42,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:42,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50625 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:42,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:42,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:42,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:12:42,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:12:42,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:42,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8353 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52904 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:43,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:43,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:43,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:12:43,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:12:43,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:43,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52905 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59066 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:52414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:45,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:45,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:45,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:12:45,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:12:45,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:45,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52415 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50633 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:47,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:47,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:47,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:12:47,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:12:47,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:47,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50634 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:50,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:50,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:50,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:12:50,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:12:50,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:50,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52421 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:51,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:51,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:51,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:12:51,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:12:51,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:51,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57862 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:52,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:52,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:52,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:12:52,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:12:52,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:52,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57863 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57616 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:12:53,677 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:12:53,699 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=157.635 +2025-10-02 01:12:53,786 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.635 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 01:12:53,787 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:12:53,787 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 118.41.33.196:7265 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:12:54,022 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:12:54,063 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=99.776 +2025-10-02 01:12:54,141 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.776 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 01:12:54,142 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:12:54,142 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 221.154.208.144:57617 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:8363 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:50647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:55,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:55,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:56,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:12:56,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:12:56,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:56,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8364 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:12:56,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:12:56,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:12:56,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:12:56,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:12:56,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:12:56,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7269 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:12:58,699 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:12:58,730 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=152.010 +2025-10-02 01:12:58,809 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.010 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 01:12:58,810 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 01:12:58,810 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 118.41.33.196:7270 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.81.39.26:57870 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:50654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7274 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:02,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:02,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:02,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:13:02,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:13:02,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:02,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:13:02,860 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:13:02,878 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=142.998 +2025-10-02 01:13:02,962 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.998 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 01:13:02,962 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:13:02,962 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 118.41.33.196:7275 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:03,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:03,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:03,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:13:03,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:13:03,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:03,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57871 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:13:04,417 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:13:04,461 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=21.929 +2025-10-02 01:13:04,543 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.929 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 01:13:04,543 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:13:04,544 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 122.35.47.45:54930 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:52927 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:50659 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:07,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:07,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:07,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:13:07,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:13:07,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:07,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52928 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:08,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:08,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:08,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:13:08,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:13:08,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:08,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50660 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57877 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:50664 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:11,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:11,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:11,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:13:11,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:13:11,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:11,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57878 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:13:11,886 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:13:11,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:13:11,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 01:13:12,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 01:13:12,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:13:12,175 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:52439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50665 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52937 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52642 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:13,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:13,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:13,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:13:13,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:13:13,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:13,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52938 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:16,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:16,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:17,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:13:17,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:13:17,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:17,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:13:19,037 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:13:19,067 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=37.397 +2025-10-02 01:13:19,160 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.397 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 01:13:19,160 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 01:13:19,162 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 125.242.75.181:65328 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:52996 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:50696 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57884 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:21,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:21,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:21,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:13:21,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:13:21,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:21,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53002 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:21,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:21,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:21,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:13:21,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:13:21,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:21,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50697 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:22,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:22,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:22,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:13:22,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:13:22,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:22,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57885 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50701 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:26,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:26,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:26,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:13:26,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:13:26,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:26,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50702 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53093 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8375 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:28,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:28,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:28,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:13:28,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:13:28,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:28,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8376 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:28,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:28,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:28,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:13:28,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:13:28,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:28,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53094 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50715 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57891 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:30,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:30,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:30,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:13:30,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:13:30,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:30,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50716 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50720 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:13:35,623 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:13:35,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:13:35,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 01:13:35,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-02 01:13:35,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:13:35,920 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:50721 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57892 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:54988 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:42,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:42,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:42,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:13:42,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:13:42,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:42,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50732 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57658 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52652 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:43,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:43,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:43,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:13:43,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:13:43,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:43,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57659 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57898 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:53112 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:46,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:46,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:46,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:13:46,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:13:46,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:46,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54989 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50738 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:13:47,718 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:13:47,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:13:47,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 01:13:47,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-02 01:13:47,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:13:47,987 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:53113 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50739 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57663 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:48,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:48,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:48,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:13:48,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:13:48,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:48,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57664 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:49,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:49,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:49,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:13:49,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:13:49,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:49,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57899 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:54997 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:50,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:50,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:50,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:13:50,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:13:50,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:50,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:54998 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:52,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:52,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:52,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:13:52,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:13:52,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:52,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55004 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:52,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:52,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:52,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:13:53,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:13:53,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:53,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53124 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:53,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:53,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:53,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:13:53,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:13:53,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:53,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55005 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:53130 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:56,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:56,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:56,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 01:13:56,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 01:13:56,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:56,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50752 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:57,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:57,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:57,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:13:57,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:13:57,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:57,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53131 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57906 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:57,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:57,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:57,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:13:57,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:13:57,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:57,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50753 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:13:57,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:13:57,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:13:57,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:13:57,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:13:57,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:13:57,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57907 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:01,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:01,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:01,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:14:01,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:14:01,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:01,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55023 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:53180 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:14:03,407 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:14:03,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:14:03,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 01:14:03,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 01:14:03,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:14:03,687 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:53182 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55024 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62628 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:14:03,925 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:14:03,944 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=51.682 +2025-10-02 01:14:04,029 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.682 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 01:14:04,029 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:14:04,029 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 220.77.167.192:62629 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.81.39.26:57913 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:06,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:06,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:06,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:14:06,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:14:06,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:06,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57914 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50785 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55034 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:07,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:07,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:07,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:14:07,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:14:07,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:07,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50786 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:08,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:08,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:08,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:14:09,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:14:09,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:09,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55035 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:09,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:09,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:09,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:14:10,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:14:10,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:10,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54227 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53263 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:11,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:11,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:11,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:14:11,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:14:11,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:11,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53266 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50790 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:12,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:12,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:12,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:14:12,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:14:12,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:12,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50791 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50824 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:13,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:13,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:13,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:14:13,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:14:13,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:13,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57919 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:14,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:14,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:14,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:14:14,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:14:14,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:14,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57920 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:15,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:15,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:15,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:14:16,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:14:16,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:16,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52482 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54232 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:50795 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:16,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:16,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:16,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:14:16,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:14:16,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:16,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50796 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:16,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:16,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:16,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:14:17,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:14:17,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:17,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54233 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:17,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:17,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:17,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:14:17,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:14:17,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:17,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:20,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:20,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:20,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:14:20,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:14:20,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:20,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53412 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:21,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:21,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:21,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:14:21,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:14:21,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:21,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53415 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57924 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:22,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:22,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:22,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:14:22,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:14:22,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:22,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57925 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54237 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:23,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:23,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:23,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:14:24,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:14:24,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:24,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54238 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:24,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:24,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:24,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:14:24,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:14:24,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:24,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8388 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:14:25,210 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:14:25,235 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=62.097 +2025-10-02 01:14:25,313 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.097 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 01:14:25,313 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 01:14:25,315 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 175.119.234.181:8389 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:53498 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:26,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:26,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:26,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:14:26,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:14:26,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:26,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53503 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:28,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:28,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:28,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:14:28,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:14:28,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:28,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50824 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55081 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:29,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:29,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:29,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:14:29,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:14:29,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:29,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50825 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:30,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:30,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:30,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:14:30,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:14:30,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:30,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55082 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57932 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:31,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:31,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:31,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:14:31,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:14:31,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:31,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57933 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52493 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:31,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:31,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:31,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:14:31,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:14:31,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:31,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52494 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53632 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:32,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:32,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:32,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:14:32,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:14:32,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:32,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53635 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:50829 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:36,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:36,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:36,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:14:36,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:14:36,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:36,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:50830 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:36,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:36,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:36,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:14:36,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:14:36,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:36,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53702 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:38,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:38,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:38,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:14:38,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:14:38,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:38,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52500 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:38,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:38,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:38,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:14:38,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:14:38,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:38,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53703 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57939 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:39,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:39,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:39,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:14:39,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:14:39,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:39,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57940 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52504 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:43,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:43,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:43,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:14:43,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:14:43,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:43,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52505 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36876 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:8400 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:44,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:44,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:45,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:14:45,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:14:45,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:45,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8401 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53875 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:45,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:45,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:45,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:14:46,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:14:46,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:46,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53879 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:14:47,595 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:14:47,630 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=47.777 +2025-10-02 01:14:47,714 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.777 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 01:14:47,714 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:14:47,715 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 39.112.59.88:54261 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.81.39.26:57946 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:48,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:48,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:48,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:14:49,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:14:49,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:49,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57947 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53899 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:49,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:49,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:49,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:14:49,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:14:49,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:49,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53900 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8405 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:51,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:51,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:51,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:14:51,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:14:51,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:51,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8406 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52510 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:52,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:52,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:52,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:14:52,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:14:52,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:52,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52511 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:53,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:53,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:53,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:14:53,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:14:53,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:53,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54265 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:55,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:55,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:55,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:14:55,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:14:55,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:55,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54267 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57953 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:65373 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:14:58,650 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 799, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:14:58,678 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 799, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=51.000 +2025-10-02 01:14:58,759 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.000 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 01:14:58,760 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:14:58,760 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 125.242.75.181:65374 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:52515 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:14:58,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:14:58,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:14:59,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:14:59,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:14:59,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:14:59,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57954 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7313 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:00,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:00,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:00,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:15:00,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:15:00,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:00,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52516 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55138 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:01,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:01,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:01,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:15:02,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:15:02,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:02,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:15:02,159 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:15:02,180 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=79.281 +2025-10-02 01:15:02,253 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.281 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 01:15:02,254 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 01:15:02,254 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 118.41.33.196:7314 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:02,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:02,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:02,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:15:02,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:15:02,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:02,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55139 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54027 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62650 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:05,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:05,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:05,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:15:05,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:15:05,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:05,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54029 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:05,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:05,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:05,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:15:05,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:15:05,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:05,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62651 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7318 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:15:06,285 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:15:06,310 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=104.584 +2025-10-02 01:15:06,392 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.584 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 01:15:06,393 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:15:06,393 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 118.41.33.196:7319 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:55146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:07,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:07,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:07,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:15:07,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:15:07,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:07,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55147 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54278 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57960 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:08,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:08,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:08,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:15:08,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:15:08,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:08,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57961 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:09,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:09,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:09,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:15:09,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:15:09,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:09,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54279 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7323 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:15:10,924 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:15:10,949 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=18.528 +2025-10-02 01:15:11,024 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.528 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 01:15:11,024 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 01:15:11,024 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 118.41.33.196:7324 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:55157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:13,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:13,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:13,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:15:13,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:15:13,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:13,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58250 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:8416 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:14,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:14,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:14,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:15:15,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:15:15,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:15,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8417 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:16,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:16,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:16,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:15:17,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:15:17,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:17,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57968 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62656 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:17,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:17,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:17,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:15:17,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:15:17,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:17,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62657 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54056 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52536 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55168 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:15:18,008 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:15:18,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:15:18,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 01:15:18,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-02 01:15:18,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:15:18,278 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:54057 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52537 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:18,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:18,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:18,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:15:18,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:15:18,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:18,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55169 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55178 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:22,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:22,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:22,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:15:23,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:15:23,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:23,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55179 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54292 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52545 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:27,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:27,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:27,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:15:27,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:15:27,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:27,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54293 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:28,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:28,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:28,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:15:28,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:15:28,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:28,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52546 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:28,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:28,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:28,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:15:28,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:15:28,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:28,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8431 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:30,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:30,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:30,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:15:30,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:15:30,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:30,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8432 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54297 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:32,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:32,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:32,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:15:32,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:15:32,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:32,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54298 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54081 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:32,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:32,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:33,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:15:33,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:15:33,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:33,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54083 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7334 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:33,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:33,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:33,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:15:33,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:15:33,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:33,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7335 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52550 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:34,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:34,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:34,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:15:34,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:15:34,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:34,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52551 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:35,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:35,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:35,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:15:35,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:15:35,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:35,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57981 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:35,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:35,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:35,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:15:35,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:15:35,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:35,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57982 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57776 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:54089 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:36,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:36,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:36,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:15:36,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:15:36,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:36,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57777 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55195 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:36,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:36,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:36,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:15:36,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:15:36,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:36,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54090 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:15:37,049 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:15:37,067 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=108.212 +2025-10-02 01:15:37,151 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.212 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 01:15:37,151 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:15:37,151 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 122.35.47.45:55196 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:54302 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:37,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:37,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:37,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:15:37,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:15:37,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:37,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54303 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7339 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:38,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:38,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:38,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:15:38,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:15:38,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:38,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7340 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52556 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:40,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:40,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:40,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:15:40,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:15:40,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:40,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52557 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:57986 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8446 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55203 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7344 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:42,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:42,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:43,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:15:43,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:15:43,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:43,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57987 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:43,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:43,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:43,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:15:43,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:15:43,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:43,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55204 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57789 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:15:43,591 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:15:43,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:15:43,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 01:15:43,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-02 01:15:43,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:15:43,870 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:7345 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8447 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54309 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57832 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:44,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:44,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:44,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:15:44,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:15:44,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:44,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57790 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:44,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:44,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:44,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:15:44,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:15:44,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:44,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54310 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52561 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:46,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:46,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:47,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:15:47,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:15:47,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:47,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52562 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8451 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:48,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:48,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:48,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:15:48,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:15:48,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:48,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8452 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55212 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:57993 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:49,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:49,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:49,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:15:49,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:15:49,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:49,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55213 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:49,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:49,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:49,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:15:50,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:15:50,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:50,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:57994 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:51,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:51,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:51,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:15:51,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:15:51,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:51,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57794 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52566 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:15:51,603 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:15:51,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:15:51,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-02 01:15:51,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-02 01:15:51,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:15:51,871 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:57795 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52567 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8456 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:52,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:52,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:52,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:15:53,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:15:53,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:53,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8457 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65403 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:15:55,365 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:15:55,393 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=52.188 +2025-10-02 01:15:55,479 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.188 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 01:15:55,479 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:15:55,479 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 125.242.75.181:65404 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:55221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54320 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:58000 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:56,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:56,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:56,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:15:56,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:15:56,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:56,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:57,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:57,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:57,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:15:57,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:15:57,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:57,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54321 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57800 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8461 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:57,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:57,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:57,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:15:57,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:15:57,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:57,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58001 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:58,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:58,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:58,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:15:58,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:15:58,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:58,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8462 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:15:58,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:15:58,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:15:58,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:15:58,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:15:58,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:15:58,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57801 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:02,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:02,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:03,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:16:03,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:16:03,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:03,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54326 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:58007 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:04,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:04,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:04,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:16:04,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:16:04,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:04,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:05,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:05,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:05,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:16:05,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:16:05,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:05,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58008 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:06,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:06,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:06,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:16:06,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:16:06,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:06,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:08,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:08,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:09,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:16:09,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:16:09,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:09,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54332 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:58012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:12,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:12,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:12,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:16:12,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:16:12,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:12,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:12,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:12,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:12,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:16:12,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:16:12,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:12,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54333 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:13,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:13,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:13,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:16:13,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:16:13,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:13,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56244 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:54338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:18,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:18,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:18,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:16:18,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:16:18,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:18,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54339 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:20,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:20,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:20,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:16:20,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:16:20,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:20,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58019 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:21,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:21,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:21,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:16:21,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:16:21,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:21,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58020 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:24,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:24,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:24,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:16:24,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:16:24,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:24,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54346 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57821 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:27,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:27,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:27,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:16:27,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:16:27,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:27,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57822 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55278 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:29,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:29,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:29,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:16:29,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:16:29,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:29,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55279 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58028 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52583 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:29,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:29,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:29,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:16:29,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:16:29,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:29,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52584 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:30,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:30,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:30,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:16:30,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:16:30,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:30,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58029 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:31,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:31,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:31,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:16:31,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:16:31,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:31,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51140 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54351 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55285 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:16:33,168 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:16:33,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:16:33,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 01:16:33,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +2025-10-02 01:16:33,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:16:33,485 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:54352 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55286 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:33,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:33,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:33,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:16:33,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:16:33,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:33,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57827 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:34,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:34,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:34,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:16:34,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:16:34,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:34,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:35,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:35,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:35,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:16:36,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:16:36,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:36,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52589 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58035 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:54228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:37,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:37,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:37,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:16:37,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:16:37,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:37,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58036 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55292 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:16:37,803 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:16:37,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:16:37,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 01:16:38,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 01:16:38,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:16:38,089 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:54229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55293 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57833 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:39,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:39,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:39,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:16:39,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:16:39,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:39,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54235 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54376 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52593 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55300 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:41,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:41,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:41,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:16:41,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:16:41,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:41,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52594 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:16:42,259 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:16:42,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:16:42,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 01:16:42,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 01:16:42,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:16:42,540 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:54377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54236 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:42,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:42,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:42,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:16:42,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:16:42,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:42,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55301 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51234 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.81.39.26:58042 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:44,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:44,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:44,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:16:44,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:16:44,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:44,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:45,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:45,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:45,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:16:45,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:16:45,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:45,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51165 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54268 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:46,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:46,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:46,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:16:46,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:16:46,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:46,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54271 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:47,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:47,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:47,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:16:47,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:16:47,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:47,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52599 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:48,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:48,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:48,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:16:48,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:16:48,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:48,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52600 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54298 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:49,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:49,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:49,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:16:49,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:16:49,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:49,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54301 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7356 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:52,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:52,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:52,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:16:52,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:16:52,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:52,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7357 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52605 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:58047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:53,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:53,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:53,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:16:53,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:16:53,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:53,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:53,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:53,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:53,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 01:16:53,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 01:16:53,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:53,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52606 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:54,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:54,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:54,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:16:54,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:16:54,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:54,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58048 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55325 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:55,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:55,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:55,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:16:55,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:16:55,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:55,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55326 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:56,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:56,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:56,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:16:56,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:16:56,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:56,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62704 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:56,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:56,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:56,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:16:56,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:16:56,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:56,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62705 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51192 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:57,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:57,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:57,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:16:57,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:16:57,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:57,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51193 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:16:58,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:16:58,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:16:58,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:16:58,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:16:58,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:16:58,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54325 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52610 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55335 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:00,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:00,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:00,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:17:00,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:17:00,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:00,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52611 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:01,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:01,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:01,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:17:01,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:17:01,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:01,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55336 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:02,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:02,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:02,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:17:02,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:17:02,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:02,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:03,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:03,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:03,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:03,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:03,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:03,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62710 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58054 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:04,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:04,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:04,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:17:05,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:17:05,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:05,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58055 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:05,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:05,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:05,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:17:05,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:17:05,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:05,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54339 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55347 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52615 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:06,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:06,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:06,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 01:17:06,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 01:17:06,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:06,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55348 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:07,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:07,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:07,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:17:07,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:17:07,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:07,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52616 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54346 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57845 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:08,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:08,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:08,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:17:08,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:17:08,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:08,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54347 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:17:08,973 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:17:08,996 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=71.084 +2025-10-02 01:17:09,078 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.084 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 01:17:09,079 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:17:09,079 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 221.154.208.144:57846 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:09,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:09,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:09,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:09,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:09,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:09,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55353 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:10,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:10,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:10,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:17:10,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:17:10,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:10,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55354 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55363 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52622 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37570 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:14,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:14,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:14,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 01:17:14,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 01:17:14,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:14,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55364 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:14,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:14,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:14,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:17:15,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:17:15,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:15,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:17:15,256 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:17:15,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:17:15,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:17:15,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:17:15,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:17:15,547 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:52623 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57852 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:16,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:16,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:16,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:17:16,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:17:16,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:16,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57853 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55382 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:19,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:19,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:19,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:17:19,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:17:19,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:19,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:20,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:20,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:20,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 01:17:20,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 01:17:20,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:20,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55383 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57857 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:21,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:21,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:21,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:17:21,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:17:21,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:21,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57858 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:22,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:22,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:22,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:22,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:22,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:22,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58068 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:24,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:24,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:24,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:17:24,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:17:24,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:24,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58069 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:24,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:24,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:24,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:17:25,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:17:25,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:25,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8503 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57868 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55398 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52637 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:29,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:29,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:29,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:17:29,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:17:29,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:29,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57869 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:17:29,632 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:17:29,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:17:29,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-02 01:17:29,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-02 01:17:29,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:17:29,941 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:52638 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55400 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:30,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:30,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:30,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:17:30,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:17:30,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:30,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8508 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58075 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:33,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:33,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:33,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:17:33,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:17:33,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:33,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58076 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55405 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:54368 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:33,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:33,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:33,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:33,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:33,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:33,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55406 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:33,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:33,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:33,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:17:34,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:17:34,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:34,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54369 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8512 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:35,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:35,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:35,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:17:35,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:17:35,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:35,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8513 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:35,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:35,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:35,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:17:35,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:17:35,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:35,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55412 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:37,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:37,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:37,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:17:37,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:17:37,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:37,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55413 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:17:38,418 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:17:38,450 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=77.317 +2025-10-02 01:17:38,536 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.317 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 01:17:38,536 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:17:38,536 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 125.242.75.181:65442 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:54378 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:39,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:39,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:39,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:17:40,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:17:40,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:40,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54379 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58083 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:40,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:40,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:40,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:17:40,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:17:40,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:40,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58084 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8517 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:41,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:41,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:41,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:17:41,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:17:41,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:41,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:41,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:41,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:41,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:41,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:41,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:41,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8518 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:42,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:42,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:42,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:17:43,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:17:43,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:43,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55424 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44294 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:54422 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:45,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:45,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:45,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:17:45,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:17:45,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:45,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54423 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54416 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:46,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:46,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:46,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:17:46,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:17:46,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:46,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52653 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8522 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:46,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:46,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:46,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:47,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:47,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:47,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54417 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58090 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:47,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:47,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:47,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:17:47,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:17:47,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:47,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8523 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:48,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:48,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:48,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:17:48,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:17:48,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:48,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58091 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55436 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:50,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:50,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:50,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:17:50,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:17:50,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:50,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55437 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:50,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:50,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:50,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:17:51,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:17:51,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:51,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51307 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:51,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:51,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:51,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:17:51,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:17:51,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:51,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8531 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:52,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:52,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:52,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:17:52,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:17:52,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:52,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8532 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52657 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:53,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:53,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:53,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:17:53,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:17:53,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:53,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52658 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:17:53,740 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:17:53,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:17:53,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 01:17:54,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-02 01:17:54,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:17:54,046 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:55444 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54424 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:54,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:54,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:54,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:17:55,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:17:55,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:55,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58097 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:55,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:55,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:55,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:17:55,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:17:55,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:55,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58098 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8536 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:57,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:57,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:57,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:17:57,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:17:57,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:57,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8537 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55451 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:58,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:58,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:58,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:17:58,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:17:58,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:58,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55452 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7373 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52663 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:58,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:58,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:59,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:17:59,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:17:59,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:59,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:17:59,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:17:59,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:17:59,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:17:59,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:17:59,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:17:59,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52664 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:17:59,583 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:17:59,606 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=63.572 +2025-10-02 01:17:59,684 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.572 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 01:17:59,684 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:17:59,684 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 118.41.33.196:7374 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:51330 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54429 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:00,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:00,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:00,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:18:00,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:18:00,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:00,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51331 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:01,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:01,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:01,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:18:01,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:18:01,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:01,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54430 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8541 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55461 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:02,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:02,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:02,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:18:02,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:18:02,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:02,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8542 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58102 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:02,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:02,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:02,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:18:02,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:18:02,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:02,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55462 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:02,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:02,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:02,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:18:02,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:18:02,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:02,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58103 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7379 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:18:03,807 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:18:03,839 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=123.032 +2025-10-02 01:18:03,915 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.032 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 01:18:03,915 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 01:18:03,915 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 118.41.33.196:7380 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:55468 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:05,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:05,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:05,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:18:05,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:18:05,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:05,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55469 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52668 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:05,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:05,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:05,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:18:05,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:18:05,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:05,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52669 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:06,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:06,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:06,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:18:06,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:18:06,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:06,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8546 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:07,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:07,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:07,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:18:07,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:18:07,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:07,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8547 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7384 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54434 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:18:08,511 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:18:08,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=150.933 +2025-10-02 01:18:08,604 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.933 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.071s +2025-10-02 01:18:08,605 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 01:18:08,605 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +INFO: 118.41.33.196:7385 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:55475 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:08,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:08,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:08,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:18:09,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:18:09,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:09,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54435 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54475 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:09,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:09,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:09,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:18:09,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:18:09,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:09,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55476 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:10,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:10,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:10,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:18:10,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:18:10,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:10,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:10,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:10,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:10,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:18:10,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:18:10,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:10,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54476 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52674 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:11,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:11,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:11,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:18:11,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:18:11,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:11,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:12,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:12,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:12,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:18:12,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:18:12,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:12,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52675 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8551 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:12,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:12,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:12,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:18:12,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:18:12,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:12,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8552 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48722 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:54484 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:15,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:15,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:15,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:18:15,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:18:15,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:15,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54485 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:15,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:15,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:15,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:18:15,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:18:15,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:15,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58116 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57892 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8556 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:18,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:18,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:18,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:18:18,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:18:18,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:18,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:18:18,727 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:18:18,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:18:18,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-02 01:18:19,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-02 01:18:19,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:18:19,042 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.81.39.26:58117 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57893 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54491 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:19,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:19,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:19,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:18:19,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:18:19,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:19,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8557 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:18:19,995 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:18:20,016 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=90.031 +2025-10-02 01:18:20,098 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.031 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 01:18:20,099 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:18:20,099 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 220.77.167.192:62719 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:20,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:20,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:20,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:18:20,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:18:20,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:20,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:18:20,503 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:18:20,521 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=93.317 +2025-10-02 01:18:20,604 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.317 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 01:18:20,604 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:18:20,604 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 39.112.59.88:54442 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:51370 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:21,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:21,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:21,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:18:21,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:18:21,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:21,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51371 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57899 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:22,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:22,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:22,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:18:22,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:18:22,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:22,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57900 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8561 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:24,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:24,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:24,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:18:25,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:18:25,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:25,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8562 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54500 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:25,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:25,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:25,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:18:25,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:18:25,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:25,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54502 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57906 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:25,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:25,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:26,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:18:26,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:18:26,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:26,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57907 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:27,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:27,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:27,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:18:27,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:18:27,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:27,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58124 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51381 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:27,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:27,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:27,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:18:27,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:18:27,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:27,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51384 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:29,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:29,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:29,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:18:29,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:18:29,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:29,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57912 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8566 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:54531 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:30,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:30,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:30,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:18:30,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:18:30,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:30,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8567 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:31,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:31,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:31,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:18:31,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:18:31,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:31,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54532 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:31,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:31,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:31,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:18:32,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:18:32,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:32,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52686 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:32,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:32,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:32,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:18:32,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:18:32,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:32,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52687 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:32,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:32,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:32,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:18:33,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:18:33,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:33,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54452 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51403 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57919 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:18:34,915 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:18:34,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:18:34,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-02 01:18:35,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.311s (avg: 0.156s/image) +2025-10-02 01:18:35,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:18:35,228 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:51406 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57920 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58130 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8571 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:35,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:35,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:35,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:18:35,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:18:35,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:35,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8572 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:35,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:35,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:35,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:18:36,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:18:36,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:36,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58131 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55511 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:55512 - "GET /health HTTP/1.1" 200 OK +INFO: 118.41.33.196:7401 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52691 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:37,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:37,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:37,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:18:37,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:18:37,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:37,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7402 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54577 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:37,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:37,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:37,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:18:37,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:18:37,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:37,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52692 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:38,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:38,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:38,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:18:38,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:18:38,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:38,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54578 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51428 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:39,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:39,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:39,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:18:39,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:18:39,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:39,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51429 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8576 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:18:40,002 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:18:40,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:18:40,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:18:40,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:18:40,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:18:40,293 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:57930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8577 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54456 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:40,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:40,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:40,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:18:41,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:18:41,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:41,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54457 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52696 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:41,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:41,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:41,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:18:41,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:18:41,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:41,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52697 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54585 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:42,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:42,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:42,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:18:42,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:18:42,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:42,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54586 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7409 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:58135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:43,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:43,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:43,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:18:43,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:18:43,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:43,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7410 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56392 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:44,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:44,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:44,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:18:44,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:18:44,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:44,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58136 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52701 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:44,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:44,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:44,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:18:45,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:18:45,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:45,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52702 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51435 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:45,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:45,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:45,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:18:45,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:18:45,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:45,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51436 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:45,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:45,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:45,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:18:45,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:18:45,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:45,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8582 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54593 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:47,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:47,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:47,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:18:47,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:18:47,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:47,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54594 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:48,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:48,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:48,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:18:48,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:18:48,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:48,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7415 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52707 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8586 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:58142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:50,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:50,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:50,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:18:50,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:18:50,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:50,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8587 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:51,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:51,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:51,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:18:51,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:18:51,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:51,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:51,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:51,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:51,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:18:51,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:18:51,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:51,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52708 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:18:51,865 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:18:51,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:18:51,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-02 01:18:52,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-02 01:18:52,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:18:52,175 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.81.39.26:58143 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7419 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:54606 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:18:54,875 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:18:54,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:18:54,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +2025-10-02 01:18:55,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.317s (avg: 0.158s/image) +2025-10-02 01:18:55,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:18:55,193 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:7420 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54607 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7424 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:51465 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:58,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:58,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:58,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:18:58,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:18:58,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:58,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51466 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:18:59,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:18:59,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:18:59,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:18:59,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:18:59,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:18:59,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7425 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52717 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:00,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:00,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:00,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:19:00,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:19:00,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:00,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57968 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58150 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:01,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:01,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:01,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:19:01,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:19:01,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:01,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52718 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:01,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:01,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:01,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:19:01,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:19:01,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:01,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:02,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:02,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:02,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:19:02,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:19:02,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:02,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51475 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:53790 - "GET /health HTTP/1.1" 200 OK +INFO: 211.226.69.49:53791 - "GET /health HTTP/1.1" 200 OK +INFO: 115.138.85.166:54620 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:53792 - "GET /health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:04,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:04,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:04,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 01:19:04,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 01:19:04,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:04,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54621 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57973 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52722 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7429 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:05,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:05,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:05,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 01:19:05,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 01:19:05,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:05,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57974 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54472 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:05,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:05,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:05,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:19:05,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:19:05,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:05,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52723 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:05,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:05,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:06,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:19:06,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:19:06,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:06,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7430 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:06,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:06,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:06,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:19:07,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:19:07,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:07,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54473 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55560 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:58157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:19:07,977 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:19:08,002 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=106.781 +2025-10-02 01:19:08,093 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.781 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 01:19:08,094 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 01:19:08,094 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 122.35.47.45:55561 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:08,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:08,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:08,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:19:08,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:19:08,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:08,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:57978 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:08,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:08,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:08,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:19:08,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:19:08,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:08,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:09,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:09,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:09,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:19:09,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:19:09,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:09,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57979 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7434 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52728 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:10,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:10,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:10,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:19:10,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:19:10,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:10,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7435 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:10,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:10,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:10,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:19:10,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:19:10,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:10,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52729 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:12,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:12,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:12,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:19:12,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:19:12,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:12,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:51493 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:12,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:12,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:12,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:19:12,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:19:12,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:12,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51494 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:13,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:13,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:13,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:19:13,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:19:13,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:13,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7439 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44836 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:62742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:14,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:14,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:14,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:19:14,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:19:14,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:14,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7440 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:14,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:14,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:14,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:19:14,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:19:14,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:14,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62743 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:15,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:15,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:15,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:19:15,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:19:15,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:15,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58165 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:16,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:16,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:16,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:19:17,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:19:17,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:17,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57988 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:17,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:17,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:17,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:19:17,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:19:17,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:17,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57989 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51505 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:18,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:18,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:18,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:19:18,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:19:18,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:18,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51506 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7444 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:19,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:19,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:19,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:19:19,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:19:19,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:19,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7445 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:57996 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54490 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:51526 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:22,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:22,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:22,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:19:22,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:19:22,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:22,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:57997 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:19:22,395 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:19:22,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:19:22,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:19:22,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 01:19:22,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:19:22,688 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:54491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51527 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:24,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:24,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:24,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:19:24,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:19:24,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:24,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52740 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58001 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:25,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:25,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:25,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:19:26,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:19:26,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:26,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58002 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7452 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62751 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:19:26,702 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:19:26,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:19:26,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-02 01:19:27,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-02 01:19:27,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:19:27,011 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:7453 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62752 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54496 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:51535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:19:27,969 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:19:27,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:19:28,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 01:19:28,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 01:19:28,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:19:28,259 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:54497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52746 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:29,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:29,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:29,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:19:29,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:19:29,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:29,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52747 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58006 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:30,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:30,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:30,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:19:30,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:19:30,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:30,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58007 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:32,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:32,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:32,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:19:32,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:19:32,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:32,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54503 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:51542 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:33,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:33,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:33,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:19:33,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:19:33,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:33,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:33,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:33,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:34,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:19:34,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:19:34,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:34,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51543 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58011 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:34,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:34,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:34,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:19:35,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:19:35,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:35,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58012 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:37,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:37,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:37,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:19:37,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:19:37,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:37,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:51549 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:39,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:39,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:39,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:19:39,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:19:39,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:39,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51550 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:40,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:40,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:40,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:19:40,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:19:40,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:40,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:41,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:41,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:41,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:19:41,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:19:41,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:41,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52758 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:41,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:41,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:41,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:19:41,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:19:41,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:41,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52759 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8621 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:19:43,297 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:19:43,321 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=132.141 +2025-10-02 01:19:43,414 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.141 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 01:19:43,414 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 01:19:43,416 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 175.119.234.181:8622 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:51554 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:43,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:43,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:43,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:19:43,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:19:43,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:43,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51555 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39712 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:55613 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:45,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:45,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:45,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:19:45,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:19:45,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:45,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55614 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52763 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:47,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:47,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:47,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:19:47,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:19:47,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:47,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52764 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51563 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:49,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:49,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:49,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:19:49,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:19:49,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:49,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51564 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8629 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62783 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:19:54,283 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:19:54,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:19:54,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:19:54,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 01:19:54,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:19:54,568 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:62784 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8630 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7470 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:55,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:55,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:55,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:19:55,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:19:55,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:55,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7471 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51570 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:56,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:56,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:56,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:19:56,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:19:56,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:56,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51571 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65491 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:19:57,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:19:57,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:19:57,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:19:57,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:19:57,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:19:57,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:65492 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51589 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62795 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:03,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:03,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:03,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:20:03,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:20:03,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:03,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51590 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:03,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:03,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:03,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:20:03,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:20:03,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:03,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62796 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8637 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:20:05,378 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:20:05,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:20:05,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:20:05,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 01:20:05,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:20:05,662 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8638 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:06,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:06,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:06,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:20:06,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:20:06,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:06,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51632 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:07,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:07,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:07,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:20:07,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:20:07,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:07,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51633 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:11,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:11,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:11,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:20:11,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:20:11,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:11,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51637 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:65502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:13,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:13,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:13,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:20:13,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:20:13,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:13,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51638 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36454 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:14,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:14,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:14,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:20:14,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:20:14,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:14,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:65503 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:19,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:19,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:19,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:20:19,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:20:19,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:19,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:20,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:20,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:20,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:20:21,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:20:21,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:21,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:65508 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:51647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:24,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:24,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:24,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:20:24,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:20:24,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:24,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:25,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:25,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:25,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:20:25,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:20:25,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:25,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:65512 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:20:27,795 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:20:27,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:20:27,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:20:28,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 01:20:28,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:20:28,088 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 125.242.75.181:65513 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:20:28,479 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:20:28,504 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=79.437 +2025-10-02 01:20:28,589 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.437 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 01:20:28,589 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:20:28,589 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 122.35.47.45:55699 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:52798 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:51655 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:29,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:29,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:29,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:20:29,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:20:29,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:29,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52799 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:29,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:29,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:29,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:20:30,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:20:30,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:30,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51656 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:53841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:32,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:32,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:32,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:20:32,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:20:32,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:32,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8653 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:32,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:32,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:32,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:20:32,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:20:32,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:32,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:53842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55557 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:33,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:33,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:33,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:20:34,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:20:34,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:34,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55558 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52803 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:65518 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:34,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:34,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:34,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:20:34,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:20:34,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:34,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52804 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:34,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:34,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:34,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:20:35,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:20:35,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:35,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:65519 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:35,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:35,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:35,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:20:36,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:20:36,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:36,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51663 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55565 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:39,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:39,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:39,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:20:39,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:20:39,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:39,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55566 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:20:40,104 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:20:40,130 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=52.417 +2025-10-02 01:20:40,201 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.417 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.070s +2025-10-02 01:20:40,201 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-02 01:20:40,201 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +INFO: 221.154.208.144:58065 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:52808 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:40,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:40,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:41,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:20:41,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:20:41,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:41,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52809 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51670 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:42,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:42,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:42,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:20:42,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:20:42,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:42,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51671 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55573 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:43,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:43,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:43,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:20:43,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:20:43,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:43,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55574 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42248 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:52813 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:65523 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:46,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:46,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:46,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:20:46,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:20:46,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:46,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52814 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:20:47,443 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:20:47,474 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=86.371 +2025-10-02 01:20:47,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.371 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 01:20:47,549 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 01:20:47,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 125.242.75.181:65524 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:55581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:48,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:48,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:48,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:20:48,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:20:48,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:48,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55583 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58178 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:52,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:52,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:52,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:20:52,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:20:52,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:52,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58179 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8680 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55595 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:55,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:55,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:55,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:20:56,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:20:56,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:56,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8681 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:20:56,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:20:56,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:20:56,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:20:56,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:20:56,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:20:56,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55596 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:65534 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:00,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:00,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:00,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:21:00,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:21:00,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:00,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:00,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:00,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:00,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:21:00,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:21:00,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:00,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:21:01,589 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:21:01,615 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=80.275 +2025-10-02 01:21:01,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.275 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 01:21:01,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 01:21:01,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 118.41.33.196:7493 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:55609 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:04,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:04,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:04,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:21:04,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:21:04,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:04,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55610 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:04,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:04,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:04,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:21:05,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:21:05,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:05,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:21:05,888 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:21:05,921 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=29.280 +2025-10-02 01:21:06,002 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.280 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 01:21:06,003 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:21:06,003 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 118.41.33.196:7498 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.81.39.26:58192 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:49156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:07,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:07,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:07,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:21:07,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:21:07,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:07,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58193 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:08,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:08,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:08,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:21:08,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:21:08,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:08,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55617 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:08,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:08,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:08,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:21:08,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:21:08,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:08,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55618 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:21:09,485 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:21:09,516 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=134.765 +2025-10-02 01:21:09,601 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.765 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 01:21:09,601 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:21:09,601 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 118.41.33.196:7503 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:55772 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:21:10,139 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:21:10,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:21:10,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-02 01:21:10,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-02 01:21:10,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:21:10,449 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8699 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55773 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52827 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:11,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:11,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:11,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:21:11,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:21:11,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:11,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52828 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40450 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:8703 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:14,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:14,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:14,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:21:14,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:21:14,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:14,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8704 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54551 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:21:18,558 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:21:18,589 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=50.289 +2025-10-02 01:21:18,665 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.289 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 01:21:18,665 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 01:21:18,666 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 39.112.59.88:54552 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.81.39.26:58197 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52832 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58094 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:19,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:19,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:19,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:21:19,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:21:19,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:19,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58198 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:19,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:19,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:19,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:21:19,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:21:19,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:19,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52833 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:19,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:19,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:19,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:21:20,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:21:20,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:20,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58095 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:24,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:24,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:24,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:21:24,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:21:24,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:24,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58100 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51741 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:30,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:30,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:30,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:21:30,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:21:30,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:30,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51742 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7512 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:34,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:34,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:34,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:21:34,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:21:34,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:34,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7513 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55820 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:36,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:36,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:36,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:21:36,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:21:36,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:36,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55821 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:36,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:36,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:36,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:21:36,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:21:36,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:36,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55827 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:41,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:41,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:41,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:21:41,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:21:41,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:41,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55828 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7517 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:41,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:41,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:41,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:21:41,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:21:41,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:41,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7518 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58514 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:55839 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:46,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:46,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:46,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:21:46,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:21:46,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:46,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55840 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:46,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:46,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:46,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:21:46,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:21:46,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:46,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58212 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7522 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:47,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:47,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:47,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:21:47,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:21:47,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:47,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7523 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55766 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:48,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:48,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:48,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:21:48,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:21:48,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:48,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55767 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54573 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:49,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:49,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:49,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:21:49,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:21:49,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:49,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54574 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:51781 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:21:52,666 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:21:52,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:21:52,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.335s +2025-10-02 01:21:53,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.335s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.335s (avg: 0.167s/image) +2025-10-02 01:21:53,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.335s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:21:53,002 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.81.39.26:58219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7527 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:53,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:53,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:53,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:21:53,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:21:53,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:53,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7528 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:21:54,107 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:21:54,130 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=60.362 +2025-10-02 01:21:54,210 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.362 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 01:21:54,210 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 01:21:54,210 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 125.242.75.181:49181 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:54582 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:57,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:57,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:57,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:21:57,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:21:57,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:21:57,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54583 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55852 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52873 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55795 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:21:58,928 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:21:58,944 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=49.872 +2025-10-02 01:21:59,021 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.872 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 01:21:59,022 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:21:59,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 122.35.47.45:55853 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:21:59,150 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:21:59,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:21:59,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 01:21:59,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 01:21:59,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:21:59,431 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:52874 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55796 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:21:59,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:21:59,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:21:59,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:22:00,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:22:00,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:00,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58226 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52878 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:04,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:04,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:04,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:22:04,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:22:04,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:04,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52879 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:04,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:04,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:04,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:22:04,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:22:04,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:04,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51795 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55846 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:05,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:05,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:05,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:22:05,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:22:05,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:05,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51796 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:06,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:06,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:06,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:22:06,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:22:06,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:06,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55847 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:06,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:06,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:06,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:22:07,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:22:07,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:07,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58238 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:08,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:08,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:08,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:22:08,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:22:08,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:08,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58239 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51803 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55868 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7540 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:22:11,636 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:22:11,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:22:11,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:22:11,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:22:11,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:22:11,919 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:55869 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7541 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:12,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:12,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:12,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:22:12,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:22:12,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:12,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51804 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44486 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.81.39.26:58243 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:14,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:14,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:14,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:22:14,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:22:14,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:14,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58244 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7545 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:16,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:16,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:16,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:22:16,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:22:16,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:16,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7546 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51811 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55877 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55860 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:19,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:19,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:20,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:22:20,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:22:20,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:20,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51812 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:22:20,328 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:22:20,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:22:20,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 01:22:20,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 01:22:20,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:22:20,621 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:55862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55879 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:22,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:22,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:22,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:22:22,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:22:22,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:22,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55870 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7557 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55893 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:26,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:26,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:26,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:22:26,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:22:26,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:26,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55871 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:26,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:26,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:26,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:22:26,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:22:26,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:26,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7558 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:26,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:26,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:26,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:22:27,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:22:27,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:27,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55894 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51843 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55878 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:30,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:30,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:30,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:22:30,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:22:30,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:30,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51844 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:31,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:31,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:31,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:22:31,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:22:31,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:31,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55879 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:33,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:33,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:33,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:22:34,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:22:34,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:34,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7563 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51850 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:36,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:36,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:36,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:22:36,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:22:36,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:36,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51851 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55888 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:38,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:38,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:38,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:22:38,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:22:38,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:38,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55889 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7567 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:39,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:39,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:39,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:22:39,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:22:39,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:39,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7568 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51857 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:40,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:40,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:40,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:22:40,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:22:40,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:40,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51858 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:42,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:42,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:42,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:22:42,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:22:42,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:42,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55896 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:43,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:43,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:43,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:22:44,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:22:44,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:44,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55898 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42464 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:58182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:44,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:44,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:44,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:22:45,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:22:45,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:45,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51865 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:47,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:47,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:47,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:22:47,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:22:47,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:47,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51866 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54634 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:50,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:50,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:50,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:22:50,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:22:50,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:50,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54635 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:51,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:51,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:51,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:22:51,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:22:51,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:51,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:53,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:53,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:53,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:22:53,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:22:53,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:53,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7582 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55914 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:22:55,013 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:22:55,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:22:55,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-02 01:22:55,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-02 01:22:55,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:22:55,320 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:55915 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:56,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:56,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:56,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:22:56,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:22:56,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:56,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58197 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55960 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7586 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:22:59,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:22:59,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:22:59,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:22:59,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:22:59,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:22:59,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:23:00,087 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:23:00,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:23:00,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 01:23:00,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 01:23:00,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:23:00,372 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:55962 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7587 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58203 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:04,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:04,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:04,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:23:05,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:23:05,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:05,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58204 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55989 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:06,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:06,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:06,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:23:06,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:23:06,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:06,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:06,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:06,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:06,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:23:06,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:23:06,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:06,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55991 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58286 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:08,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:08,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:08,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:23:08,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:23:08,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:08,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58287 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8729 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:55955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:09,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:09,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:09,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:23:09,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:23:09,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:09,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8730 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:10,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:10,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:10,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:23:10,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:23:10,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:10,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58209 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:12,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:12,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:12,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:23:12,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:23:12,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:12,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58210 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37844 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:51927 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8734 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:56004 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:15,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:15,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:15,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:23:15,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:23:15,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:15,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55963 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:15,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:15,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:15,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:23:15,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:23:15,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:15,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51928 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:23:15,651 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:23:15,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:23:15,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-02 01:23:15,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-02 01:23:15,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:23:15,927 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8735 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56006 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:18,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:18,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:18,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:23:18,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:23:18,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:18,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58297 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58217 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:19,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:19,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:19,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:23:19,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:23:19,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:19,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58218 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:20,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:20,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:20,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:23:20,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:23:20,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:20,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8740 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56013 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:49222 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:21,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:21,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:21,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:23:21,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:23:21,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:21,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56015 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:23:21,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:23:21,548 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=90.542 +2025-10-02 01:23:21,627 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.542 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 01:23:21,627 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:23:21,628 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 125.242.75.181:49223 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:21,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:21,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:21,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:23:22,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:23:22,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:22,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:23,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:23,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:23,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:23:23,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:23:23,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:23,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58304 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:51939 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:24,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:24,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:24,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:23:24,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:23:24,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:24,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:51940 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:25,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:25,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:25,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:23:25,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:23:25,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:25,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58224 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8744 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:26,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:26,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:26,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:23:27,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:23:27,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:27,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8745 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58308 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:56028 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:30,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:30,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:30,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:23:30,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:23:30,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:30,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58309 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:55989 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:30,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:30,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:30,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:23:31,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:23:31,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:31,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56029 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:31,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:31,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:31,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:23:31,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:23:31,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:31,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:55990 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58229 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:31,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:31,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:32,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:23:32,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:23:32,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:32,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58230 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8749 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:33,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:33,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:33,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:23:33,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:23:33,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:33,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8750 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:35,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:35,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:35,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:23:35,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:23:35,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:35,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:58315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:36,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:36,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:36,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:23:36,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:23:36,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:36,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:36,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:36,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:36,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:23:36,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:23:36,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:36,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8755 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:38,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:38,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:38,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:23:38,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:23:38,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:38,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8756 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:56003 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58238 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:23:39,076 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:23:39,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:23:39,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 01:23:39,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 01:23:39,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:23:39,373 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:56004 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52940 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:40,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:40,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:40,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:23:40,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:23:40,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:40,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:41,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:41,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:41,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:23:41,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:23:41,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:41,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58322 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:23:42,410 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:23:42,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:23:42,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 01:23:42,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 01:23:42,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:23:42,704 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58323 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:56010 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:43,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:43,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:43,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:23:43,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:23:43,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:43,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:56011 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58248 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35034 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:44,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:44,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:44,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:23:44,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:23:44,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:44,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58249 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52945 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:23:46,358 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:23:46,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:23:46,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 01:23:46,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 01:23:46,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:23:46,653 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:56088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52946 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8774 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:47,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:47,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:47,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:23:47,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:23:47,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:47,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8775 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:48,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:48,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:48,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:23:48,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:23:48,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:48,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:56023 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:49,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:49,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:49,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:23:49,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:23:49,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:49,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:56024 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56116 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:50,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:50,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:50,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:23:50,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:23:50,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:50,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56117 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:52,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:52,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:52,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:23:52,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:23:52,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:52,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8780 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:58334 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:56035 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:23:52,799 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:23:52,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:23:52,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:23:53,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 01:23:53,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:23:53,091 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8781 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58335 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:53,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:53,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:53,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:23:53,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:23:53,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:53,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:56036 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:56043 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:23:57,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:23:57,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:23:57,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:23:57,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:23:57,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:23:57,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:56044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:02,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:02,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:02,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:24:02,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:24:02,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:02,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58346 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8793 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:06,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:06,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:07,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:24:07,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:24:07,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:07,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8794 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:07,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:07,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:07,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:24:07,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:24:07,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:07,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52963 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8799 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:12,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:12,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:12,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:24:12,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:24:12,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:12,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52964 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:24:13,093 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:24:13,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=56.868 +2025-10-02 01:24:13,194 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.868 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 01:24:13,194 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 01:24:13,194 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 221.154.208.144:58261 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:13,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:13,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:13,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:24:13,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:24:13,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:13,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8800 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49416 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.81.39.26:58355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:15,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:15,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:15,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:24:15,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:24:15,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:15,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52968 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:16,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:16,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:16,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:24:17,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:24:17,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:17,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52969 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7600 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:24:18,125 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:24:18,155 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=181.924 +2025-10-02 01:24:18,226 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.924 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.071s +2025-10-02 01:24:18,227 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 01:24:18,227 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +INFO: 118.41.33.196:7601 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:8804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58265 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:24:18,728 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:24:18,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:24:18,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 01:24:19,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 01:24:19,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:24:19,014 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8805 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58266 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:21,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:21,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:21,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:24:21,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:24:21,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:21,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52973 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:21,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:21,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:21,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:24:21,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:24:21,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:21,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52974 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7605 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:24:23,033 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:24:23,062 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=122.345 +2025-10-02 01:24:23,144 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.345 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 01:24:23,144 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:24:23,144 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 118.41.33.196:7606 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:8809 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58272 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:24,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:24,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:24,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:24:25,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:24:25,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:25,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8810 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:25,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:25,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:25,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:24:25,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:24:25,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:25,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52978 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:49264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:25,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:25,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:25,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:24:25,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:24:25,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:25,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52979 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:26,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:26,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:26,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:24:26,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:24:26,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:26,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49265 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7610 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:24:27,443 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:24:27,474 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=157.839 +2025-10-02 01:24:27,545 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.839 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.070s +2025-10-02 01:24:27,546 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 01:24:27,546 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +INFO: 118.41.33.196:7611 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:56074 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:56075 - "GET /health HTTP/1.1" 200 OK +INFO: 220.127.236.236:52983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54671 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:28,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:28,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:28,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:24:28,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:24:28,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:28,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:29,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:29,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:29,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:24:29,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:24:29,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:29,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54672 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:29,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:29,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:29,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:24:29,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:24:29,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:29,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8814 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:31,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:31,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:31,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:24:31,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:24:31,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:31,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:31,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:31,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:31,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 01:24:31,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 01:24:31,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:31,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8815 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58372 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:31,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:31,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:31,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:24:31,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:24:31,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:31,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56254 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:52990 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:33,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:33,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:33,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:24:33,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:24:33,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:33,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52991 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49270 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54676 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:24:34,730 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:24:34,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:24:34,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-02 01:24:35,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.311s (avg: 0.156s/image) +2025-10-02 01:24:35,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:24:35,043 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 125.242.75.181:49271 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56257 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:35,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:35,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:35,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:24:35,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:24:35,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:35,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54677 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:52995 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:36,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:36,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:36,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:24:36,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:24:36,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:36,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:52996 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8821 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:37,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:37,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:37,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:24:37,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:24:37,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:37,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8822 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:39,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:39,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:39,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:24:39,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:24:39,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:39,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56329 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58380 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:40,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:40,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:40,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:24:40,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:24:40,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:40,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58381 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53000 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:41,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:41,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:41,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:24:41,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:24:41,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:41,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53001 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54682 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:43,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:43,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:43,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:24:43,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:24:43,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:43,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54683 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:49275 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:43,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:43,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:43,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:24:43,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:24:43,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:43,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53006 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39302 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:44,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:44,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:44,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:24:44,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:24:44,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:44,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49276 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:44,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:44,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:44,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:24:44,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:24:44,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:44,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8827 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58387 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:45,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:45,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:45,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:24:45,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:24:45,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:45,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58388 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53010 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:47,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:47,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:47,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:24:47,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:24:47,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:47,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53011 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:53966 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:48,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:48,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:48,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:24:48,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:24:48,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:48,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:53967 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53015 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:50,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:50,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:50,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:24:50,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:24:50,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:50,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53016 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58394 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54688 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:50,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:50,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:50,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:24:50,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:24:50,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:50,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58395 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:50,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:50,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:50,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:24:50,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:24:50,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:50,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54689 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49281 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:51,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:51,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:51,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:24:51,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:24:51,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:51,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49282 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8831 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:52,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:52,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:52,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:24:52,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:24:52,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:52,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8832 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7620 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:52,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:52,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:52,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:24:52,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:24:52,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:52,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7621 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53021 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:53973 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:24:54,397 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:24:54,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:24:54,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 01:24:54,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-02 01:24:54,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:24:54,692 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53022 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:53974 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58399 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:57,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:57,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:57,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:24:57,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:24:57,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:57,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58400 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54695 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:57,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:57,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:57,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:24:57,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:24:57,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:57,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8837 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:58,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:58,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:58,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:24:58,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:24:58,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:58,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54696 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49286 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:24:59,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:24:59,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:24:59,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:24:59,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:24:59,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:24:59,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49287 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7625 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:56766 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:02,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:02,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:02,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:25:02,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:25:02,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:02,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:03,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:03,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:03,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:25:03,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:25:03,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:03,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56768 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52103 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54701 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:49292 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:07,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:07,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:07,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:25:08,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:25:08,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:08,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52104 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:25:08,320 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:25:08,338 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=1.518 +2025-10-02 01:25:08,424 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=1.518 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 01:25:08,424 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:25:08,424 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 39.112.59.88:54702 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:08,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:08,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:08,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:25:08,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:25:08,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:08,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49293 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:53995 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:09,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:09,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:09,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:25:09,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:25:09,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:09,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:53996 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52896 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.81.39.26:58414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:14,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:14,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:15,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:25:15,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:25:15,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:15,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58415 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54002 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:15,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:15,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:15,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:25:15,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:25:15,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:15,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54003 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58308 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:56946 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:17,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:17,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:17,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:25:17,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:25:17,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:17,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58309 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:17,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:17,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:17,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:25:17,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:25:17,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:17,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56947 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54710 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:49297 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:19,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:19,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:19,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:25:19,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:25:19,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:19,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54711 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:25:19,334 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:25:19,351 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=34.188 +2025-10-02 01:25:19,435 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.188 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 01:25:19,435 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:25:19,437 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 125.242.75.181:49298 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:58316 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:22,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:22,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:22,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:25:22,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:25:22,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:22,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58317 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:23,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:23,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:23,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:25:23,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:25:23,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:23,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49302 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:24,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:24,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:24,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:25:24,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:25:24,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:24,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49303 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58321 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:25,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:25,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:25,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:25:25,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:25:25,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:25,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58322 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:27,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:27,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:27,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:25:27,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:25:27,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:27,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58326 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:28,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:28,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:28,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:25:29,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:25:29,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:29,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54019 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:29,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:29,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:29,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:25:30,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:25:30,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:30,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54020 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57001 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:31,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:31,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:31,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:25:31,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:25:31,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:31,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57002 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:32,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:32,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:32,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:25:33,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:25:33,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:33,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57007 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:33,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:33,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:33,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:25:33,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:25:33,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:33,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57008 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58336 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:35,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:35,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:35,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:25:36,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:25:36,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:36,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58337 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54031 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:37,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:37,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:37,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:25:37,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:25:37,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:37,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54032 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7638 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57015 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:25:37,942 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:25:37,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:25:37,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 01:25:38,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 01:25:38,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:25:38,222 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:7639 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57017 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58341 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:40,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:40,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:40,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:25:40,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:25:40,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:40,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58342 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:41,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:41,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:41,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:25:41,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:25:41,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:41,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57023 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:54036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:42,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:42,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:42,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:25:42,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:25:42,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:42,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57024 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:42,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:42,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:42,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:25:42,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:25:42,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:42,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52178 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:43,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:43,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:43,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:25:43,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:25:43,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:43,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52179 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:44,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:44,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:44,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:25:44,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:25:44,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:44,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54982 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:54728 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:45,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:45,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:45,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:25:45,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:25:45,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:45,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54729 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57034 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:46,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:46,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:46,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:25:46,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:25:46,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:46,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57035 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:47,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:47,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:47,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:25:48,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:25:48,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:48,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7646 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:49,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:49,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:49,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:25:49,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:25:49,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:49,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7647 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54734 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:49,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:49,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:49,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:25:50,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:25:50,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:50,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54735 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53056 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:50,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:50,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:50,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:25:50,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:25:50,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:50,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53057 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:51,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:51,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:52,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:25:52,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:25:52,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:52,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57042 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:52,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:52,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:52,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:25:52,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:25:52,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:52,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:53,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:53,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:53,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:25:53,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:25:53,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:53,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52197 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:25:53,926 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:25:53,946 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=75.958 +2025-10-02 01:25:54,056 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.958 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.109s +2025-10-02 01:25:54,056 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-02 01:25:54,058 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +INFO: 175.119.234.181:8849 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:54740 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:54,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:54,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:54,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:25:55,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:25:55,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:55,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54741 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:25:55,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:25:55,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:25:55,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:25:55,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:25:55,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:25:55,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54052 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54749 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58371 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:00,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:00,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:00,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:26:01,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:26:01,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:01,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58372 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:26:01,242 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:26:01,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:26:01,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:26:01,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:26:01,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:26:01,526 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54750 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:01,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:01,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:01,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:26:01,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:26:01,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:01,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54053 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57060 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:02,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:02,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:02,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:26:02,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:26:02,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:02,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57061 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58376 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:03,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:03,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:03,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:26:03,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:26:03,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:03,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54059 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:06,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:06,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:06,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-02 01:26:06,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-02 01:26:06,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:06,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54060 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58381 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:07,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:07,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:07,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:26:07,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:26:07,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:07,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58382 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54758 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58386 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:10,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:10,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:10,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:26:10,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:26:10,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:10,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58387 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:10,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:10,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:10,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:26:10,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:26:10,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:10,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54759 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57080 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8860 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:11,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:11,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:11,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:26:11,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:26:11,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:11,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57082 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:11,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:11,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:11,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:26:11,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:26:11,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:11,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8861 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7661 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:12,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:12,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:12,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:26:12,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:26:12,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:12,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7662 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:13,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:13,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:13,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:26:13,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:26:13,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:13,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:14,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:14,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:14,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:26:14,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:26:14,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:14,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58396 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43082 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:54764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57090 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58400 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7666 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:18,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:18,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:18,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 01:26:18,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 01:26:18,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:18,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:18,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:18,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:18,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:26:18,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:26:18,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:18,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57092 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:18,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:18,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:18,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:26:19,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:26:19,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:19,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58401 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:19,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:19,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:19,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:26:19,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:26:19,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:19,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7667 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8865 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:54072 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:20,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:20,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:20,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:26:20,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:26:20,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:20,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54073 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:20,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:20,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:20,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:26:20,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:26:20,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:20,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8866 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7671 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58406 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57126 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:26:23,140 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:26:23,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:26:23,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:26:23,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 01:26:23,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:26:23,432 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:58407 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7672 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:23,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:23,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:23,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:26:23,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:26:23,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:23,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57127 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:25,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:25,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:25,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:26:25,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:26:25,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:25,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54079 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:26,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:26,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:26,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:26:26,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:26:26,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:26,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54080 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7676 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:27,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:27,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:27,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:26:28,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:26:28,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:28,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7677 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:28,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:28,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:28,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:26:28,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:26:28,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:28,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:56242 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:26:32,698 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:26:32,723 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=86.188 +2025-10-02 01:26:32,812 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.188 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 01:26:32,813 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 01:26:32,815 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 122.35.47.45:56243 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:54084 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54778 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:33,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:33,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:33,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:26:33,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:26:33,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:33,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54085 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:33,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:33,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:33,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:26:33,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:26:33,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:33,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54779 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:34,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:34,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:34,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:26:34,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:26:34,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:34,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7684 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:34,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:34,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:34,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:26:35,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:26:35,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:35,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57261 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8873 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:56249 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:38,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:38,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:38,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 01:26:38,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 01:26:38,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:38,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8874 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:38,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:38,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:38,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:26:38,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:26:38,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:38,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:56250 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7688 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:39,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:39,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:39,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:26:39,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:26:39,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:39,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7689 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8878 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:43,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:43,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:43,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:26:43,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:26:43,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:43,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8879 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:43,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:43,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:43,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:26:43,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:26:43,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:43,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54805 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:44,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:44,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:44,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:26:44,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:26:44,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:44,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40098 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:52263 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:47,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:47,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:47,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:26:47,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:26:47,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:47,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52264 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54813 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:26:51,964 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:26:51,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:26:52,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:26:52,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:26:52,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:26:52,255 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:54814 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:56273 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:52,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:52,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:52,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:26:52,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:26:52,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:52,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:56274 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:53,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:53,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:53,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:26:53,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:26:53,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:53,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7699 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8893 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:26:56,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:26:56,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:26:56,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:26:56,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:26:56,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:26:56,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8894 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53138 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:02,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:02,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:02,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:27:02,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:27:02,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:02,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53139 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:05,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:05,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:05,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:27:05,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:27:05,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:05,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54831 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53143 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:49349 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:06,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:06,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:06,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:27:06,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:27:06,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:06,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53144 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:27:07,020 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:27:07,039 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=130.014 +2025-10-02 01:27:07,117 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.014 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 01:27:07,117 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:27:07,117 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 125.242.75.181:49350 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:54835 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:09,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:09,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:09,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:27:09,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:27:09,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:09,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54836 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53149 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:10,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:10,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:10,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:27:10,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:27:10,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:10,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53150 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54840 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:13,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:13,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:13,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:27:14,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:27:14,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:14,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54841 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41828 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:53154 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:14,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:14,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:14,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:27:15,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:27:15,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:15,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53155 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54845 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:18,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:18,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:18,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:27:18,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:27:18,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:18,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54846 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:19,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:19,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:19,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 01:27:19,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 01:27:19,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:19,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52311 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:21,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:21,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:21,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:27:21,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:27:21,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:21,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53160 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54854 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:27:25,314 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:27:25,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:27:25,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 01:27:25,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-02 01:27:25,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:27:25,613 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54855 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:25,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:25,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:25,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:27:25,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:27:25,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:25,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53165 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8921 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:28,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:28,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:28,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:27:28,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:27:28,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:28,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8922 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54862 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:29,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:29,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:30,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:27:30,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:27:30,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:30,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:30,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:30,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:30,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:27:30,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:27:30,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:30,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54863 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:34,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:34,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:34,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:27:34,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:27:34,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:34,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53177 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:39,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:39,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:39,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:27:39,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:27:39,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:39,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57442 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:27:39,905 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:27:39,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:27:39,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-02 01:27:40,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-02 01:27:40,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:27:40,177 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58467 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54878 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:42,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:42,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:42,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:27:42,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:27:42,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:42,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58468 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:42,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:42,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:42,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:27:43,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:27:43,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:43,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54879 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53188 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:44,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:44,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:44,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:27:44,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:27:44,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:44,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53189 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36066 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:57450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:45,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:45,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:45,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:27:45,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:27:45,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:45,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8944 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:46,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:46,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:46,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:27:46,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:27:46,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:46,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8945 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8949 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58476 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:27:49,626 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:27:49,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:27:49,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 01:27:49,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 01:27:49,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:27:49,916 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:58477 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8950 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8954 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:53,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:53,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:53,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:27:53,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:27:53,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:53,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8955 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57465 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:54,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:54,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:54,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:27:54,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:27:54,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:54,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57466 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:56,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:56,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:56,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:27:56,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:27:56,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:56,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58482 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53194 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:59,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:59,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:59,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:27:59,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:27:59,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:27:59,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57475 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:27:59,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:27:59,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:27:59,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:28:00,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:28:00,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:00,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53195 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58486 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:02,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:02,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:02,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:28:02,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:28:02,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:02,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58487 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:04,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:04,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:05,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:28:05,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:28:05,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:05,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:07,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:07,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:07,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 01:28:07,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 01:28:07,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:07,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:08,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:08,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:08,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:28:08,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:28:08,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:08,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53205 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57521 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:10,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:10,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:10,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:28:10,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:28:10,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:10,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57523 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:13,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:13,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:13,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:28:13,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:28:13,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:13,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53212 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8982 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:14,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:14,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:14,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:28:14,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:28:14,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:14,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8983 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53330 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:58499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:14,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:14,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:14,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:28:15,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:28:15,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:15,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58500 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57557 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:18,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:18,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:18,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:28:18,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:28:18,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:18,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8988 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:28:18,448 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:28:18,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:28:18,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 01:28:18,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-02 01:28:18,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:28:18,716 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:57558 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8989 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58504 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:19,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:19,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:19,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:28:19,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:28:19,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:19,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58505 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8993 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:20,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:20,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:20,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:28:21,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:28:21,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:21,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8994 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52419 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:21,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:21,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:21,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:28:21,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:28:21,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:21,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52420 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:22,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:22,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:22,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:28:22,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:28:22,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:22,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58510 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:23,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:23,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:24,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:28:24,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:28:24,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:24,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58511 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57571 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:25,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:25,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:25,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:28:25,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:28:25,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:25,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57572 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8998 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:54135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58515 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:28:28,198 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:28:28,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:28:28,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 01:28:28,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +2025-10-02 01:28:28,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:28:28,515 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53227 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54136 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:28:28,691 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:28:28,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:28:28,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 01:28:28,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-02 01:28:28,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:28:28,961 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8999 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58516 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9003 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:31,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:31,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:31,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:28:31,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:28:31,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:31,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9004 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53231 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:56351 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:28:32,512 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:28:32,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:28:32,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 01:28:32,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-02 01:28:32,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:28:32,810 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53232 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:56352 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9008 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:35,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:35,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:35,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:28:35,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:28:35,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:35,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9009 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:56362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:36,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:36,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:36,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:28:37,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:28:37,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:37,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:56363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53236 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:52449 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9018 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:28:38,848 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:28:38,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:28:38,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 01:28:39,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 01:28:39,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:28:39,147 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53237 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9020 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:39,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:39,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:39,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:28:39,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:28:39,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:39,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52450 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9028 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:42,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:42,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:42,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:28:43,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:28:43,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:43,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9029 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54913 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:43,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:43,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:43,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:28:44,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:28:44,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:44,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53243 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:44,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:44,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:44,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:28:44,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:28:44,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:44,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54914 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36544 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:9033 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:45,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:45,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:45,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:28:45,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:28:45,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:45,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9034 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:47,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:47,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:47,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:28:47,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:28:47,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:47,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57597 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:49412 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:50,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:50,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:50,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:28:50,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:28:50,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:50,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54919 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:28:50,472 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:28:50,492 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=108.876 +2025-10-02 01:28:50,577 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.876 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 01:28:50,577 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:28:50,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 125.242.75.181:49413 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:51,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:51,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:51,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:28:51,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:28:51,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:51,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54920 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:52,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:52,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:52,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:28:52,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:28:52,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:52,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58503 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:54,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:54,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:54,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:28:54,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:28:54,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:54,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7714 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:28:56,264 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:28:56,313 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=50.809 +2025-10-02 01:28:56,399 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.809 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 01:28:56,400 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 01:28:56,402 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 118.41.33.196:7715 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:54924 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:57,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:57,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:57,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:28:57,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:28:57,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:57,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54925 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58510 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:28:58,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:28:58,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:28:58,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:28:58,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:28:58,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:28:58,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58511 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58530 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7720 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:29:00,194 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:29:00,219 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=60.029 +2025-10-02 01:29:00,307 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.029 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 01:29:00,307 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 01:29:00,308 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 221.154.208.144:58531 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:29:00,878 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:29:00,909 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=158.879 +2025-10-02 01:29:01,002 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.879 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 01:29:01,002 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 01:29:01,003 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 118.41.33.196:7721 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:53261 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54930 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:02,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:02,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:02,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:29:02,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:29:02,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:02,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53262 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:03,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:03,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:03,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:29:03,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:29:03,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:03,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54931 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:29:05,162 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:29:05,184 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=76.945 +2025-10-02 01:29:05,276 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.945 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 01:29:05,276 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 01:29:05,277 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 118.41.33.196:7726 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:58537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:05,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:05,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:05,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:29:06,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:29:06,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:06,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58538 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57674 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:12,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:12,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:12,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:29:12,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:29:12,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:12,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57675 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54939 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:29:14,098 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:29:14,122 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=207.995 +2025-10-02 01:29:14,209 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=207.995 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 01:29:14,209 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:29:14,209 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 39.112.59.88:54940 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:45428 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:58545 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:17,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:17,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:17,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:29:17,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:29:17,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:17,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58546 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58550 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:22,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:22,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:22,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:29:22,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:29:22,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:22,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58551 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:23,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:23,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:23,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:29:23,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:29:23,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:23,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:27,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:27,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:27,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:29:27,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:29:27,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:27,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7740 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58554 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:28,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:28,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:28,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:29:28,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:29:28,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:28,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58555 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49432 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:29:29,955 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:29:29,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=55.837 +2025-10-02 01:29:30,051 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.837 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 01:29:30,051 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 01:29:30,051 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 125.242.75.181:49433 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:7750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:37,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:37,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:37,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:29:37,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:29:37,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:37,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57711 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:39,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:39,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:39,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:29:39,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:29:39,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:39,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54959 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:40,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:40,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:40,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:29:40,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:29:40,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:40,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54960 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7756 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:40,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:40,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:40,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:29:41,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:29:41,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:41,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7757 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:41,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:41,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:41,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:29:41,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:29:41,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:41,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37652 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:54964 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:45,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:45,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:45,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:29:45,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:29:45,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:45,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54965 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7761 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:52536 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:46,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:46,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:46,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:29:46,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:29:46,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:46,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7762 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:46,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:46,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:46,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:29:46,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:29:46,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:46,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52537 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58567 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57806 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:29:49,758 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:29:49,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:29:49,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s +2025-10-02 01:29:50,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.313s (avg: 0.157s/image) +2025-10-02 01:29:50,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:29:50,073 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.81.39.26:58568 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57810 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7766 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:54970 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:51,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:51,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:51,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:29:51,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:29:51,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:51,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7767 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52569 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:51,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:51,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:51,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:29:51,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:29:51,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:51,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54971 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:51,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:51,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:51,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:29:51,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:29:51,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:51,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57858 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:53,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:53,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:53,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:29:53,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:29:53,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:53,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57861 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7771 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:55,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:55,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:55,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:29:55,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:29:55,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:55,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7772 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52591 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:57,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:57,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:57,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:29:57,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:29:57,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:57,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52592 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57915 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:29:58,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:29:58,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:29:58,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:29:58,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:29:58,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:29:58,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62898 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7776 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:29:59,865 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:29:59,890 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=100.139 +2025-10-02 01:29:59,975 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.139 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 01:29:59,975 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:29:59,976 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 220.77.167.192:62899 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:54979 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:30:00,387 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:30:00,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:30:00,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 01:30:00,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-02 01:30:00,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:30:00,681 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:54980 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7777 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57972 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:02,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:02,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:02,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:30:02,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:30:02,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:02,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57973 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52598 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:04,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:04,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:04,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:30:04,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:30:04,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:04,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52599 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58566 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:58041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:05,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:05,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:05,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:30:05,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:30:05,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:05,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58567 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:54987 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:06,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:06,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:06,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:30:06,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:30:06,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:06,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:06,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:06,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:06,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:30:06,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:30:06,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:06,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:54988 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54191 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:07,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:07,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:07,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:30:07,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:30:07,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:07,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54192 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7784 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62904 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:09,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:09,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:09,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:30:09,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:30:09,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:09,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:09,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:09,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:09,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:30:09,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:30:09,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:09,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62905 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58578 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:10,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:10,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:10,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:30:10,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:30:10,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:10,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58579 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9081 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:30:10,952 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:30:10,974 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=61.026 +2025-10-02 01:30:11,052 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.026 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 01:30:11,053 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:30:11,053 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 175.119.234.181:9082 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:52609 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:11,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:11,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:11,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:30:11,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:30:11,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:11,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52610 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58583 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:14,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:14,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:14,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:30:14,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:30:14,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:14,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58584 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37482 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:54199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:58225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:16,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:16,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:16,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:30:16,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:30:16,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:16,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:16,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:16,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:16,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:30:17,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:30:17,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:17,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58227 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52614 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:17,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:17,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:17,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:30:17,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:30:17,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:17,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52615 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55001 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:18,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:18,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:18,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:30:18,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:30:18,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:18,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:19,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:19,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:19,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:30:19,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:30:19,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:19,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58589 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:19,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:19,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:19,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:30:19,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:30:19,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:19,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55002 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9089 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:21,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:21,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:21,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:30:21,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:30:21,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:21,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9090 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:21,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:21,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:21,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:30:21,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:30:21,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:21,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58597 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58602 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:54205 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:52619 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55006 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:24,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:24,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:24,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:30:24,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:30:24,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:24,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58603 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:30:24,830 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:30:24,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:30:24,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-02 01:30:25,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.257s (avg: 0.128s/image) +2025-10-02 01:30:25,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.128s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:30:25,087 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:54206 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52620 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:25,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:25,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:25,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:30:25,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:30:25,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:25,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55007 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62913 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58607 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:30:27,516 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:30:27,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:30:27,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 01:30:27,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-02 01:30:27,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:30:27,823 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:62914 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58608 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:52626 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:30,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:30,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:30,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:30:30,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:30:30,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:30,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:31,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:31,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:31,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:30:31,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:30:31,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:31,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52627 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:31,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:31,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:31,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:30:31,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:30:31,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:31,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58613 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58617 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:33,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:33,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:33,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:30:33,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:30:33,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:33,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58618 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:34,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:34,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:34,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:30:34,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:30:34,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:34,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54212 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:35,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:35,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:35,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:30:36,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:30:36,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:36,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58622 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:36,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:36,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:36,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:30:36,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:30:36,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:36,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58623 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62918 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:37,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:37,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:37,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:30:37,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:30:37,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:37,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62919 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:37,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:37,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:37,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:30:37,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:30:37,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:37,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52653 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58633 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:42,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:42,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:42,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:30:42,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:30:42,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:42,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58634 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52659 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:44,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:44,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:44,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:30:44,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:30:44,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:44,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52660 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59910 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:58638 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:54219 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:45,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:45,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:45,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:30:45,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:30:45,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:45,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58639 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:45,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:45,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:45,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:30:45,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:30:45,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:45,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54220 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55029 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:47,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:47,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:47,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:30:47,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:30:47,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:47,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55030 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58643 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9105 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:47,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:47,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:47,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:30:47,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:30:47,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:47,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58644 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:48,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:48,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:48,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:30:48,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:30:48,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:48,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9106 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52666 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58648 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:51,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:51,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:51,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:30:51,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:30:51,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:51,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52667 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55034 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:51,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:51,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:51,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:30:51,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:30:51,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:51,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58649 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:51,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:51,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:52,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:30:52,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:30:52,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:52,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55035 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58653 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:53,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:53,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:53,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:30:53,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:30:53,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:53,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54227 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:54,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:54,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:54,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:30:54,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:30:54,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:54,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54228 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52674 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:57,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:57,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:57,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:30:57,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:30:57,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:57,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52675 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55040 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:30:58,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:30:58,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:30:58,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:30:59,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:30:59,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:30:59,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55041 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9114 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:01,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:01,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:01,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:31:02,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:31:02,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:02,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58663 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:03,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:03,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:03,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:31:03,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:31:03,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:03,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9115 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52681 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:04,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:04,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:04,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:31:04,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:31:04,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:04,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:05,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:05,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:05,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:31:05,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:31:05,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:05,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52682 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9119 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:08,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:08,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:08,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:31:09,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:31:09,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:09,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9120 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52692 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:12,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:12,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:12,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:31:12,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:31:12,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:12,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52693 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:12,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:12,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:12,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:31:13,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:31:13,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:13,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54242 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45838 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:9127 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:17,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:17,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:17,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:31:17,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:31:17,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:17,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9128 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52707 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:31:19,160 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:31:19,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:31:19,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 01:31:19,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 01:31:19,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:31:19,447 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:55062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52708 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54248 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:20,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:20,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:20,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:31:20,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:31:20,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:20,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54249 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52722 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:25,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:25,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:25,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:31:25,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:31:25,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:25,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52723 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54255 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:27,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:27,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:27,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:31:28,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:31:28,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:28,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54256 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55070 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:31:29,798 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:31:29,826 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=62.163 +2025-10-02 01:31:29,917 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.163 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 01:31:29,917 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 01:31:29,919 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 118.41.33.196:7806 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:30,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:30,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:30,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:31:30,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:31:30,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:30,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55071 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49476 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:31:32,656 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:31:32,696 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=132.848 +2025-10-02 01:31:32,786 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.848 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 01:31:32,787 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 01:31:32,788 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 125.242.75.181:49477 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:52727 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:33,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:33,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:33,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:31:33,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:31:33,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:33,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52728 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:31:33,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:31:33,826 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=8.554 +2025-10-02 01:31:33,895 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=8.554 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.069s +2025-10-02 01:31:33,896 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-02 01:31:33,896 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +INFO: 118.41.33.196:7811 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:54262 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55075 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:62926 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:35,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:35,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:35,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:31:36,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:31:36,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:36,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:36,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:36,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:36,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:31:36,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:31:36,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:36,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62927 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:36,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:36,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:36,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:31:36,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:31:36,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:36,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55076 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:31:39,732 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:31:39,780 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=57.004 +2025-10-02 01:31:39,876 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.004 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.095s +2025-10-02 01:31:39,877 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 01:31:39,878 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +INFO: 118.41.33.196:7816 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:52734 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:40,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:40,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:40,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:31:40,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:31:40,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:40,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52735 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55082 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:41,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:41,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:41,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:31:42,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:31:42,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:42,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55083 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62932 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:44,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:44,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:44,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:31:44,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:31:44,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:44,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62933 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55374 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:52739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:46,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:46,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:46,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:31:47,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:31:47,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:47,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52742 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:50,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:50,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:50,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:31:50,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:31:50,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:50,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62937 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55091 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:52746 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:53,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:53,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:53,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:31:53,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:31:53,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:53,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62938 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:31:53,597 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:31:53,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:31:53,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:31:53,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:31:53,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:31:53,880 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:52747 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55092 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:54,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:54,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:54,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:31:54,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:31:54,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:54,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:58,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:58,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:58,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:31:58,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:31:58,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:58,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55098 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:58652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:58,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:58,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:58,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:31:59,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:31:59,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:59,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55099 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:31:59,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:31:59,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:31:59,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:31:59,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:31:59,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:31:59,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58653 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52753 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:00,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:00,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:00,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:32:00,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:32:00,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:00,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52754 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58661 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53365 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55103 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:32:05,139 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:32:05,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:32:05,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 01:32:05,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 01:32:05,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:32:05,427 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53366 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58662 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:05,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:05,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:05,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:32:05,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:32:05,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:05,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55104 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62945 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:06,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:06,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:06,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:32:06,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:32:06,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:06,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62946 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52785 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:07,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:07,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:07,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:32:07,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:32:07,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:07,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52786 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:10,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:10,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:10,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:32:10,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:32:10,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:10,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:32:13,952 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:32:13,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:32:14,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 01:32:14,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 01:32:14,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:32:14,242 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53375 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38204 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:55116 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:17,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:17,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:17,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:32:17,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:32:17,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:17,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55117 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58684 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:19,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:19,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:19,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:32:19,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:32:19,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:19,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58685 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62953 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:20,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:20,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:20,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:32:20,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:32:20,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:20,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62954 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52798 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:21,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:21,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:21,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:32:22,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:32:22,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:22,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52799 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52803 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:28,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:28,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:28,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:32:28,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:32:28,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:28,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52804 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:29,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:29,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:29,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:32:29,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:32:29,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:29,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53396 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:32,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:32,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:32,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:32:32,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:32:32,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:32,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:62963 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58839 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:33,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:33,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:33,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:32:33,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:32:33,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:33,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58840 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:34,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:34,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:34,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:32:35,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:32:35,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:35,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53400 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:35,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:35,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:35,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:32:35,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:32:35,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:35,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53401 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58846 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:36,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:36,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:36,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:32:36,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:32:36,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:36,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58847 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:39,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:39,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:39,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:32:39,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:32:39,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:39,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53408 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:42,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:42,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:42,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:32:42,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:32:42,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:42,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53409 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:44,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:44,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:44,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:32:44,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:32:44,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:44,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44670 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:45,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:45,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:45,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:32:45,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:32:45,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:45,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53413 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:48,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:48,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:48,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:32:48,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:32:48,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:48,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53414 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54292 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:52849 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:51,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:51,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:52,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:32:52,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:32:52,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:52,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52850 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53418 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:52,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:52,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:52,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:32:52,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:32:52,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:52,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53421 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:61742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:57201 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:32:55,319 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:32:55,340 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=57.596 +2025-10-02 01:32:55,426 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.596 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 01:32:55,426 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 01:32:55,426 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 125.242.75.181:61743 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:53425 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:32:55,922 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:32:55,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:32:55,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.318s +2025-10-02 01:32:56,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.318s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.318s (avg: 0.159s/image) +2025-10-02 01:32:56,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.318s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:32:56,241 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:57202 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53426 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52856 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:32:58,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:32:58,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:32:58,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:32:59,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:32:59,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:32:59,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52857 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53430 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:00,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:00,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:00,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:33:00,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:33:00,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:00,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53431 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:01,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:01,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:01,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:33:01,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:33:01,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:01,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57212 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:03,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:03,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:04,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:33:04,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:33:04,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:04,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58726 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:05,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:05,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:05,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:33:05,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:33:05,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:05,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:05,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:05,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:05,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:33:06,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:33:06,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:06,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:07,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:07,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:08,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:33:08,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:33:08,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:08,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58877 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:57225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:09,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:09,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:09,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:33:09,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:33:09,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:09,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58878 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:10,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:10,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:10,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:33:10,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:33:10,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:10,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57226 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:52874 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58734 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:11,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:11,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:11,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:33:11,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:33:11,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:11,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53444 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:33:12,061 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:33:12,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:33:12,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 01:33:12,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-02 01:33:12,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:33:12,344 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:58735 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52875 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57232 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:54299 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:14,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:14,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:14,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:33:14,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:33:14,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:14,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57233 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40894 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:14,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:14,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:15,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:33:15,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:33:15,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:15,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54300 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58741 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:57240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:18,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:18,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:18,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:33:18,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:33:18,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:18,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58742 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:18,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:18,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:18,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:33:19,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:33:19,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:19,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52879 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:19,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:19,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:19,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:33:19,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:33:19,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:19,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52880 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:21,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:21,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:21,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:33:21,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:33:21,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:21,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57250 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:22,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:22,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:22,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:33:22,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:33:22,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:22,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57251 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58746 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:23,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:23,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:23,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:33:23,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:33:23,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:23,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58747 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52884 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:24,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:24,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:24,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:33:24,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:33:24,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:24,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53456 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:24,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:24,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:24,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:33:24,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:33:24,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:24,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52885 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54312 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58751 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:27,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:27,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:27,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:33:27,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:33:27,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:27,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54313 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:28,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:28,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:28,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:33:28,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:33:28,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:28,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58752 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52891 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:30,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:30,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:30,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:33:31,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:33:31,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:31,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52892 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58756 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:32,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:32,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:32,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:33:32,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:33:32,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:32,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58757 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:54317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:34,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:34,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:34,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:33:34,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:33:34,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:34,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:34,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:34,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:34,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:33:34,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:33:34,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:34,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:52937 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:37,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:37,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:37,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:33:37,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:33:37,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:37,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52940 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:57262 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:38,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:38,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:38,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:33:38,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:33:38,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:38,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:33:39,034 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:33:39,065 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=91.480 +2025-10-02 01:33:39,168 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.480 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.101s +2025-10-02 01:33:39,168 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.106s +2025-10-02 01:33:39,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s +INFO: 122.35.47.45:57263 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:53464 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:39,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:39,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:39,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:33:39,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:33:39,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:39,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53465 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54322 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:40,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:40,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:40,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:33:40,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:33:40,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:40,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54323 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59040 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:52952 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:43,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:43,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:43,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:33:43,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:33:43,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:43,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59041 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:43,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:43,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:43,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:33:43,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:33:43,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:43,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:52953 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53469 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:57269 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45020 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:44,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:44,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:44,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:33:45,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:33:45,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:45,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53470 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:45,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:45,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:45,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:33:45,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:33:45,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:45,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57270 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:45,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:45,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:45,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:33:45,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:33:45,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:45,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:46,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:46,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:46,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:33:46,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:33:46,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:46,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58774 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58778 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:54333 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:50,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:50,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:50,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:33:51,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:33:51,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:51,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58779 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:51,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:51,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:51,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:33:51,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:33:51,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:51,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54334 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57282 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:52,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:52,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:52,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:33:52,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:33:52,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:52,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57283 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58783 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:55,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:55,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:55,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:33:55,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:33:55,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:55,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58784 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:57,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:57,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:57,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:33:57,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:33:57,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:57,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54339 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58645 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:58,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:58,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:58,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:33:58,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:33:58,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:58,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58646 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53482 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:33:59,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:33:59,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:33:59,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:33:59,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:33:59,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:33:59,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:58650 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:34:03,140 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:34:03,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:34:03,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:34:03,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 01:34:03,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:34:03,425 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58651 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54343 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:03,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:03,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:03,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:34:03,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:34:03,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:03,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54344 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54349 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:07,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:07,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:07,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:34:08,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:34:08,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:08,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54350 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:34:08,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:34:08,603 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=41.968 +2025-10-02 01:34:08,692 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.968 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 01:34:08,692 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 01:34:08,692 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 39.112.59.88:55163 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.81.39.26:58657 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:09,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:09,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:09,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:34:09,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:34:09,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:09,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58658 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:13,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:13,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:13,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:34:13,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:34:13,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:13,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35508 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:55168 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:15,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:15,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:15,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:34:15,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:34:15,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:15,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55169 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59371 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:17,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:17,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:17,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:34:17,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:34:17,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:17,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:19,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:19,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:19,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:34:19,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:34:19,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:19,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59380 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:53017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:34:21,737 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:34:21,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:34:21,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 01:34:22,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 01:34:22,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:34:22,024 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:59381 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59387 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:25,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:25,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:25,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:34:25,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:34:25,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:25,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59388 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.81.39.26:58673 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53511 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:34:26,150 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:34:26,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:34:26,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 01:34:26,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-02 01:34:26,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:34:26,445 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.81.39.26:58675 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53512 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58795 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:53022 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:34:28,282 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:34:28,311 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=191.133 +2025-10-02 01:34:28,416 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=191.133 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.104s +2025-10-02 01:34:28,417 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-02 01:34:28,418 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +INFO: 221.154.208.144:58796 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:28,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:28,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:28,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:34:28,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:34:28,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:28,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:30,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:30,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:30,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:34:30,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:34:30,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:30,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:59406 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:34:31,507 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:34:31,533 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=188.029 +2025-10-02 01:34:31,627 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.029 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 01:34:31,628 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 01:34:31,629 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 125.242.75.181:59407 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:59396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:31,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:31,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:32,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:34:32,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:34:32,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:32,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53029 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:57326 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:34:34,708 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:34:34,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:34:34,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-02 01:34:34,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-02 01:34:34,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:34:34,978 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:53030 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54368 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:35,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:35,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:35,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:34:35,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:34:35,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:35,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54369 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:37,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:37,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:37,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:34:37,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:34:37,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:37,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57333 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.81.39.26:58684 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:39,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:39,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:39,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:34:39,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:34:39,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:39,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57334 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9212 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:39,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:39,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:39,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:34:39,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:34:39,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:39,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58685 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:34:40,069 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:34:40,095 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=138.576 +2025-10-02 01:34:40,188 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.576 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 01:34:40,188 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 01:34:40,191 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 175.119.234.181:9213 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:57340 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:44,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:44,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:44,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:34:44,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:34:44,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:44,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33808 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.81.39.26:58689 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:46,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:46,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:46,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:34:46,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:34:46,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:46,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.81.39.26:58690 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57365 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:50,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:50,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:50,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:34:50,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:34:50,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:50,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57366 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55194 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:52,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:52,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:52,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:34:52,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:34:52,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:52,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55195 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:53,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:53,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:53,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:34:53,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:34:53,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:53,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57375 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55202 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:57,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:57,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:57,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.211s +2025-10-02 01:34:58,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.211s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.211s (avg: 0.211s/image) +2025-10-02 01:34:58,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.211s (avg: 0.211s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:58,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:34:58,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:34:58,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:34:58,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:34:58,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:34:58,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:34:58,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55203 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:03,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:03,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:03,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:35:03,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:35:03,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:03,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55208 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:04,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:04,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:05,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:35:05,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:35:05,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:05,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:05,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:05,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:05,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:35:05,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:35:05,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:05,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55209 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:06,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:06,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:06,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:35:06,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:35:06,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:06,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9227 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:10,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:10,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:10,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:35:10,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:35:10,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:10,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55217 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:12,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:12,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:12,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:35:12,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:35:12,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:12,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:12,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:12,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:12,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:35:12,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:35:12,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:12,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55218 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44830 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:53092 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:17,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:17,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:17,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:35:17,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:35:17,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:17,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53093 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:59497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:35:18,798 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:35:18,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:35:18,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 01:35:19,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-02 01:35:19,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:35:19,094 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:55227 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:62992 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:35:22,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:35:22,100 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=44.502 +2025-10-02 01:35:22,189 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.502 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 01:35:22,190 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 01:35:22,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 220.77.167.192:62993 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:55232 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53540 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:23,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:23,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:23,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:35:23,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:35:23,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:23,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53541 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:24,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:24,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:24,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:35:24,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:35:24,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:24,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55233 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59549 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:24,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:24,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:24,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:35:24,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:35:24,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:24,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59551 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9254 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:53100 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:27,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:27,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:28,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:35:28,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:35:28,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:28,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9255 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:28,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:28,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:28,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:35:28,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:35:28,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:28,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53101 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59632 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:30,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:30,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:30,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:35:30,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:35:30,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:30,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59634 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:35:31,423 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:35:31,445 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=111.886 +2025-10-02 01:35:31,539 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.886 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 01:35:31,540 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 01:35:31,541 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 118.41.33.196:7956 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:55244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:32,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:32,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:33,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:35:33,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:35:33,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:33,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53105 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:33,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:33,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:33,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:35:33,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:35:33,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:33,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53106 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:34,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:34,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:34,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:35:34,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:35:34,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:34,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7960 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:35:35,405 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:35:35,436 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=48.221 +2025-10-02 01:35:35,541 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.221 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.104s +2025-10-02 01:35:35,542 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-02 01:35:35,543 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +INFO: 118.41.33.196:7961 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:59706 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:36,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:36,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:36,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:35:36,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:35:36,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:36,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59707 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:37,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:37,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:37,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:35:37,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:35:37,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:37,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58831 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7965 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:35:39,109 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:35:39,137 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=104.994 +2025-10-02 01:35:39,226 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.994 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 01:35:39,226 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 01:35:39,228 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 118.41.33.196:7966 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:55255 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:39,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:39,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:39,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:35:40,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:35:40,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:40,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55256 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58839 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:41,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:41,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:41,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:35:41,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:35:41,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:41,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58840 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59791 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:42,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:42,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:42,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:35:42,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:35:42,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:42,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55262 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42820 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:58850 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:45,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:45,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:45,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:35:45,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:35:45,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:45,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58851 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:46,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:46,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:46,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:35:46,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:35:46,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:46,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59886 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:47,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:47,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:47,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:35:47,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:35:47,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:47,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59887 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58855 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:49,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:49,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:49,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:35:49,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:35:49,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:49,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58856 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53138 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:50,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:50,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:50,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:35:50,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:35:50,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:50,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53139 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55267 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:51,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:51,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:51,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:35:51,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:35:51,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:51,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55268 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58860 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:59947 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:35:53,243 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:35:53,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:35:53,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:35:53,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:35:53,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:35:53,526 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:58861 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59948 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58866 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:57,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:57,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:57,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:35:57,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:35:57,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:57,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58867 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7972 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:60004 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:58,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:58,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:58,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:35:59,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:35:59,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:59,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7973 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:35:59,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:35:59,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:35:59,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:35:59,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:35:59,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:35:59,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60007 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53150 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:01,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:01,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:01,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:36:01,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:36:01,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:01,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58871 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:01,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:01,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:01,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:36:01,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:36:01,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:01,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58872 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57506 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:36:02,030 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:36:02,056 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=88.555 +2025-10-02 01:36:02,137 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.555 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 01:36:02,137 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 01:36:02,138 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 122.35.47.45:57507 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:60069 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:03,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:03,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:03,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:36:03,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:36:03,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:03,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60071 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58876 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:05,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:05,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:05,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:36:05,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:36:05,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:05,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58877 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53564 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:06,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:06,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:06,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:36:06,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:36:06,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:06,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:57520 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:36:07,720 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:36:07,742 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=48.467 +2025-10-02 01:36:07,830 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.467 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 01:36:07,830 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:36:07,830 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 125.242.75.181:49488 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:07,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:07,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:07,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:36:08,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:36:08,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:08,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57521 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53162 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:08,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:08,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:08,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:36:08,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:36:08,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:08,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53163 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60155 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:09,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:09,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:09,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:36:09,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:36:09,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:09,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58881 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:09,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:09,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:10,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:36:10,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:36:10,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:10,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58882 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7980 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:13,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:13,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:13,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:36:13,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:36:13,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:13,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7981 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58886 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:13,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:13,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:14,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:36:14,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:36:14,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:14,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58887 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53573 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:14,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:14,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:14,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:36:14,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:36:14,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:14,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53574 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:14,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:14,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:14,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.221s +2025-10-02 01:36:15,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.221s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.221s (avg: 0.221s/image) +2025-10-02 01:36:15,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.221s (avg: 0.221s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:15,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50624 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:55300 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:16,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:16,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:16,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:36:16,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:36:16,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:16,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55302 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58891 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:17,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:17,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:17,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:36:18,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:36:18,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:18,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58892 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53578 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:18,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:18,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:18,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:36:18,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:36:18,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:18,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:18,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:18,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:18,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:36:18,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:36:18,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:18,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53579 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:7985 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:19,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:19,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:19,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:36:19,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:36:19,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:19,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49500 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:20,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:20,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:20,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:36:20,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:36:20,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:20,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7986 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:21,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:21,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:21,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:36:21,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:36:21,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:21,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55307 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58897 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:22,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:22,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:22,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:36:22,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:36:22,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:22,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58898 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57541 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:23,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:23,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:23,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:36:24,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:36:24,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:24,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57542 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63022 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:24,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:24,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:24,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:36:24,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:36:24,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:24,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63023 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:26,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:26,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:26,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:36:26,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:36:26,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:26,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58902 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53586 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55312 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:27,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:27,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:27,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:36:27,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:36:27,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:27,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58903 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:27,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:27,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:27,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:36:27,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:36:27,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:27,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53587 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7990 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9323 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:36:28,358 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:36:28,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:36:28,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 01:36:28,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-02 01:36:28,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:36:28,659 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:7991 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55313 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:28,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:28,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:28,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:36:29,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:36:29,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:29,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9324 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53591 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:30,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:30,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:30,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:36:30,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:36:30,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:30,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53592 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63030 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:33,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:33,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:33,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:36:33,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:36:33,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:33,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:34,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:34,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:34,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:36:34,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:36:34,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:34,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:34,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:34,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:34,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:36:35,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:36:35,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:35,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63031 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:7995 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:35,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:35,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:35,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:36:35,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:36:35,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:35,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:35,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:35,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:35,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:36:35,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:36:35,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:35,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:7996 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:36,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:36,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:36,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:36:37,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:36:37,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:37,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60320 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9335 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:37,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:37,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:37,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:36:38,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:36:38,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:38,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53212 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:38,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:38,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:38,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:36:38,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:36:38,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:38,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9336 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8000 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:42,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:42,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:42,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:36:42,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:36:42,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:42,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8001 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63038 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:45,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:45,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:45,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:36:45,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:36:45,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:45,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63039 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40174 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:60334 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:47,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:47,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:47,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:36:47,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:36:47,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:47,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60335 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57570 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:50,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:50,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:50,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:36:50,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:36:50,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:50,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57571 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60343 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63043 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:36:53,029 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:36:53,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:36:53,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-02 01:36:53,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-02 01:36:53,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:36:53,337 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:63044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60344 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57578 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:53,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:53,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:53,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 01:36:54,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 01:36:54,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:54,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57579 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8009 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:54,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:54,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:54,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:36:54,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:36:54,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:54,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8010 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57589 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:56,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:56,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:56,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:36:56,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:36:56,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:56,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57590 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:54435 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:36:58,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:36:58,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:36:58,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:36:59,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:36:59,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:36:59,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:54436 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:00,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:00,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:00,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:37:00,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:37:00,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:00,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57597 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8015 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:02,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:02,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:02,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 01:37:02,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 01:37:02,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:02,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8016 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57623 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:10,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:10,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:10,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:37:10,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:37:10,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:10,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57624 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60397 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:10,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:10,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:10,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:37:10,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:37:10,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:10,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60399 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9352 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:11,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:11,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:11,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:37:11,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:37:11,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:11,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9353 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:11,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:11,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:11,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:37:11,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:37:11,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:11,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:14,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:14,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:14,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:37:14,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:37:14,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:14,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52258 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:15,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:15,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:15,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:37:15,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:37:15,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:15,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60434 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9359 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:17,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:17,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:17,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:37:17,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:37:17,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:17,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9360 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63066 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:18,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:18,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:18,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:37:18,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:37:18,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:18,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63067 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53278 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:18,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:18,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:18,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:37:18,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:37:18,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:18,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53283 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60440 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:20,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:20,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:20,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:37:20,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:37:20,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:20,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60441 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:23,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:23,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:23,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:37:23,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:37:23,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:23,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60449 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:37:24,513 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:37:24,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:37:24,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:37:24,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:37:24,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:37:24,804 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:60450 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63071 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:25,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:25,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:25,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:37:25,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:37:25,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:25,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63072 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58958 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:25,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:25,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:25,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:37:26,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:37:26,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:26,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58959 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:29,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:29,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:29,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:37:29,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:37:29,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:29,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9371 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:29,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:29,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:29,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:37:30,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:37:30,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:30,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9372 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55372 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:31,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:31,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:31,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:37:31,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:37:31,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:31,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:58963 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:31,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:31,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:31,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:37:32,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:37:32,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:32,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58964 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60464 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:32,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:32,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:33,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:37:33,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:37:33,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:33,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60465 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53305 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:33,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:33,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:33,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:37:33,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:37:33,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:33,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53306 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63076 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:36,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:36,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:36,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:37:36,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:37:36,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:36,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63077 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60472 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:37,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:37,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:37,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:37:37,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:37:37,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:37,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60473 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55380 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:58973 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:37,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:37,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:37,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:37:37,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:37:37,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:37,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:58974 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:38,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:38,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:38,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:37:38,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:37:38,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:38,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55381 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59096 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55385 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:42,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:42,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:42,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:37:42,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:37:42,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:42,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59097 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57652 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:57653 - "GET /health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:42,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:42,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:42,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:37:42,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:37:42,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:42,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55386 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53313 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:43,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:43,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:43,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:37:43,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:37:43,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:43,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53314 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60485 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:44,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:44,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:44,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:37:44,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:37:44,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:44,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60486 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43784 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:60496 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:53320 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:48,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:48,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:48,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:37:49,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:37:49,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:49,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:49,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:49,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:49,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:37:49,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:37:49,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:49,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53321 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63082 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:50,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:50,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:50,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:37:50,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:37:50,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:50,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63083 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60503 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55391 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:37:53,556 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:37:53,579 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=129.631 +2025-10-02 01:37:53,669 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.631 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 01:37:53,669 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 01:37:53,670 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 39.112.59.88:55394 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:53,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:53,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:53,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:37:54,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:37:54,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:54,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60504 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:37:57,206 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:37:57,229 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=50.041 +2025-10-02 01:37:57,318 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.041 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 01:37:57,318 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 01:37:57,318 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 122.35.47.45:57684 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:63087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:37:58,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:37:58,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:37:58,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:37:58,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:37:58,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:37:58,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55399 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:01,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:01,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:01,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:38:02,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:38:02,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:02,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55400 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60521 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:02,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:02,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:02,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:38:02,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:38:02,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:02,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60522 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55406 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:08,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:08,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:08,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:38:08,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:38:08,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:08,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55407 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60600 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:49546 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59105 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:38:12,069 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:38:12,093 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=109.340 +2025-10-02 01:38:12,171 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.340 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 01:38:12,171 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:38:12,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 125.242.75.181:49547 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:53658 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63092 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:38:12,740 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:38:12,776 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=47.455 +2025-10-02 01:38:12,859 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.455 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 01:38:12,859 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:38:12,859 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 221.154.208.144:59106 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:55413 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:13,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:13,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:13,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:38:13,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:38:13,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:13,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53659 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:38:13,690 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:38:13,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:38:13,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-02 01:38:13,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-02 01:38:13,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:38:13,994 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:60623 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63093 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:14,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:14,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:14,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:38:14,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:38:14,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:14,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55414 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59908 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:59110 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:17,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:17,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:17,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:38:18,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:38:18,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:18,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59111 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:38:18,444 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:38:18,468 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=192.976 +2025-10-02 01:38:18,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=192.976 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 01:38:18,546 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:38:18,546 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 175.119.234.181:9384 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:60684 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:18,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:18,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:18,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:38:18,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:38:18,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:18,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60686 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53664 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:20,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:20,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:20,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:38:20,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:38:20,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:20,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53665 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59116 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:23,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:23,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:23,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:38:23,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:38:23,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:23,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59117 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60697 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:25,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:25,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:25,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:38:25,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:38:25,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:25,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60698 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9388 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59509 - "GET /health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:26,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:26,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:26,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:38:26,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:38:26,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:26,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59510 - "GET /health HTTP/1.1" 200 OK +INFO: 61.255.207.212:59511 - "GET /health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:26,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:26,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:26,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:38:27,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:38:27,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:27,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9389 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60704 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:29,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:29,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:29,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:38:29,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:38:29,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:29,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60705 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53674 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:30,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:30,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:30,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:38:30,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:38:30,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:30,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53675 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60712 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:33,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:33,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:33,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:38:33,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:38:33,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:33,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60713 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9393 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:33,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:33,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:33,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:38:33,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:38:33,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:33,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9395 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55431 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:60720 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:37,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:37,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:37,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:38:37,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:38:37,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:37,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55432 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:38:37,789 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:38:37,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:38:37,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.324s +2025-10-02 01:38:38,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.324s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.324s (avg: 0.162s/image) +2025-10-02 01:38:38,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.324s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:38:38,114 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60721 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:60728 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:38:42,473 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:38:42,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:38:42,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 01:38:42,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 01:38:42,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:38:42,759 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:60729 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:43,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:43,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:43,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:38:43,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:38:43,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:43,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53686 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44154 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:53690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:47,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:47,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:47,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:38:47,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:38:47,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:47,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:48,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:48,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:48,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 01:38:48,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 01:38:48,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:48,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55444 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:51,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:51,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:51,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:38:51,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:38:51,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:51,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60743 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:53,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:53,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:53,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:38:53,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:38:53,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:53,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53699 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60772 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:53,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:53,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:53,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:38:53,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:38:53,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:53,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60773 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55449 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:55,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:55,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:55,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:38:55,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:38:55,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:55,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55450 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53704 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:38:57,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:38:57,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:38:57,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:38:57,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:38:57,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:38:57,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53705 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59542 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:60833 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:38:57,971 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:38:57,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:38:58,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:38:58,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 01:38:58,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:38:58,255 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:60834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59543 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59138 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:60872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:01,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:01,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:01,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:39:01,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:39:01,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:01,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59139 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:01,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:01,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:01,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:39:01,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:39:01,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:01,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60874 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53454 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:39:02,180 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:39:02,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:39:02,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 01:39:02,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-02 01:39:02,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:39:02,458 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53710 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53455 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9407 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59547 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:03,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:03,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:03,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:39:03,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:39:03,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:03,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59548 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:03,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:03,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:03,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:39:03,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:39:03,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:03,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9408 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:05,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:05,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:05,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:39:05,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:39:05,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:05,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59147 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60880 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:05,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:05,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:05,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:39:05,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:39:05,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:05,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60881 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:07,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:07,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:08,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:39:08,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:39:08,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:08,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:09,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO: 211.199.161.49:53461 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:09,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:09,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:39:09,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:39:09,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:09,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57766 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:39:09,795 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:39:09,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:39:09,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 01:39:10,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 01:39:10,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:39:10,085 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:53462 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57767 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9415 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:10,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:10,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:10,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:39:10,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:39:10,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:10,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9416 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59158 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:12,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:12,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:12,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:39:12,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:39:12,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:12,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59159 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59165 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53722 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:15,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:15,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:15,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:39:15,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:39:15,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:15,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59166 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51528 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:15,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:15,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:15,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:39:15,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:39:15,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:15,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53723 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:53474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:57774 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:39:16,147 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:39:16,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:39:16,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 01:39:16,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 01:39:16,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:39:16,444 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:53475 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9424 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:16,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:16,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:16,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:39:16,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:39:16,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:16,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57775 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60904 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:17,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:17,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:17,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:39:17,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:39:17,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:17,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60905 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:18,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:18,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:18,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:39:19,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:39:19,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:19,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57787 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:22,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:22,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:22,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:39:22,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:39:22,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:22,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57788 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9431 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:53480 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:22,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:22,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:22,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.126s +2025-10-02 01:39:22,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.126s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.126s (avg: 0.126s/image) +2025-10-02 01:39:22,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.126s (avg: 0.126s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:22,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9432 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:23,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:23,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:23,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:39:23,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:39:23,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:23,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53481 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59553 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:39:26,957 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:39:26,983 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=26.853 +2025-10-02 01:39:27,078 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.853 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 01:39:27,078 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 01:39:27,080 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 61.255.207.212:59554 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:57795 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:28,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:28,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:28,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:39:28,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:39:28,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:28,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57796 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59558 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:39:30,009 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:39:30,041 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=33.723 +2025-10-02 01:39:30,133 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.723 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 01:39:30,134 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 01:39:30,134 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 61.255.207.212:59559 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:60927 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:30,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:30,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:30,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:39:30,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:39:30,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:30,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60928 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9436 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:32,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:32,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:32,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:39:32,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:39:32,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:32,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9437 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53491 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:32,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:32,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:32,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:39:32,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:39:32,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:32,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59563 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8181 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:39:33,053 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:39:33,076 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=20.955 +2025-10-02 01:39:33,157 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.955 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 01:39:33,158 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:39:33,158 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 61.255.207.212:59564 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:59187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:33,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:33,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:33,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:39:33,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:39:33,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:33,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8182 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57803 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:33,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:33,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:33,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-02 01:39:33,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-02 01:39:33,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:33,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:33,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:33,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:33,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:39:34,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:39:34,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:34,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57804 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60938 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:35,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:35,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:35,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:39:35,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:39:35,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:35,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60939 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:36,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:36,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:36,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:39:36,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:39:36,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:36,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53737 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:37,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:37,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:37,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:39:37,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:39:37,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:37,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53738 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53511 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:38,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:38,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:38,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:39:38,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:39:38,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:38,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53512 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63105 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:39:40,380 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:39:40,406 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=183.101 +2025-10-02 01:39:40,498 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=183.101 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 01:39:40,498 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 01:39:40,499 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 220.77.167.192:63106 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:53743 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:41,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:41,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:41,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:39:41,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:39:41,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:41,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53744 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9470 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:42,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:42,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:42,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:39:42,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:39:42,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:42,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9471 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55503 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:53516 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:44,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:44,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:44,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:39:44,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:39:44,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:44,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53517 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49604 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:44,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:44,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:44,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 01:39:44,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 01:39:44,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:44,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55504 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59208 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:39:44,809 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:39:44,832 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=101.644 +2025-10-02 01:39:44,924 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.644 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 01:39:44,924 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 01:39:44,924 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 125.242.75.181:49605 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:39:45,113 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:39:45,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:39:45,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 01:39:45,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 01:39:45,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:39:45,389 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:60957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59209 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41246 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:53748 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:46,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:46,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:46,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:39:46,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:39:46,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:46,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53749 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9475 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:47,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:47,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:47,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:39:47,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:39:47,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:47,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9476 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60963 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:57820 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:48,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:48,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:48,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:39:48,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:39:48,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:48,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60964 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:39:48,634 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:39:48,653 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=57.225 +2025-10-02 01:39:48,731 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.225 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 01:39:48,732 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:39:48,732 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 122.35.47.45:57821 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:53521 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:49,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:49,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:49,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:39:49,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:39:49,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:49,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53522 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53753 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:50,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:50,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:50,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:39:51,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:39:51,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:51,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53754 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60997 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:52,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:52,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:52,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:39:53,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:39:53,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:53,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60998 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57833 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:54,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:54,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:54,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:39:54,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:39:54,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:54,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53528 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:54,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:54,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:54,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:39:54,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:39:54,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:54,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53529 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:55,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:55,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:55,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:39:55,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:39:55,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:55,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9482 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:56,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:56,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:56,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:39:56,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:39:56,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:56,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53761 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59577 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:58,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:58,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:58,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:39:58,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:39:58,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:58,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53762 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:58,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:58,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:58,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +2025-10-02 01:39:58,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +2025-10-02 01:39:58,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:58,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59578 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:39:59,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:39:59,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:39:59,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:39:59,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:39:59,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:39:59,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57847 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:00,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:00,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:00,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:40:00,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:40:00,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:00,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57848 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61049 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9486 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:01,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:01,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:01,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:40:01,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:40:01,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:01,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61050 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:01,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:01,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:01,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:40:01,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:40:01,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:01,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9487 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59582 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:53542 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:04,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:04,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:04,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:40:04,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:40:04,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:04,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59583 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:04,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:04,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:04,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:40:05,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:40:05,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:05,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53543 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9491 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:57858 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:06,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:06,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:06,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:40:06,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:40:06,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:06,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57859 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:06,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:06,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:06,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:40:06,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:40:06,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:06,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9492 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:06,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:06,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:06,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:40:06,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:40:06,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:06,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:07,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:07,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:07,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-02 01:40:07,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-02 01:40:07,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:07,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61067 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:10,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:10,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:10,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:40:10,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:40:10,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:10,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61068 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59587 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:11,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:11,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:11,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:40:11,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:40:11,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:11,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53549 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:12,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:12,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:12,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:40:12,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:40:12,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:12,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53550 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9500 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:13,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:13,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:13,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:40:13,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:40:13,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:13,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9501 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:15,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:15,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:15,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 01:40:15,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 01:40:15,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:15,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53776 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34676 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:57874 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59595 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:15,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:15,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:15,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:40:15,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:40:15,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:15,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57875 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:16,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:16,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:16,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:40:16,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:40:16,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:16,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59596 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9508 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:18,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:18,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:18,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:40:18,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:40:18,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:18,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9509 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53576 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:19,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:19,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:19,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:40:19,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:40:19,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:19,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53577 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53781 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:20,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:20,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:20,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:40:20,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:40:20,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:20,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59603 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:21,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:21,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:21,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:40:21,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:40:21,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:21,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59604 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9516 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:40:24,070 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:40:24,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:40:24,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 01:40:24,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 01:40:24,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:40:24,373 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:59242 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9517 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53587 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:26,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:26,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:26,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:40:26,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:40:26,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:26,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:26,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:26,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:26,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:40:27,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:40:27,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:27,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63126 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9521 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:29,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:29,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:29,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:40:29,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:40:29,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:29,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9522 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59248 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59613 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:30,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:30,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:30,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:40:30,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:40:30,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:30,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59249 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:30,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:30,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:30,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:40:30,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:40:30,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:30,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59614 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53592 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:33,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:33,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:33,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:40:33,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:40:33,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:33,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53593 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9526 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:34,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:34,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:34,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:40:34,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:40:34,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:34,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9527 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59621 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:36,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:36,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:36,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 01:40:36,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 01:40:36,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:36,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59622 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53597 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59626 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:40,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:40,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:40,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:40:40,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:40:40,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:40,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53598 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59256 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:40,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:40,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:40,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:40:40,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:40:40,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:40,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59627 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:40,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:40,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:40,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:40:40,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:40:40,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:40,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59257 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57900 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:41,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:41,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:41,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:40:41,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:40:41,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:41,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57901 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:44,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:44,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:44,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:40:44,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:40:44,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:44,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59633 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:45,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:45,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:45,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:40:45,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:40:45,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:45,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59634 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48650 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:53602 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:57907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:40:45,980 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:40:45,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:40:46,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-02 01:40:46,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-02 01:40:46,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:40:46,295 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:53603 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59267 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:47,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:47,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:47,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:40:47,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:40:47,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:47,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59268 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57915 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:50,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:50,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:50,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:40:50,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:40:50,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:50,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57916 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53609 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59272 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55540 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:53,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:53,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:53,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:40:53,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:40:53,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:53,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53610 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:40:54,451 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:40:54,482 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=42.823 +2025-10-02 01:40:54,560 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.823 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 01:40:54,560 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:40:54,560 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 39.112.59.88:55541 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:57923 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:40:55,452 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:40:55,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:40:55,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.327s +2025-10-02 01:40:55,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.327s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.327s (avg: 0.164s/image) +2025-10-02 01:40:55,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.327s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:40:55,781 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:59648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57924 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:55,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:55,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:56,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:40:56,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:40:56,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:56,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:40:56,737 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:40:56,760 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=34.063 +2025-10-02 01:40:56,835 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.063 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 01:40:56,835 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 01:40:56,836 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 125.242.75.181:49636 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:53616 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:58,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:58,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:58,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:40:58,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:40:58,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:40:58,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53617 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57930 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:40:59,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:40:59,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:40:59,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:41:00,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:41:00,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:00,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57931 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:03,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:03,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:03,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:41:03,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:41:03,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:03,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:53635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:41:04,511 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:41:04,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:41:04,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:41:04,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:41:04,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:41:04,802 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:59664 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57953 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:08,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:08,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:08,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:41:08,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:41:08,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:08,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57954 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53650 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:10,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:10,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:10,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:41:10,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:41:10,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:10,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53651 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9565 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:11,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:11,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:11,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:41:11,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:41:11,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:11,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9566 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:57964 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:11,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:11,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:11,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:41:11,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:41:11,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:11,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:57965 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53799 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:12,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:12,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:12,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:41:12,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:41:12,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:12,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53800 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59673 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:13,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:13,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:13,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:41:13,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:41:13,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:13,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59674 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50586 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:53805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:17,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:17,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:17,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:41:17,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:41:17,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:17,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9573 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:19,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:19,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:19,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:41:19,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:41:19,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:19,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9574 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55561 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:20,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:20,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:20,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:41:20,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:41:20,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:20,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55562 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61844 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:22,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:22,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:22,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:41:22,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:41:22,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:22,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61845 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:22,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:22,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:22,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:41:23,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:41:23,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:23,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59281 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:41:23,582 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:41:23,612 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=64.333 +2025-10-02 01:41:23,699 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.333 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 01:41:23,699 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 01:41:23,699 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 221.154.208.144:59282 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:9581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:24,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:24,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:24,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s +2025-10-02 01:41:24,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image) +2025-10-02 01:41:24,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:24,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9582 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61851 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:25,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:25,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:25,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:41:25,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:41:25,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:25,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61852 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59286 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:28,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:28,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:28,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:41:28,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:41:28,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:28,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59287 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9589 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:28,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:28,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:28,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:41:29,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:41:29,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:29,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:29,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:29,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:29,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:41:29,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:41:29,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:29,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9590 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:29,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:29,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:29,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:41:29,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:41:29,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:29,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55575 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8197 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9595 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53820 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:41:33,463 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:41:33,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:41:33,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-02 01:41:33,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.321s (avg: 0.161s/image) +2025-10-02 01:41:33,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:41:33,786 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53821 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9596 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:41:34,000 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:41:34,036 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=125.406 +2025-10-02 01:41:34,136 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.406 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.099s +2025-10-02 01:41:34,136 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 01:41:34,138 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +INFO: 118.41.33.196:8198 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:55579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:35,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:35,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:35,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:41:35,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:41:35,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:35,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9600 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8202 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:41:38,536 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:41:38,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:41:38,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-02 01:41:38,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-02 01:41:38,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:41:38,807 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53827 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9601 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:41:39,062 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:41:39,085 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=98.538 +2025-10-02 01:41:39,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.538 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 01:41:39,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 01:41:39,181 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 118.41.33.196:8203 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:55585 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:40,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:40,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:40,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:41:41,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:41:41,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:41,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55586 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58003 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:58004 - "GET /health HTTP/1.1" 200 OK +INFO: 118.41.33.196:8207 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53832 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:43,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:43,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:43,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:41:43,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:41:43,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:43,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53833 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:41:44,043 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:41:44,075 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=104.412 +2025-10-02 01:41:44,188 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.412 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.112s +2025-10-02 01:41:44,189 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.112s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.115s +2025-10-02 01:41:44,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.115s +INFO: 118.41.33.196:8208 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:59788 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:55590 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9608 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53837 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:41:48,585 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:41:48,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:41:48,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 01:41:48,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 01:41:48,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:41:48,885 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:9609 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53838 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:49,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:49,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:49,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:41:49,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:41:49,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:49,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55591 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61925 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:49,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:49,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:49,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:41:49,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:41:49,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:49,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61926 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9613 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53842 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:52,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:52,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:52,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:41:53,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:41:53,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:53,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53843 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:53,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:53,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:53,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:41:53,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:41:53,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:53,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9614 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53701 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:53,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:53,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:54,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:41:54,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:41:54,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:54,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53702 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55598 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:54,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:54,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:54,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:41:54,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:41:54,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:54,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55599 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53847 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:57,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:57,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:57,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:41:57,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:41:57,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:57,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53848 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9623 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:58,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:58,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:58,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:41:58,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:41:58,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:58,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9624 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55604 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59705 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:41:59,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:41:59,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:41:59,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:41:59,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:41:59,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:41:59,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55605 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:00,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:00,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:00,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:42:00,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:42:00,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:00,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59706 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53852 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:02,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:02,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:02,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:42:02,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:42:02,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:02,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53853 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:02,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:02,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:02,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:42:02,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:42:02,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:02,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59713 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:05,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:05,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:05,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:42:05,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:42:05,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:05,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59714 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8215 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53857 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:06,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:06,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:06,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 01:42:06,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 01:42:06,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:06,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8216 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:06,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:06,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:06,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:42:06,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:42:06,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:06,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53858 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59320 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55613 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:09,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:09,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:09,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:42:09,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:42:09,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:09,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59321 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:09,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:09,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:09,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:42:10,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:42:10,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:10,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55614 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:10,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:10,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:10,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:42:10,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:42:10,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:10,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53862 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:11,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:11,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:11,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:42:11,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:42:11,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:11,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53863 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53719 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:12,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:12,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:12,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:42:12,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:42:12,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:12,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53720 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55618 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8220 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:15,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:15,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:15,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:42:15,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:42:15,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:15,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55619 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53869 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33274 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:16,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:16,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:16,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:42:16,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:42:16,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:16,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53870 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:16,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:16,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:16,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:42:16,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:42:16,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:16,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8221 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:16,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:16,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:16,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:42:16,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:42:16,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:16,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61979 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:19,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:19,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:19,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:42:19,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:42:19,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:19,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61981 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53733 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53874 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:42:20,162 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:42:20,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:42:20,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:42:20,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:42:20,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:42:20,453 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53875 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53734 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:20,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:20,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:20,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 01:42:20,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 01:42:20,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:20,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55625 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59343 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:22,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:22,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:22,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:42:22,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:42:22,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:22,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59344 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62014 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:23,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:23,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:23,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:42:23,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:42:23,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:23,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62015 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53879 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:24,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:24,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:24,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:42:24,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:42:24,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:24,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53740 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:24,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:24,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:24,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:42:24,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:42:24,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:24,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53880 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:25,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:25,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:25,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:42:25,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:42:25,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:25,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63177 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:26,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:26,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:26,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:42:26,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:42:26,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:26,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:26,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:26,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:26,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:42:26,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:42:26,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:26,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53744 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53884 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:29,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:29,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:29,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:42:29,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:42:29,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:29,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53745 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:29,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:29,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:29,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:42:29,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:42:29,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:29,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53885 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9636 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:30,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:30,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:30,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:42:30,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:42:30,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:30,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9637 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62045 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:32,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:32,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:32,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:42:32,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:42:32,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:32,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62046 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:34,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:34,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:34,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:42:35,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:42:35,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:35,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53889 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:35,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:35,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:35,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:42:35,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:42:35,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:35,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53890 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:36,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:36,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:36,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:42:36,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:42:36,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:36,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53894 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:42:39,739 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:42:39,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:42:39,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:42:40,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 01:42:40,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:42:40,031 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53895 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:40,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:40,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:40,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:42:41,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:42:41,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:41,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59740 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:42:42,678 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:42:42,718 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=161.265 +2025-10-02 01:42:42,807 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.265 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 01:42:42,808 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 01:42:42,808 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 61.255.207.212:59741 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:53810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:43,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:43,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:43,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 01:42:43,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 01:42:43,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:43,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9649 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:44,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:44,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:44,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:42:44,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:42:44,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:44,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9650 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53899 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:44,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:44,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:45,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:42:45,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:42:45,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:45,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53900 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38434 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:59746 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:42:46,789 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:42:46,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=95.816 +2025-10-02 01:42:46,891 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.816 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 01:42:46,892 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:42:46,892 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 61.255.207.212:59747 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:62074 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:48,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:48,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:48,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:42:48,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:42:48,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:48,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62075 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53905 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:42:49,271 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:42:49,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:42:49,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 01:42:49,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-02 01:42:49,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:42:49,548 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53906 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59753 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:42:50,234 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(740, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:42:50,258 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(740, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=122.693 +2025-10-02 01:42:50,338 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.693 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 01:42:50,339 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 01:42:50,339 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 61.255.207.212:59754 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:8227 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:51,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:51,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:51,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:42:51,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:42:51,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:51,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8228 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62086 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53910 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:42:53,980 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:42:53,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:42:54,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 01:42:54,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 01:42:54,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:42:54,272 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:62087 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53911 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59758 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:55,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:55,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:55,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:42:55,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:42:55,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:55,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59759 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62094 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:58,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:58,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:58,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:42:58,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:42:58,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:58,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62095 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:59,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:59,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:59,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:42:59,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:42:59,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:42:59,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8232 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:42:59,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:42:59,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:42:59,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:43:00,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:43:00,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:00,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8233 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62102 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:03,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:03,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:03,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:43:03,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:43:03,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:03,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62103 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8237 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:06,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:06,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:06,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:43:07,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:43:07,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:07,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8238 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53842 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:10,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:10,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:10,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:43:10,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:43:10,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:10,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53843 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53922 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:14,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:14,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:14,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:43:15,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:43:15,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:15,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53923 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37140 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:8242 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:17,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:17,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:17,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:43:17,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:43:17,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:17,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8243 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53928 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59774 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:43:19,637 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:43:19,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:43:19,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:43:19,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 01:43:19,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:43:19,929 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:53929 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59775 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:21,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:21,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:21,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:43:21,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:43:21,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:21,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62163 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53933 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:23,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:23,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:23,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:43:24,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:43:24,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:24,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53934 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49707 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:43:25,318 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:43:25,341 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=103.076 +2025-10-02 01:43:25,421 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.076 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 01:43:25,421 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:43:25,423 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 125.242.75.181:49708 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:8247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:25,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:25,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:25,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:43:26,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:43:26,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:26,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59784 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:28,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:28,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:28,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:43:28,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:43:28,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:28,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49726 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59791 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:43:32,467 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:43:32,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:43:32,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:43:32,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 01:43:32,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:43:32,751 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 125.242.75.181:49727 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:32,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:32,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:32,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:43:33,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:43:33,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:33,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59792 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:33,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:33,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:33,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:43:33,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:43:33,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:33,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53947 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:36,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:36,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:36,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:43:36,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:43:36,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:36,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53948 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9663 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:43:37,960 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:43:37,982 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=70.595 +2025-10-02 01:43:38,057 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.595 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 01:43:38,057 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 01:43:38,057 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 175.119.234.181:9664 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:63183 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:43:43,647 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:43:43,668 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=105.322 +2025-10-02 01:43:43,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.322 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 01:43:43,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:43:43,747 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 220.77.167.192:63184 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:9668 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:44,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:44,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:44,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:43:44,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:43:44,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:44,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9669 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:45,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:45,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:45,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 01:43:45,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 01:43:45,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:45,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:45,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:45,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:45,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:43:45,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:43:45,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:45,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54928 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:8261 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:48,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:48,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:48,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:43:48,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:43:48,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:48,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8262 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59456 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:50,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:50,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:50,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:43:50,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:43:50,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:50,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59457 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63189 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:51,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:51,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:51,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:43:51,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:43:51,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:51,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63190 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55700 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:43:53,480 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:43:53,503 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=137.224 +2025-10-02 01:43:53,590 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.224 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 01:43:53,591 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 01:43:53,591 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 39.112.59.88:55701 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:9676 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:55,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:55,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:55,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:43:55,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:43:55,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:55,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9677 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8266 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:53913 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:56,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:56,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:56,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:43:56,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:43:56,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:56,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53914 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:56,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:56,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:56,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:43:56,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:43:56,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:56,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8267 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:56,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:56,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:56,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 01:43:56,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 01:43:56,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:56,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59464 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53964 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:58,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:58,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:58,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:43:58,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:43:58,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:58,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53965 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63194 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:43:59,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:43:59,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:43:59,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.207s +2025-10-02 01:43:59,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.207s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.207s (avg: 0.207s/image) +2025-10-02 01:43:59,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.207s (avg: 0.207s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:43:59,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63195 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62232 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:00,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:00,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:00,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:44:00,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:44:00,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:00,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62233 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:44:00,840 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:44:00,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:44:00,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 01:44:01,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 01:44:01,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:44:01,129 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:55710 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9686 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53920 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:01,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:01,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:01,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:44:01,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:44:01,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:01,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53921 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:02,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:02,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:02,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:44:02,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:44:02,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:02,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59468 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:03,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:03,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:03,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:44:03,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:44:03,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:03,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59469 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8272 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:04,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:04,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:04,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:44:04,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:44:04,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:04,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62261 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:05,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:05,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:05,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:44:05,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:44:05,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:05,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62262 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:53948 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:06,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:06,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:06,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:44:07,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:44:07,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:07,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59829 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:07,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:07,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:07,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:44:07,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:44:07,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:07,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53949 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:07,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:07,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:07,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:44:08,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:44:08,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:08,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59830 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53969 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:08,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:08,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:08,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:44:08,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:44:08,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:08,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:08,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:08,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:08,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:44:09,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:44:09,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:09,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53970 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:10,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:10,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:10,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:44:10,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:44:10,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:10,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:12,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:12,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:12,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:44:12,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:44:12,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:12,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59839 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:14,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:14,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:14,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:44:14,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:44:14,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:14,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59840 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62391 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59480 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33104 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:15,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:15,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:15,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:44:15,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:44:15,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:15,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62392 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:16,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:16,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:16,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:44:16,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:44:16,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:16,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59481 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53963 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:16,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:16,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:16,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:44:17,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:44:17,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:17,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53964 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53976 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8282 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:17,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:17,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:17,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:44:17,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:44:17,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:17,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:53977 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:17,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:17,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:17,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:44:17,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:44:17,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:17,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8283 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9692 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:18,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:18,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:18,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:44:18,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:44:18,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:18,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9693 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59486 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:53982 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9697 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:44:22,513 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:44:22,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:44:22,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 01:44:22,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 01:44:22,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:44:22,815 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:59487 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53983 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53973 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:23,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:23,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:23,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:44:23,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:44:23,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:23,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53974 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:23,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:23,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:23,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:44:23,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:44:23,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:23,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9698 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59855 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8287 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:24,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:24,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:24,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:44:24,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:44:24,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:24,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59856 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:24,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:24,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:24,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:44:24,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:44:24,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:24,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8288 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9703 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:44:27,436 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:44:27,467 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=19.122 +2025-10-02 01:44:27,570 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=19.122 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.102s +2025-10-02 01:44:27,571 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-02 01:44:27,571 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +INFO: 122.35.47.45:58219 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:27,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:27,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:27,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:44:27,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:44:27,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:27,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9704 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59491 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:28,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:28,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:28,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:44:28,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:44:28,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:28,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59492 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53978 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:29,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:29,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:29,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:44:29,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:44:29,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:29,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53979 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62412 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:30,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:30,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:30,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:44:30,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:44:30,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:30,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62413 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8292 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:31,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:31,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:31,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:44:31,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:44:31,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:31,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:32,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:32,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:32,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:44:32,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:44:32,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:32,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8293 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:62420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:44:35,501 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:44:35,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:44:35,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 01:44:35,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-02 01:44:35,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:44:35,803 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:53984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62421 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59496 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9714 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:36,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:36,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:36,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:44:36,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:44:36,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:36,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:36,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:36,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:36,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:44:36,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:44:36,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:36,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9715 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59871 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:37,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:37,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:37,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:44:37,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:44:37,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:37,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59872 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8297 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:38,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:38,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:38,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:44:39,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:44:39,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:39,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8298 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:53990 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59501 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:40,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:40,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:40,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:44:41,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:44:41,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:41,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53991 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:41,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:41,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:41,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:44:41,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:44:41,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:41,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59502 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:41,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:41,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:41,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:44:41,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:44:41,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:41,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9732 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59876 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:41,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:41,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:41,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:44:42,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:44:42,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:42,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59877 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54014 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:53995 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59509 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:46,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:46,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:46,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:44:46,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:44:46,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:46,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:53996 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:46,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:46,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:46,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:44:46,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:44:46,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:46,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59510 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:47,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:47,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:47,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:44:48,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:44:48,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:48,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55768 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:49,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:49,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:49,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:44:49,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:44:49,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:49,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55769 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54016 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:52,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:52,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:52,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:44:52,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:44:52,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:52,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54017 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:53,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:53,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:53,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:44:53,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:44:53,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:53,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55774 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:56,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:56,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:56,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:44:56,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:44:56,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:56,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55776 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:57,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:57,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:57,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:44:57,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:44:57,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:57,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63224 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54028 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:44:57,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:44:57,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:44:57,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:44:57,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:44:57,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:44:57,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54029 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:53999 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:02,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:02,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:02,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:45:02,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:45:02,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:02,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54000 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:03,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:03,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:03,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:45:03,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:45:03,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:03,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9763 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:06,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:06,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:06,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:45:06,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:45:06,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:06,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49760 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59900 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:45:06,672 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:45:06,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:45:06,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 01:45:06,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.265s (avg: 0.133s/image) +2025-10-02 01:45:06,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:45:06,939 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:9764 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59901 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54040 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:08,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:08,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:08,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:45:08,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:45:08,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:08,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54041 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54004 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:09,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:09,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:09,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:45:09,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:45:09,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:09,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54005 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62564 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:10,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:10,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:10,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:45:11,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:45:11,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:11,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:11,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:11,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:11,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 01:45:11,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 01:45:11,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:11,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8314 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9768 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:12,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:12,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:12,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:45:12,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:45:12,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:12,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8315 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:12,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:12,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:12,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:45:13,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:45:13,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:13,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9769 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:54048 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55798 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59912 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:45:14,331 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:45:14,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:45:14,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 01:45:14,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 01:45:14,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:45:14,620 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 125.242.75.181:49765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54049 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59519 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:45:14,786 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:45:14,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:45:14,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 01:45:15,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.265s (avg: 0.133s/image) +2025-10-02 01:45:15,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:45:15,052 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:55799 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59913 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:45:15,247 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:45:15,265 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=216.441 +2025-10-02 01:45:15,344 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=216.441 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 01:45:15,344 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:45:15,344 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 221.154.208.144:59520 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:57964 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:54009 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:18,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:18,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:18,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:45:18,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:45:18,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:18,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54010 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54055 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:20,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:20,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:20,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:45:20,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:45:20,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:20,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54056 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:22,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:22,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:22,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:45:22,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:45:22,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:22,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59527 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:23,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:23,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:23,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:45:23,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:45:23,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:23,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59528 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9776 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:25,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:25,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:25,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:45:25,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:45:25,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:25,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9777 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54015 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:25,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:25,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:25,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:45:25,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:45:25,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:25,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54016 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:26,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:26,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:26,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:45:26,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:45:26,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:26,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59532 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:29,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:29,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:29,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:45:29,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:45:29,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:29,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59533 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9781 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:30,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:30,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:30,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:45:30,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:45:30,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:30,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49774 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:62598 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:30,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:30,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:30,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:45:30,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:45:30,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:30,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49775 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:31,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:31,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:31,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:45:31,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:45:31,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:31,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62599 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54020 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:31,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:31,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:32,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:45:32,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:45:32,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:32,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54021 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9786 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8329 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:33,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:33,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:34,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:45:34,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:45:34,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:34,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9787 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:34,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:34,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:34,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:45:34,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:45:34,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:34,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8330 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:36,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:36,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:36,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:45:36,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:45:36,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:36,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59538 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54026 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:37,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:37,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:37,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:45:37,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:45:37,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:37,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54027 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59930 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:38,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:38,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:38,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:45:38,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:45:38,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:38,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59931 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:38,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:38,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:38,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:45:38,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:45:38,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:38,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62619 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:41,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:41,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:42,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 01:45:42,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 01:45:42,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:42,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62620 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:43,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:43,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:43,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:45:43,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:45:43,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:43,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54031 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:43,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:43,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:43,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:45:43,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:45:43,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:43,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54032 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49783 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:45:45,153 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:45:45,177 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=83.062 +2025-10-02 01:45:45,252 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.062 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 01:45:45,253 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 01:45:45,253 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 125.242.75.181:49784 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:49516 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:59940 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:46,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:46,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:46,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:45:46,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:45:46,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:46,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62719 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:49,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:49,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:49,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 01:45:49,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 01:45:49,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:49,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62724 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59945 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:45:50,972 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:45:50,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:45:51,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 01:45:51,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-02 01:45:51,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:45:51,260 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:59946 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62795 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:53,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:53,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:53,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-02 01:45:53,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-02 01:45:53,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:53,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62796 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59951 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:45:56,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:45:56,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:45:56,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:45:56,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:45:56,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:45:56,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59952 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54042 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:45:57,825 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:45:57,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:45:57,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:45:58,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 01:45:58,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:45:58,109 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 125.242.75.181:49793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:00,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:00,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:01,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:46:01,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:46:01,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:01,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62948 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:02,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:02,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:02,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:46:02,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:46:02,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:02,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62949 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59961 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:04,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:04,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:04,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:46:04,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:46:04,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:04,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59962 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:49797 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:04,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:04,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:05,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:46:05,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:46:05,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:05,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54048 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63015 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:05,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:05,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:05,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:46:05,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:46:05,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:05,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:49798 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:06,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:06,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:06,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:46:06,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:46:06,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:06,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63017 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59966 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:08,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:08,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:08,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:46:08,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:46:08,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:08,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59967 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:09,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:09,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:09,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:46:10,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:46:10,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:10,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63124 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54052 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:12,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:12,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:12,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:46:12,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:46:12,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:12,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54053 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:13,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:13,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:13,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:46:14,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:46:14,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:14,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55827 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59559 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:14,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:14,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:14,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:46:14,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:46:14,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:14,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59560 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33032 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:58355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:16,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:16,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:16,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:46:16,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:46:16,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:16,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:18,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:18,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:18,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-02 01:46:18,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-02 01:46:18,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:18,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:7978 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:18,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:18,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:18,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:46:19,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:46:19,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:19,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59566 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:19,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:19,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:19,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:46:19,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:46:19,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:19,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59567 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55831 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:21,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:21,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:21,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:46:21,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:46:21,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:21,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55832 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:23,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:23,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:23,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:46:23,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:46:23,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:23,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54063 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:24,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:24,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:24,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:46:24,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:46:24,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:24,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54064 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55837 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:27,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:27,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:27,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:46:27,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:46:27,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:27,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55838 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59580 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:28,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:28,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:28,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:46:28,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:46:28,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:28,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59581 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59585 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54069 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:32,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:32,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:32,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:46:32,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:46:32,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:32,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54070 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:32,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:32,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:32,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:46:32,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:46:32,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:32,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59586 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55844 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:54150 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:59985 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:36,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:36,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:36,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:46:36,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:46:36,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:36,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:46:36,582 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:46:36,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:46:36,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-02 01:46:36,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.257s (avg: 0.128s/image) +2025-10-02 01:46:36,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.128s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:46:36,840 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:55845 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:59986 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8343 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:46:37,320 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:46:37,345 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=136.088 +2025-10-02 01:46:37,425 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.088 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 01:46:37,425 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 01:46:37,425 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 118.41.33.196:8344 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:54074 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:39,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:39,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:39,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:46:39,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:46:39,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:39,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54075 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:40,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:40,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:40,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:46:40,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:46:40,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:40,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59597 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58406 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:40,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:40,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:40,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:46:41,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:46:41,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:41,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58407 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8348 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:46:42,466 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:46:42,506 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=120.910 +2025-10-02 01:46:42,594 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.910 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 01:46:42,594 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 01:46:42,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 118.41.33.196:8349 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:59992 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55874 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:54158 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:42,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:42,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:42,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:46:43,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:46:43,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:43,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:59993 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:43,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:43,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:43,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 01:46:44,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 01:46:44,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:44,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54159 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58412 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:44,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:44,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:44,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:46:44,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:46:44,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:44,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55875 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:45,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:45,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:45,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:46:45,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:46:45,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:45,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58414 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41544 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:59605 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:45,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:45,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:46,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:46:46,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:46:46,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:46,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59606 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54079 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:46,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:46,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:46,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:46:46,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:46:46,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:46,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54080 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8353 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:58421 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:46:48,167 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:46:48,206 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=84.078 +2025-10-02 01:46:48,292 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.078 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 01:46:48,292 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:46:48,292 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 118.41.33.196:8354 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:48,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:48,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:48,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:46:48,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:46:48,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:48,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58423 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60000 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59610 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:49,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:49,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:49,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:46:49,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:46:49,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:49,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60001 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:49,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:49,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:49,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:46:49,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:46:49,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:49,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59611 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:51,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:51,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:51,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:46:52,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:46:52,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:52,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54168 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54084 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:53,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:53,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:53,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:46:53,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:46:53,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:53,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54085 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55880 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:46:54,057 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:46:54,081 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=126.893 +2025-10-02 01:46:54,164 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.893 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 01:46:54,165 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:46:54,165 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 39.112.59.88:55881 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:60005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:55,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:55,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:55,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:46:55,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:46:55,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:55,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60006 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59618 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:58,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:58,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:58,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:46:58,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:46:58,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:58,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59619 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54091 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:54177 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:59,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:59,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:59,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:46:59,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:46:59,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:46:59,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54092 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:46:59,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:46:59,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:46:59,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:46:59,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:46:59,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:00,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54178 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:47:01,537 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:47:01,562 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=33.991 +2025-10-02 01:47:01,654 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.991 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 01:47:01,655 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 01:47:01,655 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 122.35.47.45:58434 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:59624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:02,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:02,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:02,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:47:03,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:47:03,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:03,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59625 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54231 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:05,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:05,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:06,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:47:06,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:47:06,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:06,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54232 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54097 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:47:06,820 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:47:06,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:47:06,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 01:47:07,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 01:47:07,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:47:07,106 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:58443 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54098 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59629 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55889 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:07,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:07,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:07,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:47:07,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:47:07,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:07,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59630 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:49845 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:08,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:08,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:08,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:47:08,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:47:08,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:08,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55890 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:47:08,546 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:47:08,560 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=80.554 +2025-10-02 01:47:08,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.554 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.071s +2025-10-02 01:47:08,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 01:47:08,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +INFO: 125.242.75.181:49846 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:54238 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:10,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:10,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:10,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:47:10,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:47:10,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:10,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54239 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:11,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:11,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:11,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:47:12,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:47:12,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:12,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58449 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:13,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:13,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:13,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:47:13,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:47:13,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:13,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58450 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39702 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:8366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:58462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:18,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:18,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:18,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:47:18,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:47:18,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:18,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:19,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:19,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:19,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:47:19,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:47:19,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:19,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60018 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:47:19,562 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:47:19,594 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=110.433 +2025-10-02 01:47:19,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.433 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 01:47:19,676 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 01:47:19,676 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 61.255.207.212:60019 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:8372 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:22,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:22,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:22,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:47:22,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:47:22,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:22,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:47:23,616 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:47:23,643 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=121.299 +2025-10-02 01:47:23,717 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.299 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 01:47:23,717 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 01:47:23,717 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 61.255.207.212:60025 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:54262 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:25,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:25,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:25,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:47:25,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:47:25,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:25,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59659 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:25,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:25,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:25,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:47:26,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:47:26,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:26,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58475 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:26,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:26,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:26,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:47:26,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:47:26,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:26,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59660 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8377 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:27,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:27,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:27,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:47:28,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:47:28,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:28,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8378 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60031 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:47:28,923 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:47:28,950 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=210.584 +2025-10-02 01:47:29,031 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=210.584 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 01:47:29,031 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 01:47:29,032 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 61.255.207.212:60032 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:54272 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59664 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:30,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:30,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:30,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:47:30,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:47:30,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:30,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:30,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:30,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:31,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:47:31,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:47:31,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:31,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59665 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58482 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:32,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:32,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:32,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:47:32,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:47:32,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:32,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55908 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:33,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:33,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:33,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:47:33,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:47:33,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:33,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55909 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54113 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:34,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:34,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:34,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:47:34,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:47:34,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:34,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54114 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8385 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:35,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:35,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:35,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:47:36,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:47:36,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:36,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8386 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54280 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59673 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:47:36,662 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:47:36,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:47:36,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 01:47:36,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +2025-10-02 01:47:36,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:47:36,978 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:54281 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59674 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55918 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:39,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:39,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:39,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 01:47:39,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 01:47:39,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:39,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55919 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60042 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:42,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:42,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:42,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:47:42,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:47:42,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:42,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63566 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:44,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:44,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:44,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:47:45,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:47:45,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:45,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63567 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8393 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47064 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:45,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:45,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:46,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:47:46,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:47:46,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:46,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8394 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59691 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:47,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:47,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:47,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:47:47,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:47:47,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:47,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59692 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54308 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54128 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:49,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:49,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:49,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:47:49,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:47:49,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:49,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54311 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:49,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:49,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:49,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:47:49,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:47:49,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:49,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54129 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:50,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:50,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:50,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:47:50,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:47:50,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:50,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63575 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8398 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:50,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:50,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:50,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:47:50,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:47:50,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:50,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8399 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59696 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:51,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:51,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:51,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:47:51,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:47:51,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:51,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59697 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55931 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:52,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:52,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:52,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 01:47:52,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 01:47:52,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:52,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55932 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54133 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:53,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:53,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:53,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:47:54,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:47:54,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:54,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54134 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59701 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:58507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:54,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:54,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:54,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:47:54,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:47:54,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:54,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59702 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:54,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:54,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:54,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:47:55,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:47:55,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:55,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58508 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8403 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:54342 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54138 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:56,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:56,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:56,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:47:56,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:47:56,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:56,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54343 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:47:57,498 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:47:57,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:47:57,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-02 01:47:57,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-02 01:47:57,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:47:57,774 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:54139 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8404 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63589 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:58514 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:59,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:59,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:59,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:47:59,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:47:59,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:59,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58515 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:47:59,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:47:59,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:47:59,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:47:59,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:47:59,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:47:59,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63590 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54349 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60054 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:01,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:01,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:01,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:48:01,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:48:01,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:01,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54350 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:01,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:01,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:01,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:48:01,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:48:01,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:01,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60055 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9837 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:55941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:48:02,137 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:48:02,171 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=41.961 +2025-10-02 01:48:02,269 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.961 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.097s +2025-10-02 01:48:02,269 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 01:48:02,272 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +INFO: 175.119.234.181:9838 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:03,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:03,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:03,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:48:03,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:48:03,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:03,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:05,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:05,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:05,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:48:05,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:48:05,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:05,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:63599 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:05,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:05,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:05,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:48:06,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:48:06,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:06,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54147 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:58526 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:06,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:06,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:06,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:48:06,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:48:06,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:06,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63600 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:06,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:06,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:06,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:48:06,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:48:06,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:06,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:06,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:06,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:06,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:48:07,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:48:07,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:07,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58527 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:07,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:07,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:07,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:48:07,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:48:07,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:07,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59710 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55947 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:08,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:08,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:08,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:48:08,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:48:08,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:08,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55948 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9842 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:09,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:09,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:09,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:48:09,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:48:09,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:09,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9843 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8416 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:10,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:10,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:10,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:48:11,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:48:11,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:11,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8417 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60070 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:11,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:11,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:11,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:48:11,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:48:11,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:11,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60072 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54367 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:12,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:12,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:12,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:48:12,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:48:12,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:12,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54368 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55952 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:58538 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59714 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:14,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:14,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:14,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:48:14,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:48:14,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:14,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58539 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8421 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:14,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:14,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:14,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:48:15,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:48:15,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:15,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59715 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9847 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44494 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:48:15,693 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:48:15,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:48:15,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 01:48:15,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 01:48:15,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:48:15,975 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:9848 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8422 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54154 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:16,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:16,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:16,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:48:16,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:48:16,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:16,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55953 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60076 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:16,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:16,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:16,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:48:16,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:48:16,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:16,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54155 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:17,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:17,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:17,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:48:17,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:48:17,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:17,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:18,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:18,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:18,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:48:18,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:48:18,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:18,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60077 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63619 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:18,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:18,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:18,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:48:18,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:48:18,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:18,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63620 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8426 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:20,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:20,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:20,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:48:20,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:48:20,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:20,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8427 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58554 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54160 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:48:21,639 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:48:21,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:48:21,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.325s +2025-10-02 01:48:21,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.325s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.325s (avg: 0.162s/image) +2025-10-02 01:48:21,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.325s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:48:21,965 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:54161 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58555 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9853 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:22,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:22,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:22,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:48:22,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:48:22,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:22,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9854 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58561 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:25,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:25,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:25,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:48:25,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:48:25,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:25,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58562 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54165 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:26,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:26,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:26,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:48:26,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:48:26,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:26,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54166 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:27,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:27,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:27,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:48:27,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:48:27,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:27,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58568 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8435 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:30,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:30,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:30,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:48:30,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:48:30,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:30,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8436 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:31,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:31,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:31,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:48:31,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:48:31,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:31,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58569 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55968 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60092 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:48:32,605 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:48:32,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:48:32,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:48:32,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:48:32,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:48:32,889 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:55969 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60093 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58575 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8440 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:35,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:35,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:35,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 01:48:35,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 01:48:35,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:35,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58576 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:48:35,304 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:48:35,326 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=104.124 +2025-10-02 01:48:35,402 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.124 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 01:48:35,402 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 01:48:35,403 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 220.77.167.192:63265 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:35,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:35,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:35,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:48:35,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:48:35,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:35,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8441 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58585 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60098 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:40,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:40,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:40,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:48:40,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:48:40,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:40,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58586 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:40,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:40,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:40,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:48:40,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:48:40,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:40,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60099 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55977 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:42,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:42,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:42,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:48:42,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:48:42,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:42,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55978 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58592 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:43,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:43,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:43,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:48:43,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:48:43,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:43,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58593 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:45,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:45,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:45,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:48:45,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:48:45,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:45,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42478 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:45,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:45,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:45,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:48:46,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:48:46,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:46,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63699 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9867 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:46,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:46,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:46,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:48:46,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:48:46,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:46,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9868 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58600 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:48,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:48,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:48,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:48:48,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:48:48,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:48,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58601 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:49,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:49,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:49,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 01:48:49,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 01:48:49,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:49,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9877 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 125.242.75.181:49955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:48:51,732 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:48:51,750 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=71.982 +2025-10-02 01:48:51,833 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.982 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 01:48:51,834 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:48:51,834 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 125.242.75.181:49956 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:51,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:51,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:51,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:48:52,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:48:52,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:52,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9878 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54422 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:63707 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:52,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:52,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:52,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:48:52,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:48:52,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:52,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54423 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:52,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:52,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:52,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:48:52,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:48:52,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:52,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63708 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:53,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:53,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:53,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:48:53,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:48:53,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:53,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58611 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:54,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:54,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:54,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:48:54,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:48:54,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:54,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58612 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:55994 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9882 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:55,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:55,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:55,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:48:55,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:48:55,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:55,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9883 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:55,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:55,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:55,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:48:55,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:48:55,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:55,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:55995 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63716 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54193 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:57,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:57,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:57,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:48:58,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:48:58,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:58,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63717 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:58,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:58,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:58,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:48:58,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:48:58,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:48:58,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54194 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58619 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:54427 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:48:58,808 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:48:58,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:48:58,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 01:48:59,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 01:48:59,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:48:59,100 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:54428 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58620 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:48:59,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:48:59,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:48:59,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:49:00,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:49:00,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:00,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54198 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:03,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:03,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:03,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:49:03,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:49:03,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:03,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54199 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9892 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:03,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:03,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:03,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:49:03,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:49:03,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:03,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9893 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:04,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:04,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:04,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:49:04,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:49:04,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:04,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63726 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54434 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:04,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:04,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:04,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:49:05,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:49:05,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:05,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54435 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9897 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:07,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:07,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:07,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:49:07,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:49:07,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:07,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9898 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54207 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:09,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:09,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:09,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:49:09,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:49:09,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:09,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54208 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58636 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:10,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:10,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:10,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:49:10,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:49:10,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:10,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58637 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9902 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:12,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:12,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:12,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:49:12,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:49:12,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:12,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9903 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56011 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:13,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:13,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:13,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:49:13,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:49:13,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:13,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56012 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:14,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:14,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:14,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:49:14,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:49:14,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:14,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54314 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:15,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:15,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:15,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:49:15,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:49:15,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:15,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:58655 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:49:18,255 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:49:18,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:49:18,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-02 01:49:18,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-02 01:49:18,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:49:18,565 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:56018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58656 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63786 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:19,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:19,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:19,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:49:20,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:49:20,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:20,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63787 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56022 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:23,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:23,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:23,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:49:23,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:49:23,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:23,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56023 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:58673 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:63810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:23,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:23,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:23,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:49:24,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:49:24,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:24,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:24,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:24,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:24,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:49:24,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:49:24,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:24,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:58676 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63818 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56030 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:27,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:27,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:27,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:49:28,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:49:28,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:28,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63819 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:28,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:28,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:28,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:49:28,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:49:28,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:28,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56031 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59083 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:30,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:30,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:30,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:49:30,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:49:30,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:30,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59084 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8452 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:49:31,777 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:49:31,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=73.857 +2025-10-02 01:49:31,899 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.857 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 01:49:31,900 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 01:49:31,900 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 118.41.33.196:8453 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:56035 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:33,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:33,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:33,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:49:33,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:49:33,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:33,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56036 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63827 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:34,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:34,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:34,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:49:34,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:49:34,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:34,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63828 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:54485 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:35,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:35,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:35,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:49:36,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:49:36,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:36,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54486 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:49:36,118 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:49:36,134 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=70.627 +2025-10-02 01:49:36,213 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.627 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 01:49:36,213 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 01:49:36,214 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 118.41.33.196:8458 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:63833 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:36,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:36,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:36,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:49:36,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:49:36,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:36,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:38,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:38,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:39,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:49:39,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:49:39,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:39,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:49:40,174 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:49:40,202 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=61.395 +2025-10-02 01:49:40,286 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.395 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 01:49:40,286 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:49:40,288 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 118.41.33.196:8463 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:63841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:40,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:40,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:40,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:49:40,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:49:40,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:40,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56046 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:44,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:44,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:44,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:49:44,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:49:44,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:44,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56047 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53320 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:59781 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:47,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:47,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:47,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:49:47,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:49:47,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:47,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63854 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:48,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:48,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:48,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:49:48,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:49:48,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:48,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63855 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:50,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:50,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:51,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:49:51,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:49:51,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:51,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:63861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:51,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:51,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:51,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:49:51,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:49:51,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:51,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63304 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:51,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:51,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:51,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:49:52,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:49:52,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:52,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59790 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:52,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:52,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:52,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:49:52,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:49:52,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:52,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:52,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:52,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:52,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:49:52,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:49:52,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:52,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59791 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:63869 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:56,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:56,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:56,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:49:57,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:49:57,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:57,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63870 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:57,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:57,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:57,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:49:57,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:49:57,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:57,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:57,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:57,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:57,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:49:58,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:49:58,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:58,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54227 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59795 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:49:58,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:49:58,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:49:58,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:49:58,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:49:58,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:49:58,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59796 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63877 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:00,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:00,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:00,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:50:00,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:50:00,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:00,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63878 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:01,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:01,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:01,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:50:01,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:50:01,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:01,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54231 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:03,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:03,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:03,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:50:04,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:50:04,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:04,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54232 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59800 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:63886 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:04,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:04,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:04,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:50:04,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:50:04,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:04,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59801 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:04,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:04,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:04,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:50:04,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:50:04,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:04,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63887 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56070 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:07,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:07,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:07,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:50:08,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:50:08,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:08,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56071 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54236 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:09,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:09,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:09,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:50:09,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:50:09,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:09,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54237 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63314 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:10,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:10,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:10,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:50:10,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:50:10,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:10,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:10,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:10,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:10,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:50:10,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:50:10,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:10,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63315 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54528 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:12,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:12,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:12,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:50:12,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:50:12,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:12,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54529 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56077 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:13,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:13,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:13,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:50:14,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:50:14,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:14,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56078 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57460 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:54241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:54534 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:50:16,001 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:50:16,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:50:16,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 01:50:16,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 01:50:16,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:50:16,301 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:63320 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54242 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:16,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:16,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:16,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:50:16,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:50:16,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:16,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54535 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:18,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:18,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:18,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:50:18,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:50:18,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:18,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60153 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:50:22,171 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:50:22,197 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=69.528 +2025-10-02 01:50:22,285 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.528 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 01:50:22,285 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 01:50:22,285 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 61.255.207.212:60154 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:54543 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:50:22,581 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:50:22,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:50:22,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-02 01:50:22,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-02 01:50:22,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:50:22,892 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:54248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54544 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59188 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:50:23,665 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:50:23,688 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=80.942 +2025-10-02 01:50:23,772 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.942 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 01:50:23,773 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:50:23,773 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 122.35.47.45:59189 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:59819 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:24,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:24,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:24,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:50:24,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:50:24,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:24,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59820 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60158 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:50:25,997 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:50:26,023 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=42.638 +2025-10-02 01:50:26,102 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.638 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 01:50:26,102 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 01:50:26,102 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 61.255.207.212:60159 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:26,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:26,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:26,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 01:50:26,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 01:50:26,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:26,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54551 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:50:26,842 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:50:26,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:50:26,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 01:50:27,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 01:50:27,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:50:27,119 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:8530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54552 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59824 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:28,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:28,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:28,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:50:29,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:50:29,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:29,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59825 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60163 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54252 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:30,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:30,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:30,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:50:30,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:50:30,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:30,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54253 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:50:30,618 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:50:30,658 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=73.893 +2025-10-02 01:50:30,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.893 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 01:50:30,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 01:50:30,747 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 61.255.207.212:60164 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:54561 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63333 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:32,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:32,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:32,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:50:32,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:50:32,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:32,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54562 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:32,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:32,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:32,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:50:32,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:50:32,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:32,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63334 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59829 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54257 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:36,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:36,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:36,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:50:36,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:50:36,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:36,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59830 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:36,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:36,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:36,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:50:36,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:50:36,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:36,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54258 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54569 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:40,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:40,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:40,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:50:40,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:50:40,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:40,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54571 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59837 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:42,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:42,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:42,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:50:42,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:50:42,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:42,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59838 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54262 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:43,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:43,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:43,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:50:43,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:50:43,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:43,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9958 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:50:43,401 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:50:43,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=57.941 +2025-10-02 01:50:43,500 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.941 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 01:50:43,500 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 01:50:43,500 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 175.119.234.181:9959 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:43094 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:54578 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:47,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:47,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:47,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:50:47,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:50:47,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:47,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54610 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:51,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:51,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:51,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:50:51,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:50:51,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:51,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54611 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54268 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:56,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:56,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:56,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:50:56,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:50:56,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:56,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54269 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59232 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:50:57,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:50:57,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:50:57,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:50:57,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:50:57,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:50:57,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59233 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54622 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:01,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:01,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:01,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:51:01,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:51:01,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:01,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54623 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59243 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:02,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:02,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:02,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:51:02,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:51:02,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:02,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59244 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59263 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:06,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:06,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:06,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:51:06,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:51:06,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:06,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59264 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54280 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:59269 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:51:10,490 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:51:10,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:51:10,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +2025-10-02 01:51:10,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +2025-10-02 01:51:10,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:51:10,755 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:59272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54281 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54637 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:12,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:12,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:12,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:51:12,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:51:12,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:12,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54638 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:13,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:13,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:13,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:51:13,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:51:13,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:13,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64323 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:51:13,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(801, 801, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:51:13,497 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 801, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=11.714 +2025-10-02 01:51:13,582 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.714 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 01:51:13,582 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:51:13,582 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 221.154.208.144:59849 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:59278 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40640 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:15,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:15,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:15,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:51:15,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:51:15,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:15,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59279 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54285 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:16,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:16,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:16,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:51:17,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:51:17,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:17,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54286 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59854 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9978 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:18,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:18,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:18,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:51:18,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:51:18,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:18,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59855 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59286 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:19,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:19,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:19,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 01:51:19,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 01:51:19,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:19,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9979 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:19,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:19,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:19,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:51:19,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:51:19,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:19,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59287 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56097 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:59295 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:23,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:23,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:23,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:51:23,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:51:23,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:23,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56098 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:23,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:23,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:23,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:51:23,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:51:23,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:23,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59296 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59859 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:24,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:24,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:24,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:51:24,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:51:24,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:24,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59860 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54295 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:51:25,173 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:51:25,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:51:25,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.258s +2025-10-02 01:51:25,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.258s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.258s (avg: 0.129s/image) +2025-10-02 01:51:25,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.258s (avg: 0.129s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:51:25,432 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:54296 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56103 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:29,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:29,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:29,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:51:29,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:51:29,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:29,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9988 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:51:30,137 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:51:30,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:51:30,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:51:30,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:51:30,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:51:30,421 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:9989 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56104 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59311 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:31,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:31,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:31,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:51:31,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:51:31,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:31,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59312 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54300 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:32,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:32,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:32,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:51:32,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:51:32,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:32,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54301 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59869 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:34,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:34,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:34,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:51:34,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:51:34,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:34,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59870 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:34,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:34,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:34,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:51:35,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:51:35,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:35,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60205 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56108 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54305 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:37,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:37,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:37,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:51:37,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:51:37,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:37,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56109 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:37,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:37,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:37,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:51:37,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:51:37,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:37,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54306 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60209 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:40,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:40,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:40,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:51:40,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:51:40,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:40,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60210 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56114 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:44,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:44,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:44,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:51:44,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:51:44,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:44,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56115 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10001 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:45,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:45,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:45,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:51:45,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:51:45,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:45,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10002 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59716 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:60216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:46,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:46,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:46,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:51:46,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:51:46,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:46,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54314 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:47,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:47,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:47,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:51:47,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:51:47,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:47,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54315 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10008 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:50,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:50,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:50,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:51:50,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:51:50,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:50,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10009 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56121 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:51,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:51,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:51,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:51:51,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:51:51,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:51,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56122 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:53,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:53,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:53,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:51:53,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:51:53,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:53,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54320 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:51:57,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:51:57,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:51:57,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:51:57,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:51:57,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:51:57,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54325 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60230 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:00,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:00,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:00,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:52:00,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:52:00,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:00,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60231 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56127 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:52:02,104 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:52:02,138 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=147.573 +2025-10-02 01:52:02,221 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.573 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 01:52:02,221 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:52:02,221 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 39.112.59.88:56128 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 125.242.75.181:60677 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:03,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:03,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:03,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:52:03,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:52:03,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:03,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:60679 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54332 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:04,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:04,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:04,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:52:04,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:52:04,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:04,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54333 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60237 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:07,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:07,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:07,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:52:07,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:52:07,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:07,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60238 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8542 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56133 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:10,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:10,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:10,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:52:10,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:52:10,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:10,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:11,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:11,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:11,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:52:11,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:52:11,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:11,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56134 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60243 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:59374 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:59375 - "GET /health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:12,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:12,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:12,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:52:12,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:52:12,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:12,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60244 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35922 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:60250 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:17,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:17,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:17,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:52:17,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:52:17,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:17,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60251 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:18,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:18,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:18,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:52:18,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:52:18,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:18,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54346 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:20,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:20,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:20,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:52:20,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:52:20,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:20,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56140 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60257 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:21,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:21,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:21,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:52:21,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:52:21,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:21,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60258 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59886 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:22,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:22,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:22,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:52:22,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:52:22,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:22,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59887 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59903 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:25,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:25,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:25,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:52:25,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:52:25,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:25,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59904 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:52:27,415 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:52:27,446 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=112.769 +2025-10-02 01:52:27,538 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.769 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 01:52:27,538 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 01:52:27,540 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 122.35.47.45:59412 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:56145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:28,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:28,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:28,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:52:28,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:52:28,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:28,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54794 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59908 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:28,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:28,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:28,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:52:29,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:52:29,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:29,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54795 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:29,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:29,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:29,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:52:29,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:52:29,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:29,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59909 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:33,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:33,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:33,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:52:33,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:52:33,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:33,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59421 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56150 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:35,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:35,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:35,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:52:35,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:52:35,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:35,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8550 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:52:35,518 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:52:35,543 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=53.532 +2025-10-02 01:52:35,630 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.532 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 01:52:35,630 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 01:52:35,630 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 118.41.33.196:8551 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:59916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:35,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:35,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:35,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:52:36,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:52:36,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:36,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59921 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:37,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:37,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:37,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:52:37,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:52:37,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:37,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59922 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59429 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:38,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:38,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:38,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:52:38,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:52:38,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:38,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59430 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8555 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:52:39,327 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:52:39,346 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=116.609 +2025-10-02 01:52:39,429 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.609 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 01:52:39,429 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:52:39,429 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 118.41.33.196:8556 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:10052 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:39,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:39,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:39,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:52:39,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:52:39,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:39,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10053 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:60699 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:52:40,389 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:52:40,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=166.183 +2025-10-02 01:52:40,491 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.183 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 01:52:40,491 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 01:52:40,491 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 125.242.75.181:60700 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:59926 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:41,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:41,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:41,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:52:41,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:52:41,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:41,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:42,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:42,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:42,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:52:42,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:52:42,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:42,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:45,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:45,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:45,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:52:45,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:52:45,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:45,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36818 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:59937 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:46,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:46,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:46,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:52:46,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:52:46,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:46,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59938 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:48,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:48,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:48,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:52:48,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:52:48,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:48,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59447 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:51,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:51,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:51,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:52:51,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:52:51,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:51,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59448 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:53,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:53,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:53,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:52:53,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:52:53,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:53,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56162 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:57,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:57,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:57,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:52:57,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:52:57,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:57,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8564 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63363 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:58,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:58,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:58,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 01:52:58,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 01:52:58,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:58,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59951 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:52:58,510 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:52:58,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=77.930 +2025-10-02 01:52:58,633 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.930 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.099s +2025-10-02 01:52:58,633 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 01:52:58,634 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +INFO: 220.77.167.192:63364 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:52:58,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:52:58,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:52:58,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:52:59,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:52:59,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:52:59,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59952 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56172 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:01,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:01,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:01,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:53:01,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:53:01,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:01,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 125.242.75.181:64128 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:02,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:02,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:02,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:53:03,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:53:03,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:03,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 125.242.75.181:64129 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8569 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:04,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:04,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:04,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:53:04,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:53:04,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:04,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56173 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59468 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:59962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:04,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:04,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:04,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:53:04,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:53:04,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:04,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8570 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:05,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:05,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:05,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 01:53:05,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 01:53:05,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:05,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59469 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:05,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:05,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:05,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:53:05,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:53:05,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:05,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59963 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54838 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:07,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:07,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:07,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:53:07,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:53:07,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:07,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54839 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56178 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55014 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:08,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:08,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:08,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:53:08,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:53:08,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:08,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56179 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:08,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:08,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:08,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:53:08,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:53:08,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:08,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55015 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:09,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:09,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:09,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:53:09,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:53:09,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:09,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:10,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:10,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:10,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:53:10,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:53:10,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:10,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8575 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56183 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:54843 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:12,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:12,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:12,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:53:12,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:53:12,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:12,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56184 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:13,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:13,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:13,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:53:13,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:53:13,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:13,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54844 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59493 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58680 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:15,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:15,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:16,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:53:16,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:53:16,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:16,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59494 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:59979 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:16,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:16,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:16,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:53:16,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:53:16,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:16,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:59980 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56188 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:17,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:17,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:17,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:53:18,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:53:18,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:18,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56190 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59500 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:20,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:20,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:20,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:53:20,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:53:20,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:20,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59501 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56194 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:22,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:22,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:22,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:53:22,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:53:22,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:22,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56195 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59509 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:24,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:24,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:24,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:53:24,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:53:24,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:24,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59510 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:28,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:28,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:28,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:53:28,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:53:28,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:28,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56201 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59524 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:30,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:30,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:30,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:53:30,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:53:30,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:30,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60314 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:32,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:32,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:32,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:53:32,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:53:32,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:32,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60315 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56205 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:54865 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:33,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:33,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:33,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 01:53:33,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 01:53:33,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:33,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54866 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:33,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:33,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:33,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:53:33,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:53:33,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:33,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56206 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59531 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:34,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:34,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:34,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 01:53:34,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 01:53:34,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:34,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59532 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54389 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:35,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:35,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:35,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:53:35,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:53:35,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:35,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54390 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54870 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:36,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:36,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:36,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:53:36,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:53:36,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:36,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54871 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60321 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:38,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:38,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:38,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:53:38,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:53:38,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:38,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59538 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:38,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:38,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:38,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:53:38,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:53:38,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:38,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60322 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:41,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:41,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:41,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:53:41,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:53:41,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:41,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54396 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59544 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:42,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:42,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:42,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:53:42,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:53:42,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:42,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59545 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60328 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:43,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:43,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:43,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:53:43,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:53:43,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:43,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60329 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54400 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56220 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:45,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:45,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:45,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:53:45,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:53:45,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:45,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54401 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46828 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:46,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:46,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:46,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:53:46,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:53:46,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:46,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56221 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10068 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60333 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:48,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:48,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:48,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:53:48,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:53:48,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:48,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10069 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:48,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:48,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:48,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:53:48,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:53:48,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:48,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60334 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:51,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:51,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:51,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:53:51,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:53:51,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:51,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54910 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54408 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:51,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:51,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:51,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:53:52,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:53:52,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:52,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54911 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:52,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:52,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:52,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:53:52,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:53:52,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:52,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54409 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63388 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60340 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:53,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:53,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:53,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:53:53,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:53:53,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:53,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63389 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59568 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:53,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:53,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:53,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:53:53,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:53:53,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:53,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:54,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:54,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:54,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:53:54,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:53:54,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:54,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:59569 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10079 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:55,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:55,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:55,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:53:55,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:53:55,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:55,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10080 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:56,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:56,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:56,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:53:56,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:53:56,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:56,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54918 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:58,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:58,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:58,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:53:58,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:53:58,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:58,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54919 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54416 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:53:59,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:53:59,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:53:59,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:53:59,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:53:59,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:53:59,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54417 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10084 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:00,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:00,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:00,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:54:00,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:54:00,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:00,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10085 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:01,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:01,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:01,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:54:01,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:54:01,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:01,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54421 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:02,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:02,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:02,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:54:02,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:54:02,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:02,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54422 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65202 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:03,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:03,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:03,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 01:54:03,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 01:54:03,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:03,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65203 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:54927 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:04,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:04,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:04,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:54:04,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:54:04,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:04,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:05,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:05,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:05,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:54:05,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:54:05,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:05,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54928 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10094 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:06,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:06,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:06,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:54:06,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:54:06,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:06,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10095 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:54937 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:08,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:08,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:08,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:54:09,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:54:09,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:09,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65212 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54426 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:09,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:09,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:09,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:54:09,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:54:09,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:09,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54938 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:09,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:09,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:09,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:54:09,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:54:09,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:09,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54427 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10102 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63399 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:54:11,528 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:54:11,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:54:11,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 01:54:11,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-02 01:54:11,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:54:11,799 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:63400 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10103 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54942 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56256 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:54:12,729 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:54:12,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:54:12,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 01:54:13,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-02 01:54:13,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:54:13,004 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:56257 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54943 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59605 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50276 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:16,023 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:16,060 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=116.494 +2025-10-02 01:54:16,165 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.494 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.104s +2025-10-02 01:54:16,166 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-02 01:54:16,168 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +INFO: 122.35.47.45:59606 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:56262 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63404 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55037 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:16,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:16,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:17,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:54:17,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:54:17,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:17,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:54951 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:17,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:17,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:17,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:54:17,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:54:17,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:17,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55038 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:17,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:17,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:17,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:54:18,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:54:18,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:18,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63405 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:18,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:18,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:18,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:54:18,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:54:18,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:18,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:54953 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8586 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:20,581 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:20,609 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=58.983 +2025-10-02 01:54:20,693 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.983 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 01:54:20,694 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:54:20,694 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 118.41.33.196:8587 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:60354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:21,569 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:21,600 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=102.923 +2025-10-02 01:54:21,682 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.923 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 01:54:21,683 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:54:21,683 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 61.255.207.212:60355 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:56270 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:23,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:23,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:23,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:54:23,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:54:23,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:23,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56271 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8591 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:24,484 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:24,511 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=32.135 +2025-10-02 01:54:24,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.135 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 01:54:24,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 01:54:24,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 118.41.33.196:8592 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:60360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:25,341 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:25,361 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=127.725 +2025-10-02 01:54:25,437 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.725 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 01:54:25,437 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 01:54:25,438 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 61.255.207.212:60361 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:56277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:26,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:26,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:26,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:54:26,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:54:26,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:26,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:27,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:27,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:27,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:54:27,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:54:27,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:27,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54446 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:28,152 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:28,175 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=163.085 +2025-10-02 01:54:28,252 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.085 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 01:54:28,252 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 01:54:28,252 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 118.41.33.196:8597 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:63410 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:28,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:28,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:28,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:54:28,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:54:28,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:28,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63411 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:54:29,185 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:54:29,205 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=176.818 +2025-10-02 01:54:29,277 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.818 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.071s +2025-10-02 01:54:29,277 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 01:54:29,277 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +INFO: 61.255.207.212:60367 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:56282 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:30,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:30,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:30,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:54:30,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:54:30,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:30,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56283 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:36,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:36,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:36,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:54:36,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:54:36,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:36,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60375 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55013 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:41,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:41,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:41,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:54:41,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:54:41,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:41,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55014 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60379 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:41,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:41,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:41,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 01:54:42,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 01:54:42,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:42,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60380 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50662 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:55021 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:46,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:46,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:46,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 01:54:46,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 01:54:46,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:46,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55022 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8611 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:51,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:51,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:51,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:54:51,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:54:51,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:51,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8612 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8616 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:54:57,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:54:57,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:54:57,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:54:57,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:54:57,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:54:57,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8617 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60393 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:00,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:00,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:00,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:55:00,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:55:00,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:00,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60394 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60040 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:01,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:01,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:01,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:55:01,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:55:01,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:01,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60041 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60403 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60048 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:06,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:06,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:06,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:55:06,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:55:06,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:06,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60404 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10121 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:07,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:07,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:07,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:55:07,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:55:07,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:07,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60049 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:55:07,463 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:55:07,485 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=61.020 +2025-10-02 01:55:07,567 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.020 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 01:55:07,567 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 01:55:07,569 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 175.119.234.181:10122 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:07,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:07,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:07,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 01:55:07,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 01:55:07,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:07,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8625 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:12,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:12,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:12,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:55:12,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:55:12,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:12,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8629 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:13,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:13,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:13,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:55:13,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:55:13,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:13,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8630 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38122 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:60058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:16,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:16,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:16,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:55:16,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:55:16,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:16,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10169 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:17,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:17,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:17,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:55:17,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:55:17,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:17,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10170 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56300 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8634 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:18,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:18,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:18,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:55:18,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:55:18,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:18,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56301 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:19,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:19,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:19,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:55:19,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:55:19,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:19,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8635 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60063 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:19,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:19,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:19,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:55:20,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:55:20,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:20,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60064 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60072 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:23,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:23,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:23,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:55:24,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:55:24,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:24,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60073 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:25,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:25,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:25,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:55:26,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:55:26,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:26,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56307 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63476 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8645 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:26,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:26,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:26,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:55:27,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:55:27,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:27,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63477 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60428 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60077 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:27,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:27,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:27,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:55:27,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:55:27,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:27,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60078 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:27,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:27,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:27,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:55:28,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:55:28,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:28,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8646 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:28,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:28,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:28,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:55:28,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:55:28,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:28,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60429 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8650 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56312 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:33,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:33,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:33,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:55:33,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:55:33,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:33,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8651 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59713 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:55:34,371 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:55:34,404 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=115.813 +2025-10-02 01:55:34,503 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.813 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.097s +2025-10-02 01:55:34,503 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-02 01:55:34,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +INFO: 122.35.47.45:59714 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:34,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:34,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:34,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:55:34,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:55:34,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:34,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56313 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60085 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:36,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:36,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:36,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:55:36,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:55:36,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:36,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60086 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:37,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:37,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:37,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:55:37,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:55:37,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:37,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63482 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:38,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:38,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:38,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:55:38,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:55:38,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:38,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56318 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:41,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:41,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:41,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:55:42,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:55:42,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:42,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56319 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60094 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:55:43,575 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:55:43,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:55:43,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 01:55:43,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 01:55:43,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:55:43,860 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:60446 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60095 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37858 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:54458 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:46,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:46,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:46,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:55:46,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:55:46,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:46,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54459 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63486 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:47,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:47,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:47,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:55:47,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:55:47,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:47,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63487 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:48,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:48,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:48,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 01:55:48,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 01:55:48,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:48,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:48,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:48,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:48,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:55:48,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:55:48,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:48,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56325 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54464 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:53,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:53,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:53,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:55:53,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:55:53,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:53,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54465 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56330 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:55:56,139 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:55:56,162 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=87.163 +2025-10-02 01:55:56,245 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.163 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 01:55:56,245 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 01:55:56,246 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 39.112.59.88:56331 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:10186 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:57,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:57,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:57,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:55:57,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:55:57,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:57,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10187 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:58,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:58,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:58,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:55:58,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:55:58,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:58,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54469 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:55:59,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:55:59,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:55:59,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:55:59,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:55:59,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:55:59,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54470 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10192 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:01,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:01,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:01,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:56:01,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:56:01,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:01,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10193 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56335 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55076 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:03,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:03,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:03,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:56:04,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:56:04,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:04,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56336 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:04,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:04,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:04,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:56:04,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:56:04,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:04,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55077 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10198 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:06,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:06,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:06,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:56:06,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:56:06,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:06,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54475 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56342 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:12,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:12,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:12,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 01:56:12,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 01:56:12,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:12,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10199 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:13,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:13,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:13,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:56:13,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:56:13,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:13,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60105 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54580 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:15,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:15,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:15,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:56:16,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:56:16,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:16,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56343 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:56:16,204 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:56:16,234 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=141.869 +2025-10-02 01:56:16,318 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.869 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 01:56:16,318 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 01:56:16,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 221.154.208.144:60106 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:10208 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:17,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:17,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:17,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:56:17,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:56:17,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:17,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10209 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54484 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:19,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:19,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:19,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:56:19,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:56:19,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:19,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54485 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:21,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:21,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:21,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:56:21,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:56:21,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:21,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56348 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:21,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:21,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:21,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:56:22,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:56:22,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:22,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55143 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:22,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:22,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:22,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:56:22,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:56:22,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:22,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56349 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54490 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:49396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:56:25,122 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:56:25,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:56:25,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 01:56:25,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-02 01:56:25,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:56:25,405 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:54491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:26,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:26,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:26,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:56:26,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:56:26,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:26,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49401 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:27,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:27,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:27,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:56:27,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:56:27,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:27,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10224 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55149 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:29,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:29,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:29,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:56:29,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:56:29,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:29,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55150 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54495 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:49502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10229 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:31,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:31,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:31,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:56:31,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:56:31,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:31,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54496 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:56:31,895 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:56:31,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:56:31,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 01:56:32,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-02 01:56:32,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:56:32,194 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:10230 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49504 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:32,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:32,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:32,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:56:32,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:56:32,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:32,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8678 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:56:37,640 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:56:37,669 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=90.967 +2025-10-02 01:56:37,761 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.967 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 01:56:37,761 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 01:56:37,763 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 118.41.33.196:8679 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:49630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:39,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:39,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:39,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:56:39,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:56:39,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:39,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54500 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:39,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:39,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:40,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:56:40,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:56:40,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:40,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54501 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:56:42,543 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:56:42,570 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=30.921 +2025-10-02 01:56:42,674 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.921 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.103s +2025-10-02 01:56:42,674 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-02 01:56:42,675 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +INFO: 118.41.33.196:8684 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:54505 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:45,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:45,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:45,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:56:46,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:56:46,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:46,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54506 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37758 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:8688 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:56:46,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:56:46,602 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=32.030 +2025-10-02 01:56:46,697 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.030 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 01:56:46,698 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 01:56:46,699 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 118.41.33.196:8689 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:56382 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:48,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:48,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:48,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:56:48,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:56:48,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:48,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56383 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:48,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:48,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:48,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:56:48,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:56:48,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:48,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54510 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:51,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:51,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:51,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:56:51,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:56:51,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:51,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54511 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10249 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60472 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:56:53,791 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:56:53,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:56:53,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 01:56:54,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-02 01:56:54,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:56:54,094 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:10250 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60473 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55209 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:54,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:54,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:54,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:56:54,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:56:54,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:54,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55210 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56391 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54515 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:56,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:56,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:56,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:56:57,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:56:57,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:57,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54516 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:57,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:57,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:57,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:56:57,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:56:57,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:57,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56392 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55214 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10255 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:59,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:59,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:59,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:56:59,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:56:59,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:59,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55215 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:59,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:59,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:56:59,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:56:59,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:56:59,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:56:59,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10256 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60480 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:56:59,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:56:59,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:00,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:57:00,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:57:00,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:00,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60481 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49948 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56397 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:02,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:02,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:02,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:57:02,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:57:02,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:02,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49949 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:02,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:02,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:02,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:57:02,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:57:02,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:02,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56398 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55219 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:03,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:03,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:03,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:57:03,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:57:03,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:03,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55220 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54521 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:04,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:04,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:04,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:57:04,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:57:04,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:04,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54522 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:04,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:04,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:04,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 01:57:04,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 01:57:04,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:04,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10261 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60485 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:04,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:04,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:04,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:57:05,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:57:05,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:05,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60486 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10265 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:55224 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:57:08,265 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:57:08,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:57:08,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 01:57:08,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 01:57:08,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:57:08,569 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:10266 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55225 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54526 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:10,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:10,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:10,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:57:10,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:57:10,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:10,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54527 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:11,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:11,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:11,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 01:57:11,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 01:57:11,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:11,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8699 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:12,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:12,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:12,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:57:12,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:57:12,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:12,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50094 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:12,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:12,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:12,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 01:57:12,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 01:57:12,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:12,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50097 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:13,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:13,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:13,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:57:13,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:57:13,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:13,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55235 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:14,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:14,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:14,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:57:14,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:57:14,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:14,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55236 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8703 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49854 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:54531 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:16,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:16,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:16,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:57:16,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:57:16,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:16,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8704 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:16,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:16,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:16,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:57:16,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:57:16,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:16,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54532 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60500 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:17,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:17,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:17,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:57:17,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:57:17,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:17,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60501 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56409 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:18,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:18,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:18,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:57:18,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:57:18,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:18,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56410 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54536 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:21,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:21,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:21,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:57:21,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:57:21,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:21,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54537 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50118 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:21,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:21,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:22,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:57:22,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:57:22,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:22,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50119 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60506 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:22,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:22,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:22,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:57:22,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:57:22,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:22,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60507 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:23,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:23,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:23,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:57:23,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:57:23,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:23,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:24,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:24,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:24,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:57:24,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:57:24,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:24,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8710 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50126 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:26,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:26,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:26,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:57:26,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:57:26,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:26,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50127 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:26,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:26,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:26,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:57:27,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:57:27,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:27,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60514 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54541 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:27,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:27,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:27,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:57:27,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:57:27,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:27,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54542 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55254 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:28,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:28,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:28,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:57:28,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:57:28,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:28,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55255 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:59888 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:59889 - "GET /health HTTP/1.1" 200 OK +INFO: 118.41.33.196:8714 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:29,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:29,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:29,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:57:30,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:57:30,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:30,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8715 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50134 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:30,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:30,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:31,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:57:31,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:57:31,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:31,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50135 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56421 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60519 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:55260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:57:31,837 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:57:31,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:57:31,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 01:57:32,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-02 01:57:32,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:57:32,136 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:60520 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55261 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54546 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:57:32,362 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:57:32,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:57:32,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 01:57:32,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-02 01:57:32,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:57:32,637 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:56422 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54547 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55285 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8719 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:50142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:36,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:36,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:36,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:57:36,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:57:36,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:36,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55286 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56427 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:36,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:36,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:36,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 01:57:36,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 01:57:36,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:36,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8720 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54551 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:36,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:36,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:36,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:57:36,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:57:36,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:36,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50143 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:57:37,123 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:57:37,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:57:37,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 01:57:37,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-02 01:57:37,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:57:37,394 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:56428 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54552 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:40,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:40,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:40,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 01:57:40,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 01:57:40,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:40,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10305 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:55296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:41,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:41,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:41,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 01:57:41,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 01:57:41,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:41,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:41,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:41,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:41,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:57:41,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:57:41,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:41,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55297 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54557 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:42,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:42,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:42,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:57:42,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:57:42,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:42,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54558 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8724 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56432 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:42,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:42,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:42,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:57:42,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:57:42,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:42,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8725 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:43,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:43,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:43,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:57:43,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:57:43,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:43,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56433 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10325 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:45,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:45,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:45,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:57:46,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:57:46,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:46,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10326 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47574 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:50159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:46,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:46,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:46,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:57:46,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:57:46,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:46,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50161 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:46,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:46,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:46,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:57:47,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:57:47,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:47,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54563 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8729 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:48,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:48,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:48,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:57:48,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:57:48,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:48,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8730 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:49,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:49,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:49,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:57:50,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:57:50,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:50,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50167 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:51,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:51,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:51,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:57:51,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:57:51,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:51,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50168 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54567 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:52,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:52,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:52,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:57:52,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:57:52,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:52,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54568 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8734 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:54,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:54,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:54,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:57:54,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:57:54,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:54,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8735 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56448 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:55,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:55,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:55,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:57:55,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:57:55,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:55,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56449 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50219 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:56,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:56,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:56,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 01:57:56,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 01:57:56,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:56,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:57:56,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:57:56,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:57:56,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 01:57:56,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 01:57:56,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:57:56,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:57:59,658 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:57:59,703 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=115.227 +2025-10-02 01:57:59,792 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.227 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 01:57:59,792 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 01:57:59,795 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 61.255.207.212:60530 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:00,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:00,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:00,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:58:00,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:58:00,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:00,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8740 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50290 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56453 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54577 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:01,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:01,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:01,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 01:58:01,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 01:58:01,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:01,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54578 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:58:01,831 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:58:01,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:58:01,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.318s +2025-10-02 01:58:02,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.318s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.318s (avg: 0.159s/image) +2025-10-02 01:58:02,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.318s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:58:02,150 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:56454 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50291 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:58:04,293 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:58:04,330 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=41.922 +2025-10-02 01:58:04,420 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.922 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 01:58:04,420 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 01:58:04,422 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 61.255.207.212:60536 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:50302 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:59947 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:06,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:06,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:06,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 01:58:06,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 01:58:06,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:06,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50303 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:58:07,008 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(923, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:58:07,033 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(923, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=41.912 +2025-10-02 01:58:07,119 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.912 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 01:58:07,119 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 01:58:07,120 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 122.35.47.45:59948 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:54582 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60542 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:07,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:07,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:07,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:58:07,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:58:07,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:07,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54583 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:58:07,610 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:58:07,626 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=51.463 +2025-10-02 01:58:07,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.463 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.069s +2025-10-02 01:58:07,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-02 01:58:07,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +INFO: 61.255.207.212:60543 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:07,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:07,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:07,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.123s +2025-10-02 01:58:07,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.123s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.123s (avg: 0.123s/image) +2025-10-02 01:58:07,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.123s (avg: 0.123s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:07,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56467 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:12,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:12,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:12,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 01:58:12,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 01:58:12,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:12,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56468 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54587 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60547 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:12,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:12,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:13,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:58:13,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:58:13,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:13,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:13,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:13,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:13,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:58:13,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:58:13,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:13,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60548 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58580 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:50317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:16,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:16,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:16,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 01:58:16,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 01:58:16,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:16,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54592 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:17,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:17,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:17,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:58:18,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:58:18,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:18,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54593 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54598 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:22,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:22,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:22,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:58:22,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:58:22,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:22,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54599 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:25,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:25,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:25,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:58:25,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:58:25,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:25,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:26,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:26,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:26,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:58:26,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:58:26,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:26,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56482 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54603 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:28,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:28,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:28,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:58:29,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:58:29,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:29,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54604 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50339 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:30,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:30,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:30,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:58:30,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:58:30,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:30,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50340 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54608 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:35,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:35,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:35,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 01:58:35,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 01:58:35,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:35,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54609 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60568 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:38,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:38,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:38,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 01:58:38,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 01:58:38,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:38,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60569 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54613 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:40,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:40,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:40,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:58:40,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:58:40,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:40,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54614 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60573 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:42,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:42,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:42,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 01:58:42,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 01:58:42,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:42,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60574 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54618 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:45,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:45,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:45,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:58:45,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:58:45,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:45,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54619 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40854 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:46,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:46,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:46,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:58:46,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:58:46,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:46,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:50,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:50,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:50,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:58:50,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:58:50,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:50,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54625 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10444 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 01:58:55,093 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 01:58:55,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=40.258 +2025-10-02 01:58:55,189 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.258 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 01:58:55,190 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 01:58:55,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 175.119.234.181:10445 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:54629 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:55,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:55,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:55,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 01:58:55,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 01:58:55,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:55,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54630 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60592 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:58:58,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:58:58,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:58:58,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 01:58:58,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 01:58:58,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:58:58,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60593 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54636 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:00,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:00,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:00,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:59:00,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:59:00,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:00,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54637 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60033 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:03,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:03,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:03,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 01:59:03,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 01:59:03,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:03,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60034 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54641 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:05,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:05,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:05,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:59:05,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:59:05,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:05,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54642 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8793 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:07,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:07,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:07,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:59:08,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:59:08,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:08,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8794 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60606 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:59:10,416 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:59:10,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:59:10,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-02 01:59:10,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-02 01:59:10,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:59:10,727 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:60607 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:13,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:13,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:14,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:59:14,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:59:14,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:14,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:15,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:15,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:15,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 01:59:15,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 01:59:15,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:15,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54653 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52796 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:8804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:18,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:18,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:18,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:59:18,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:59:18,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:18,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8805 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55419 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:18,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:18,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:18,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 01:59:19,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 01:59:19,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:19,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55420 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:19,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:19,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:19,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 01:59:19,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 01:59:19,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:19,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50456 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54657 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:20,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:20,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:20,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:59:20,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:59:20,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:20,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54658 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60627 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8809 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:23,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:23,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:23,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 01:59:23,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 01:59:23,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:23,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60628 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:23,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:23,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:23,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:59:23,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:59:23,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:23,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8810 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50465 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:55437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:24,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:24,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:24,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:59:25,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:59:25,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:25,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50466 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:25,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:25,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:25,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 01:59:25,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 01:59:25,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:25,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:26,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:26,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:26,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:59:26,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:59:26,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:26,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54663 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8814 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:27,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:27,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:27,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:59:27,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:59:27,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:27,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8815 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10470 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:28,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:28,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:28,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:59:28,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:59:28,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:28,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10471 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:28,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:28,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:28,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 01:59:28,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 01:59:28,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:28,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:55449 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:59:30,046 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:59:30,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:59:30,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-02 01:59:30,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-02 01:59:30,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:59:30,320 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:50474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55450 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:31,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:31,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:31,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:59:31,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:59:31,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:31,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54668 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8819 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:32,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:32,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:32,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:59:32,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:59:32,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:32,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8820 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60645 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:33,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:33,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:33,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 01:59:33,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 01:59:33,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:33,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60646 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55456 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:34,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:34,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:34,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 01:59:34,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 01:59:34,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:34,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55457 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8824 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:50483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:36,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:36,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:36,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 01:59:36,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 01:59:36,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:36,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8825 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:36,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:36,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:36,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 01:59:36,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 01:59:36,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:36,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:36,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:36,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:36,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 01:59:36,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 01:59:36,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:36,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54673 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:37,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:37,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:37,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 01:59:37,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 01:59:37,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:37,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54678 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:55466 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:50511 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:59:41,880 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:59:41,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:59:41,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 01:59:42,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 01:59:42,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:59:42,166 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:8830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54679 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55467 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:42,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:42,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:42,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:59:42,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:59:42,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:42,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50513 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:42,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:42,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:42,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 01:59:42,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 01:59:42,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:42,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8831 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49806 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:60667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8835 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:47,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:47,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:47,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 01:59:47,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 01:59:47,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:47,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60668 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 01:59:47,565 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 01:59:47,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 01:59:47,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 01:59:47,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 01:59:47,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 01:59:47,848 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:8836 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54684 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:48,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:48,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:48,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 01:59:48,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 01:59:48,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:48,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55475 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50558 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:48,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:48,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:48,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 01:59:48,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 01:59:48,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:48,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50559 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:49,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:49,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:49,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:59:49,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:59:49,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:49,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60673 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60153 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:50,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:50,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:50,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:59:50,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:59:50,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:50,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60154 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55496 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:52,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:52,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:52,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 01:59:52,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 01:59:52,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:52,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54688 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:52,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:52,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:52,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 01:59:52,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 01:59:52,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:52,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54689 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50566 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:54,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:54,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:54,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:59:54,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:59:54,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:54,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50567 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55503 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:56,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:56,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:56,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 01:59:57,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 01:59:57,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:57,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55504 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:57,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:57,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:57,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 01:59:57,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 01:59:57,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:57,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:58,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:58,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:58,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 01:59:58,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 01:59:58,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:58,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60686 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 01:59:59,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 01:59:59,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 01:59:59,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 01:59:59,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 01:59:59,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 01:59:59,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50575 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55508 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:01,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:01,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:01,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:00:01,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:00:01,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:01,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55509 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50583 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:00:04,354 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:00:04,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:00:04,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 02:00:04,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 02:00:04,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:00:04,644 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:50584 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54699 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:06,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:06,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:06,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:00:06,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:00:06,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:06,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:00:06,566 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:00:06,583 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=104.529 +2025-10-02 02:00:06,667 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.529 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 02:00:06,667 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:00:06,667 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 122.35.47.45:60171 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:55513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:00:07,020 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:00:07,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:00:07,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 02:00:07,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 02:00:07,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:00:07,308 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:55514 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54704 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:10,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:10,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:10,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:00:10,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:00:10,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:10,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54705 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50592 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:11,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:11,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:11,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:00:11,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:00:11,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:11,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50593 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:55518 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:00:12,357 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:00:12,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:00:12,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 02:00:12,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 02:00:12,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:00:12,641 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:60180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55519 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:13,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:13,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:13,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:00:13,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:00:13,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:13,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55242 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:15,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:15,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:15,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:00:15,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:00:15,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:15,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54710 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40298 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:60188 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55246 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:55527 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:00:18,373 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:00:18,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:00:18,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 02:00:18,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 02:00:18,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:00:18,670 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:60189 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55247 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:18,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:18,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:18,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:00:18,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:00:18,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:18,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55528 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54714 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:20,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:20,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:20,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:00:20,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:00:20,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:20,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54715 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:20,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:20,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:20,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:00:21,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:00:21,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:21,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10538 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:22,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:22,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:22,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:00:23,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:00:23,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:23,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55536 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:23,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:23,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:23,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:00:23,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:00:23,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:23,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55537 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60198 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54720 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:24,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:24,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:24,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:00:24,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:00:24,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:24,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60199 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:25,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:25,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:25,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:00:25,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:00:25,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:25,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54721 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55258 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:27,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:27,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:27,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:00:27,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:00:27,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:27,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55259 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10544 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:28,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:28,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:28,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:00:28,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:00:28,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:28,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10545 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55543 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:28,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:28,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:28,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:00:29,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:00:29,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:29,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55544 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:30,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:30,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:30,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:00:30,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:00:30,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:30,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54726 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60206 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55265 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:00:32,347 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:00:32,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:00:32,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-02 02:00:32,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-02 02:00:32,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:00:32,652 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:60207 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55266 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10553 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56533 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:35,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:35,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:35,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:00:35,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:00:35,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:35,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10554 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:00:35,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:00:35,604 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=210.269 +2025-10-02 02:00:35,694 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=210.269 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 02:00:35,694 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 02:00:35,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 39.112.59.88:56534 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:55270 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54730 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:00:37,153 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:00:37,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:00:37,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 02:00:37,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-02 02:00:37,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:00:37,453 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:55271 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54731 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55603 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:60216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:39,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:39,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:39,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:00:39,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:00:39,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:39,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55604 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:39,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:39,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:39,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:00:39,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:00:39,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:39,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55608 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54735 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10559 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:42,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:42,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:42,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:00:42,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:00:42,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:42,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55609 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:42,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:42,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:42,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:00:42,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:00:42,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:42,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54736 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:42,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:42,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:42,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:00:43,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:00:43,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:43,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10560 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56556 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49606 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:46,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:46,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:46,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:00:46,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:00:46,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:46,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56557 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55617 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:48,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:48,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:48,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:00:48,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:00:48,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:48,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55618 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54740 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:49,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:49,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:49,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:00:49,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:00:49,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:49,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54741 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10564 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:49,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:49,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:49,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:00:49,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:00:49,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:49,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54745 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:54,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:54,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:54,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:00:54,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:00:54,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:54,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54746 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:56,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:56,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:56,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:00:56,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:00:56,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:56,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55628 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:58,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:58,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:58,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:00:58,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:00:58,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:58,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55629 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:59,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:59,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:59,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:00:59,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:00:59,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:59,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:50690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:00:59,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:00:59,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:00:59,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:00:59,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:00:59,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:00:59,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:00,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:00,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:00,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:01:00,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:01:00,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:00,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10577 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:60250 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:03,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:03,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:03,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:01:03,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:01:03,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:03,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10578 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54756 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:03,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:03,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:03,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:01:03,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:01:03,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:03,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54757 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55633 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:04,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:04,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:04,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:01:04,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:01:04,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:04,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60251 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:04,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:04,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:04,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:01:04,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:01:04,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:04,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55634 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50699 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8856 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:06,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:06,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:06,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:01:06,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:01:06,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:06,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50701 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:01:06,986 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:01:07,029 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=99.851 +2025-10-02 02:01:07,127 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.851 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.097s +2025-10-02 02:01:07,128 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-02 02:01:07,130 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +INFO: 118.41.33.196:8857 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:60262 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:08,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:08,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:08,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:01:08,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:01:08,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:08,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54761 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:10,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:10,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:10,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:01:10,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:01:10,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:10,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54762 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:01:12,295 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(641, 641, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:01:12,317 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(641, 641, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=105.253 +2025-10-02 02:01:12,390 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.253 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 02:01:12,391 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:01:12,391 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 118.41.33.196:8862 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:50710 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:12,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:12,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:12,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:01:13,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:01:13,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:13,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50711 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60272 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:14,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:14,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:14,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:01:14,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:01:14,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:14,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54766 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:15,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:15,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:15,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:01:15,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:01:15,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:15,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54767 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8866 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56356 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:01:16,302 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:01:16,334 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=120.702 +2025-10-02 02:01:16,410 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.702 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:01:16,411 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:01:16,411 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 118.41.33.196:8867 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:56593 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:50718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:18,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:18,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:18,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:01:18,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:01:18,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:18,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:18,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:18,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:18,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:01:18,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:01:18,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:18,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56594 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54771 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:20,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:20,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:20,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:01:20,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:01:20,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:20,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:20,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:20,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:21,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:01:21,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:01:21,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:21,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54772 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56599 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:24,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:24,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:24,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:01:24,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:01:24,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:24,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56600 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60293 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:24,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:24,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:24,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:01:24,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:01:24,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:24,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60294 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:50892 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:30,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:30,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:30,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:01:31,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:01:31,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:31,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50893 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56617 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:33,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:33,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:33,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:01:33,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:01:33,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:33,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60305 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:33,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:33,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:33,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:01:34,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:01:34,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:34,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56618 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51003 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:36,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:36,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:36,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:01:36,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:01:36,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:36,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51005 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60316 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56625 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:38,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:38,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:38,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:01:38,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:01:38,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:38,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60317 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:39,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:39,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:39,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:01:39,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:01:39,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:39,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56626 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60322 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:41,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:41,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:41,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:01:41,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:01:41,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:41,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60323 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:42,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:42,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:42,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:01:42,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:01:42,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:42,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51127 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54781 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:43,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:43,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:43,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:01:43,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:01:43,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:43,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60329 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53646 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:46,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:46,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:46,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:01:46,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:01:46,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:46,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60330 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56638 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:49,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:49,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:49,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:01:49,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:01:49,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:49,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56640 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:60342 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:50,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:50,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:50,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:01:50,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:01:50,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:50,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51267 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60726 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8886 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:50,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:50,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:50,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:01:51,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:01:51,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:51,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60727 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:51,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:51,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:51,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:01:51,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:01:51,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:51,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60343 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:51,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:51,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:51,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:01:51,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:01:51,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:51,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8887 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:52,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:52,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:52,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:01:52,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:01:52,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:52,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:54,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:54,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:54,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:01:54,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:01:54,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:54,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51347 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56649 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:55,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:55,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:55,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:01:55,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:01:55,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:55,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51350 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8891 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:55,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:55,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:56,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:01:56,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:01:56,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:56,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56650 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:56,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:56,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:56,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 02:01:56,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 02:01:56,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:56,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8892 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10594 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:01:57,548 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:01:57,572 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=48.690 +2025-10-02 02:01:57,656 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.690 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 02:01:57,656 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:01:57,657 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 175.119.234.181:10595 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:01:57,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:01:57,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:01:57,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:01:58,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:01:58,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:01:58,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60732 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56657 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:00,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:00,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:00,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:02:00,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:02:00,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:00,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56658 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54800 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:00,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:00,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:00,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:02:00,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:02:00,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:00,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54801 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60361 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:01,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:01,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:01,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:02:01,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:02:01,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:01,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60362 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60736 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:02,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:02,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:02,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:02:02,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:02:02,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:02,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60737 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10600 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:04,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:04,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:04,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:02:04,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:02:04,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:04,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56663 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:04,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:04,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:04,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:02:04,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:02:04,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:04,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:04,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:04,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:04,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:02:04,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:02:04,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:04,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10601 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60369 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:05,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:05,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:05,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:02:05,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:02:05,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:05,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60370 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:07,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:07,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:07,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:02:07,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:02:07,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:07,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56668 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51472 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:02:09,207 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:02:09,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:02:09,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-02 02:02:09,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-02 02:02:09,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:02:09,515 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:51474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:60375 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:02:09,958 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:02:09,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:02:10,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 02:02:10,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-02 02:02:10,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:02:10,253 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:60743 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60376 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10606 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:11,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:11,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:11,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:02:11,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:02:11,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:11,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10607 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:13,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:13,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:13,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:02:13,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:02:13,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:13,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51504 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:14,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:14,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:14,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:02:14,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:02:14,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:14,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51505 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:15,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:15,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:15,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:02:15,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:02:15,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:15,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60384 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56676 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60748 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44914 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:10612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:16,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:16,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:16,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:02:16,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:02:16,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:16,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56677 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:16,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:16,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:16,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:02:16,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:02:16,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:16,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60749 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:17,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:17,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:17,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:02:17,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:02:17,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:17,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10613 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51526 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:18,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:18,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:18,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:02:18,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:02:18,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:18,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51527 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54823 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:21,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:21,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:21,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:02:21,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:02:21,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:21,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54824 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60399 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:22,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:22,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:22,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:02:23,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:02:23,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:23,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60400 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60754 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:23,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:23,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:23,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:02:23,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:02:23,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:23,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60755 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51556 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10627 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:24,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:24,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:24,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:02:24,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:02:24,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:24,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51557 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:24,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:24,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:24,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:02:24,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:02:24,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:24,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10628 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54829 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:26,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:26,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:26,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:02:26,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:02:26,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:26,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54830 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:29,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:29,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:29,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:02:29,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:02:29,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:29,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60760 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55318 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:29,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:29,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:29,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:02:29,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:02:29,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:29,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55319 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51565 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:31,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:31,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:31,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:02:31,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:02:31,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:31,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51566 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54837 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:34,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:34,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:34,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:02:34,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:02:34,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:34,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54838 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:51573 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:35,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:35,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:35,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:02:35,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:02:35,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:35,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:35,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:35,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:35,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:02:35,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:02:35,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:35,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51574 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54842 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:37,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:37,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:37,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:02:37,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:02:37,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:37,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54843 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51591 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:41,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:41,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:41,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:02:42,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:02:42,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:42,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51592 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:42,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:42,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:42,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:02:42,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:02:42,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:42,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10673 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55335 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10678 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:45,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:45,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:45,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:02:46,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:02:46,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:46,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55336 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33110 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:46,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:46,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:46,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:02:46,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:02:46,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:46,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10679 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54853 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:55775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:49,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:49,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:49,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:02:49,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:02:49,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:49,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54854 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:50,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:50,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:50,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:02:50,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:02:50,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:50,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55777 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51608 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:50,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:50,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:50,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:02:50,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:02:50,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:50,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51609 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63583 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:02:51,474 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:02:51,498 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=59.377 +2025-10-02 02:02:51,580 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.377 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 02:02:51,581 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:02:51,581 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 220.77.167.192:63584 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:55789 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:54,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:54,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:54,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:02:54,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:02:54,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:54,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55790 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51617 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:54,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:54,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:54,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:02:55,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:02:55,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:55,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51618 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10686 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:55,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:55,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:55,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:02:55,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:02:55,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:55,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10687 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55343 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:56,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:56,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:56,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:02:56,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:02:56,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:56,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55344 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55797 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:58,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:58,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:58,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:02:58,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:02:58,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:58,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55798 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:02:59,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:02:59,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:02:59,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:02:59,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:02:59,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:02:59,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:03:02,136 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:03:02,179 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=180.626 +2025-10-02 02:03:02,258 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.626 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 02:03:02,258 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:03:02,258 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:60776 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:55805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:03,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:03,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:03,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:03:03,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:03:03,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:03,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:03:03,471 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:03:03,487 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=24.811 +2025-10-02 02:03:03,557 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.811 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.070s +2025-10-02 02:03:03,558 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-02 02:03:03,558 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +INFO: 122.35.47.45:60464 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:10705 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:04,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:04,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:04,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:03:04,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:03:04,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:04,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10706 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51675 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:05,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:05,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:05,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:03:05,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:03:05,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:05,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51676 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60781 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:03:06,598 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:03:06,622 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=172.491 +2025-10-02 02:03:06,696 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=172.491 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 02:03:06,697 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 02:03:06,697 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 61.255.207.212:60782 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:55813 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10710 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:07,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:07,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:07,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:03:07,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:03:07,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:07,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55814 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:07,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:07,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:07,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:03:07,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:03:07,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:07,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10711 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51756 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:10,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:10,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:10,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:03:10,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:03:10,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:10,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51757 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55819 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:10,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:10,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:10,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:03:10,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:03:10,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:10,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55820 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60788 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10715 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:03:11,588 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:03:11,609 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=111.497 +2025-10-02 02:03:11,684 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.497 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 02:03:11,684 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 02:03:11,684 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 61.255.207.212:60790 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:03:11,827 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:03:11,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:03:11,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 02:03:12,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-02 02:03:12,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:03:12,130 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:10716 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51788 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:13,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:13,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:13,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:03:13,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:03:13,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:13,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51789 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10720 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:15,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:15,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:15,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:03:15,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:03:15,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:15,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10721 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44876 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:55827 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:16,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:16,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:16,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:03:16,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:03:16,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:16,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55828 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51796 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55369 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10726 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:17,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:17,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:17,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:03:17,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:03:17,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:17,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51797 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63595 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:03:18,120 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:03:18,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:03:18,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 02:03:18,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 02:03:18,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:03:18,405 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:55370 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10727 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:18,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:18,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:18,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:03:18,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:03:18,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:18,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63596 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60794 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:20,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:20,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:20,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:03:20,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:03:20,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:20,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60795 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:21,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:21,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:21,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:03:21,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:03:21,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:21,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51805 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:22,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:22,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:22,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:03:22,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:03:22,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:22,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10732 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55377 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:25,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:25,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:25,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:03:25,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:03:25,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:25,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55378 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55385 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:31,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:31,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:31,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:03:31,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:03:31,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:31,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55386 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51823 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56712 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:33,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:33,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:33,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:03:34,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:03:34,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:34,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51824 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:34,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:34,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:34,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:03:34,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:03:34,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:34,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56713 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10744 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:34,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:34,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:34,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:03:35,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:03:35,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:35,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10745 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:37,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:37,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:37,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:03:37,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:03:37,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:37,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60508 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:38,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:38,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:38,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:03:38,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:03:38,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:38,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51831 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56717 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:39,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:39,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:39,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:03:39,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:03:39,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:39,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51832 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10749 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:39,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:39,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:39,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:03:39,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:03:39,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:39,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56718 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:40,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:40,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:40,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:03:40,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:03:40,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:40,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10750 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:43,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:43,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:43,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:03:43,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:03:43,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:43,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56723 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:45,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:45,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:45,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:03:45,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:03:45,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:45,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56724 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55405 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:45,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:45,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:45,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:03:45,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:03:45,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:45,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55406 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53830 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:60543 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:46,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:46,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:46,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:03:46,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:03:46,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:46,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60544 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:48,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:48,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:48,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:03:49,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:03:49,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:49,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51874 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60818 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:60550 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:49,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:49,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:49,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:03:49,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:03:49,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:49,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60819 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:49,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:49,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:50,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:03:50,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:03:50,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:50,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60551 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56728 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:51,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:51,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:51,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:03:51,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:03:51,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:51,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56729 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:53,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:53,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:53,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:03:53,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:03:53,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:53,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60563 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56734 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:51887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:56,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:56,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:56,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:03:56,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:03:56,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:56,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:03:56,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:03:56,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:03:56,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:03:56,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:03:56,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:03:56,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56735 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51895 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:00,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:00,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:00,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:04:00,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:04:00,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:00,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51896 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60831 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:00,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:00,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:00,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:04:00,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:04:00,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:00,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60832 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51943 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60838 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:05,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:05,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:05,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:04:05,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:04:05,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:05,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:25268 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:05,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:05,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:05,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:04:05,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:04:05,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:05,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60839 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:04:07,208 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:04:07,234 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=64.212 +2025-10-02 02:04:07,323 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.212 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 02:04:07,324 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:04:07,324 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 39.112.59.88:56744 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:60848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:15,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:15,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:15,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:04:16,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:04:16,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:16,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60850 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48154 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:60854 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:55929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:04:20,594 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:04:20,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:04:20,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 02:04:20,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-02 02:04:20,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:04:20,901 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:60855 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63608 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:60583 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:60584 - "GET /health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:22,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:22,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:22,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:04:22,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:04:22,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:22,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63609 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:55942 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:27,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:27,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:27,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:04:27,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:04:27,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:27,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:55943 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63613 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60862 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:28,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:28,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:28,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:04:28,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:04:28,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:28,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63614 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:28,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:28,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:28,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:04:28,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:04:28,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:28,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60863 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:30,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:30,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:30,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:04:30,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:04:30,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:30,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60867 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63618 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:33,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:33,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:33,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:04:33,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:04:33,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:33,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60868 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:33,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:33,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:33,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 02:04:33,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 02:04:33,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:33,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63619 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:35,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:35,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:35,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:04:35,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:04:35,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:35,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60614 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:04:37,416 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:04:37,444 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=28.171 +2025-10-02 02:04:37,524 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.171 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 02:04:37,525 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:04:37,525 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 122.35.47.45:60615 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:60872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:38,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:38,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:38,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:04:38,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:04:38,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:38,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63623 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:40,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:40,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:40,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:04:40,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:04:40,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:40,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63624 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56785 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:42,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:42,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:42,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:04:43,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:04:43,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:43,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56786 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:04:43,742 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:04:43,763 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=77.690 +2025-10-02 02:04:43,849 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.690 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 02:04:43,849 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 02:04:43,849 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 175.119.234.181:10774 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:63628 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60883 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:45,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:45,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:45,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:04:45,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:04:45,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:45,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63629 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:45,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:45,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:45,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:04:46,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:04:46,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:46,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60884 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42092 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:55425 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:49,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:49,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:49,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:04:49,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:04:49,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:49,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55426 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:51,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:51,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:51,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:04:51,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:04:51,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:51,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56794 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60893 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:52,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:52,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:52,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:04:52,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:04:52,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:52,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60894 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:52,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:52,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:52,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:04:52,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:04:52,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:52,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56795 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55434 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:56,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:56,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:56,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:04:56,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:04:56,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:56,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55435 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60903 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:04:59,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:04:59,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:04:59,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:04:59,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:04:59,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:04:59,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60904 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52150 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:01,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:01,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:01,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:05:01,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:05:01,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:01,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56803 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:02,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:02,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:02,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:05:02,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:05:02,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:02,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56804 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63640 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:02,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:02,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:02,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:05:02,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:05:02,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:02,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63641 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:04,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:04,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:04,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:05,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:05,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:05,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55442 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:06,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:06,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:06,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:05:06,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:05:06,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:06,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60912 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:07,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:07,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:07,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:05:07,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:05:07,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:07,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52160 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60921 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:52167 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63648 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:12,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:12,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:12,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:05:12,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:05:12,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:12,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60922 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:05:12,718 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:05:12,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:05:12,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 02:05:13,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 02:05:13,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:05:13,011 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:63649 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52168 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55448 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:13,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:13,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:13,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:13,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:13,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:13,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55449 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60927 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:15,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:15,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:15,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:05:16,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:05:16,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:16,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60928 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60254 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:56012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10797 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:17,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:17,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:17,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:05:17,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:05:17,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:17,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:17,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:17,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:17,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:05:17,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:05:17,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:17,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10798 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60934 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:20,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:20,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:20,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:20,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:20,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:20,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60935 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:21,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:21,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:21,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:05:22,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:05:22,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:22,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55456 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:22,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:22,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:22,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:05:22,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:05:22,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:22,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:24,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:24,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:24,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:24,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:24,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:24,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60939 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:26,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:26,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:26,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:26,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:26,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:26,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:26,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:26,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:26,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:05:27,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:05:27,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:27,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60940 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56846 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:30,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:30,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:30,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:05:30,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:05:30,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:30,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55464 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:31,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:31,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:31,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:05:31,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:05:31,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:31,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52205 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:31,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:31,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:31,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:05:31,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:05:31,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:31,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56847 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:32,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:32,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:32,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:32,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:32,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:32,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60946 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:52223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:33,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:33,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:33,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:05:33,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:05:33,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:33,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60947 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:33,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:33,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:33,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-02 02:05:33,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-02 02:05:33,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:33,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52225 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60694 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:05:35,336 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 961, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:05:35,368 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 961, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=47.519 +2025-10-02 02:05:35,474 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.519 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.105s +2025-10-02 02:05:35,474 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.108s +2025-10-02 02:05:35,475 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s +INFO: 122.35.47.45:60695 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:35,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:35,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:35,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:05:35,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:05:35,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:35,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56857 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:52235 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:05:37,373 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:05:37,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:05:37,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 02:05:37,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-02 02:05:37,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:05:37,673 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:56858 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52236 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55470 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:38,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:38,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:38,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:05:39,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:05:39,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:39,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:39,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:39,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:39,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:05:39,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:05:39,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:39,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55471 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10823 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:39,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:39,941 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:39,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:05:40,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:05:40,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:40,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10824 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60703 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:40,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:40,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:40,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:05:40,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:05:40,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:40,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60704 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52248 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:42,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:42,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:42,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:05:42,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:05:42,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:42,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52249 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60961 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:43,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:43,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:43,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:05:43,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:05:43,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:43,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63673 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:43,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:43,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:43,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:05:44,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:05:44,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:44,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60962 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10833 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:45,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:45,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:45,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:05:45,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:05:45,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:45,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49666 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:62578 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56873 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55477 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:47,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:47,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:47,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:05:47,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:05:47,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:47,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55478 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:48,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:48,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:48,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:05:48,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:05:48,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:48,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56874 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63677 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:48,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:48,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:48,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:05:48,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:05:48,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:48,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60968 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:48,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:48,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:48,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:05:48,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:05:48,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:48,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63678 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:49,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:49,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:49,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-02 02:05:49,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-02 02:05:49,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:49,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54949 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10838 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:05:50,100 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:05:50,146 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=162.372 +2025-10-02 02:05:50,236 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.372 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 02:05:50,236 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 02:05:50,238 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 211.226.69.49:62584 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:50,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:50,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:50,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +2025-10-02 02:05:50,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +2025-10-02 02:05:50,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:50,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54950 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:52,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:52,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:52,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:05:52,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:05:52,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:52,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10839 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:60974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:53,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:53,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:53,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:05:53,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:05:53,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:53,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52313 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:53,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:53,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:53,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:05:53,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:05:53,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:53,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52320 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56881 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63682 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:54,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:54,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:54,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:05:54,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:05:54,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:54,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56882 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:54,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:54,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:54,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:05:54,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:05:54,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:54,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63683 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55482 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:55,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:55,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:55,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:05:55,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:05:55,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:55,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60720 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:56,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:56,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:56,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:05:56,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:05:56,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:56,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60721 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56096 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:58,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:58,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:58,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:05:58,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:05:58,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:58,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56097 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:60979 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:58,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:58,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:58,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:05:58,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:05:58,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:58,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:60980 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:05:58,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:05:58,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:05:59,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:05:59,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:05:59,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:05:59,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63687 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55489 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:01,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:01,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:01,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:06:02,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:06:02,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:02,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63688 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56101 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54963 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:62664 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:05,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:05,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:05,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:06:05,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:06:05,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:05,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56102 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:06,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:06,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:06,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:06:06,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:06:06,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:06,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:06,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:06,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:06,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:06:06,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:06:06,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:06,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54964 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:06:06,763 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:06:06,787 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=148.167 +2025-10-02 02:06:06,874 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.167 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 02:06:06,874 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:06:06,877 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 211.226.69.49:62665 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:56895 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:07,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:07,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:07,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:06:07,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:06:07,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:07,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56896 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54968 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:10,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:10,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:10,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:06:10,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:06:10,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:10,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54969 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56901 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:13,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:13,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:13,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:06:13,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:06:13,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:13,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56902 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:13,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:13,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:13,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:06:13,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:06:13,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:13,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63695 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:14,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:14,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:14,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:06:14,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:06:14,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:14,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63696 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54973 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34054 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:16,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:16,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:16,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:06:16,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:06:16,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:16,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54974 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56906 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:18,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:18,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:18,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:06:18,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:06:18,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:18,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55504 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:20,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:20,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:20,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:06:20,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:06:20,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:20,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55505 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63700 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54978 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:20,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:20,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:20,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:06:21,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:06:21,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:21,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63701 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:21,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:21,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:21,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:06:21,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:06:21,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:21,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54979 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56119 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:54984 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:25,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:25,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:25,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:06:25,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:06:25,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:25,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56120 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:25,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:25,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:25,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:06:25,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:06:25,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:25,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54985 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55511 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:27,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:27,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:27,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:06:27,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:06:27,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:27,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55512 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56126 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56919 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:29,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:29,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:29,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 02:06:29,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 02:06:29,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:29,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56127 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:29,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:29,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:29,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:06:30,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:06:30,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:30,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56920 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54989 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:30,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:30,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:30,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:06:30,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:06:30,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:30,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54990 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:32,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:32,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:32,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:06:32,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:06:32,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:32,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56143 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54994 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:33,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:33,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:33,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:06:33,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:06:33,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:33,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:54995 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55516 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:36,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:36,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:36,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:06:36,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:06:36,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:36,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55517 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:54999 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:56173 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:38,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:38,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:38,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:06:38,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:06:38,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:38,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55000 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:38,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:38,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:38,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:06:39,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:06:39,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:39,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56174 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:39,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:39,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:39,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:06:39,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:06:39,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:39,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62710 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56180 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:41,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:41,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:42,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:06:42,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:06:42,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:42,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56181 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60778 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:06:43,782 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:06:43,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=88.411 +2025-10-02 02:06:43,907 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.411 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.098s +2025-10-02 02:06:43,907 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 02:06:43,909 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +INFO: 122.35.47.45:60779 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:55004 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:44,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:44,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:44,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:06:44,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:06:44,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:44,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55005 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55524 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:45,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:45,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:45,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:06:45,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:06:45,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:45,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:46,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:46,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:46,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:06:46,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:06:46,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:46,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44354 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:62730 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:47,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:47,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:47,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:06:47,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:06:47,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:47,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62731 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8917 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:06:48,466 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:06:48,494 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=222.813 +2025-10-02 02:06:48,578 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=222.813 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 02:06:48,578 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:06:48,578 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 118.41.33.196:8918 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:55009 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:48,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:48,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:48,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:06:49,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:06:49,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:49,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55010 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56191 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8922 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:52,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:52,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:52,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:06:53,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:06:53,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:53,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56192 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55531 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:06:53,744 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:06:53,770 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=75.405 +2025-10-02 02:06:53,844 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.405 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 02:06:53,845 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:06:53,845 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 118.41.33.196:8923 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:06:53,980 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:06:53,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:06:54,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 02:06:54,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 02:06:54,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:06:54,265 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:55532 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62740 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:56,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:56,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:56,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:06:56,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:06:56,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:56,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62741 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8927 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:06:57,218 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:06:57,238 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=151.716 +2025-10-02 02:06:57,327 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.716 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 02:06:57,327 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:06:57,327 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 118.41.33.196:8928 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:55022 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:06:57,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:06:57,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:06:58,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:06:58,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:06:58,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:06:58,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55023 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55538 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:02,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:02,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:02,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:07:02,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:07:02,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:02,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55539 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56201 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:05,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:05,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:05,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:07:05,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:07:05,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:05,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56202 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56973 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:08,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:08,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:08,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:07:08,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:07:08,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:08,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56974 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55546 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:10,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:10,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:10,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:07:10,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:07:10,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:10,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55547 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56206 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:12,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:12,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:12,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:07:12,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:07:12,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:12,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56207 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:13,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:13,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:13,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:07:13,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:07:13,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:13,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56981 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:14,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:14,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:14,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:07:14,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:07:14,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:14,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:56982 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:16,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:16,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:16,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:07:16,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:07:16,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:16,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34584 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:60817 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:16,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:16,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:16,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:07:17,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:07:17,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:17,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60818 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:56994 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:07:22,433 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:07:22,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:07:22,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 02:07:22,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 02:07:22,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:07:22,713 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:8942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:56997 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:07:22,822 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:07:22,843 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=181.968 +2025-10-02 02:07:22,922 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=181.968 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 02:07:22,923 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:07:22,923 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:61037 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:62767 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:24,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:24,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:24,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:07:24,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:07:24,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:24,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62768 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:26,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:26,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:26,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:07:26,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:07:26,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:26,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60831 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:07:26,744 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:07:26,782 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=184.729 +2025-10-02 02:07:26,870 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=184.729 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 02:07:26,870 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:07:26,871 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 61.255.207.212:61045 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:61050 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57001 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:07:30,204 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:07:30,223 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=136.269 +2025-10-02 02:07:30,298 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.269 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 02:07:30,299 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 02:07:30,299 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 61.255.207.212:61051 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:07:30,464 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:07:30,481 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=75.949 +2025-10-02 02:07:30,554 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.949 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.072s +2025-10-02 02:07:30,554 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:07:30,554 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 39.112.59.88:57002 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:60837 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55042 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:31,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:31,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:31,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:07:31,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:07:31,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:31,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:31,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:31,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:31,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:07:31,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:07:31,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:31,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60838 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8952 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:33,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:33,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:33,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:07:33,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:07:33,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:33,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8953 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:34,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:34,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:34,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:07:34,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:07:34,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:34,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62778 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:35,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:35,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:35,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:07:35,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:07:35,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:35,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55048 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8957 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61055 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:60845 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:37,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:37,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:37,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:07:37,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:07:37,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:37,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61056 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:07:37,768 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:07:37,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:07:37,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-02 02:07:38,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-02 02:07:38,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:07:38,077 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:57013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60846 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10928 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:38,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:38,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:38,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:07:38,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:07:38,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:38,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8958 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:07:38,508 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:07:38,526 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=112.448 +2025-10-02 02:07:38,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.448 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.069s +2025-10-02 02:07:38,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-02 02:07:38,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +INFO: 175.119.234.181:10929 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:60854 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:8962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:07:42,620 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:07:42,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:07:42,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 02:07:42,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-02 02:07:42,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:07:42,923 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:60855 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8963 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61062 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57020 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:44,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:44,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:44,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:07:45,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:07:45,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:45,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61063 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:45,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:45,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:45,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:07:45,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:07:45,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:45,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62790 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57021 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:46,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:46,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:46,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:07:46,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:07:46,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:46,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62791 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35234 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:60865 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:48,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:48,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:48,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:07:49,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:07:49,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:49,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60866 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55054 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:49,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:49,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:49,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:07:49,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:07:49,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:49,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55055 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8970 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:51,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:51,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:51,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:07:51,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:07:51,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:51,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8971 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60873 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:53,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:53,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:53,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:07:53,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:07:53,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:53,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60874 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60881 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:07:58,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:07:58,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:07:58,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:07:58,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:07:58,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:07:58,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60882 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62800 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:01,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:01,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:01,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:08:01,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:08:01,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:01,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62801 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60892 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:02,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:02,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:02,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:08:02,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:08:02,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:02,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60893 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:8983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61075 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:04,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:04,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:04,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:08:04,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:08:04,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:04,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:8984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:04,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:04,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:04,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:08:04,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:08:04,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:04,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61076 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53440 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:05,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:05,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:05,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:08:06,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:08:06,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:06,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53441 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60900 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:07,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:07,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:07,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:08:07,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:08:07,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:07,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:60901 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61082 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:10,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:10,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:10,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:08:10,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:08:10,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:10,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61083 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57051 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:11,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:11,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:11,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:08:11,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:08:11,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:11,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57052 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:62808 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:56287 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55564 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45382 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:16,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:16,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:16,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:08:17,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:08:17,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:17,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56288 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57059 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:17,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:17,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:17,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:08:17,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:08:17,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:17,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:20,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:20,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:20,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:08:20,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:08:20,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:20,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62809 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:22,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:22,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:22,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:08:22,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:08:22,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:22,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57060 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:23,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:23,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:23,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:08:23,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:08:23,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:23,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9000 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61092 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10986 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:25,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:25,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:25,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:08:25,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:08:25,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:25,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9001 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:26,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:26,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:26,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:08:26,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:08:26,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:26,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10987 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:26,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:26,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:26,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:08:26,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:08:26,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:26,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61093 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:28,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:28,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:28,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:08:28,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:08:28,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:28,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55575 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53523 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:29,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:29,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:29,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:08:29,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:08:29,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:29,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53524 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9006 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:30,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:30,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:30,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 02:08:30,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 02:08:30,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:30,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9007 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:31,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:31,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:31,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:08:32,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:08:32,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:32,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57082 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9011 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:34,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:34,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:34,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:08:34,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:08:34,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:34,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9012 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:34,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:34,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:34,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:08:34,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:08:34,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:34,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57083 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:34,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:34,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:34,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:08:34,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:08:34,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:34,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55582 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53532 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:35,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:35,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:35,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:08:35,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:08:35,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:35,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53533 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:36,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:36,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:36,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:08:36,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:08:36,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:36,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9016 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:37,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:37,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:37,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:08:37,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:08:37,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:37,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9017 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61103 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:38,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:38,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:38,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:08:38,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:08:38,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:38,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61104 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57091 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:40,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:40,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:40,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:08:40,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:08:40,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:40,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57092 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62824 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:53541 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55586 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:08:40,839 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:08:40,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:08:40,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 02:08:41,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 02:08:41,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:08:41,141 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:62825 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53543 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9021 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:41,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:41,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:41,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:08:41,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:08:41,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:41,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9022 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:41,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:41,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:41,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:08:42,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:08:42,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:42,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55587 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:08:42,338 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:08:42,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:08:42,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 02:08:42,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 02:08:42,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:08:42,618 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:11025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:60944 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:60945 - "GET /health HTTP/1.1" 200 OK +INFO: 118.41.33.196:9026 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57101 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:45,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:45,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:45,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:08:46,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:08:46,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:46,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9027 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:46,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:46,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:46,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:08:46,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:08:46,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:46,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57102 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55593 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55290 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:46,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:46,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:46,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:08:46,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:08:46,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:46,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55594 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56323 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55103 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:48,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:48,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:48,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:08:48,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:08:48,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:48,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56324 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:49,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:49,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:49,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:08:49,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:08:49,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:49,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55104 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53553 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:49,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:49,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:49,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:08:49,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:08:49,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:49,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53554 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11030 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57106 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55598 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:50,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:50,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:50,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:08:50,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:08:50,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:50,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11031 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:50,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:50,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:50,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:08:50,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:08:50,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:50,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55599 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9031 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:51,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:51,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:51,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:08:51,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:08:51,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:51,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57108 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:51,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:51,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:51,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:08:51,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:08:51,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:51,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9032 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55108 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:54,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:54,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:54,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:08:54,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:08:54,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:54,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55109 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11035 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:54,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:54,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:54,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:08:55,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:08:55,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:55,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11036 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56353 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:53562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:55,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:55,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:55,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:08:55,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:08:55,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:55,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56354 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57116 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:55,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:55,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:55,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:08:55,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:08:55,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:55,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53563 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:56,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:56,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:08:56,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:08:56,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:08:56,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:08:56,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57117 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11040 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:08:59,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:08:59,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:00,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:09:00,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:09:00,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:00,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11041 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:00,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:00,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:00,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:09:00,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:09:00,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:00,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:01,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:01,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:01,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:09:01,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:09:01,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:01,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53575 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55113 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:56364 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:02,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:02,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:02,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:09:02,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:09:02,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:02,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55114 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:03,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:03,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:03,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:09:03,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:09:03,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:03,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56365 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11046 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:04,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:04,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:04,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:09:04,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:09:04,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:04,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11047 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:62840 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55613 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:53588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11051 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:10,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:10,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:10,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:09:10,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:09:10,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:10,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55614 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61154 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:11,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:11,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:11,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-02 02:09:11,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-02 02:09:11,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:11,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62841 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61000 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:09:13,962 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:09:13,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:09:14,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 02:09:14,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-02 02:09:14,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:09:14,259 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:9042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57124 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55620 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35814 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:16,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:16,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:16,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:09:16,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:09:16,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:16,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55621 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63721 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:17,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:17,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:17,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:09:17,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:09:17,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:17,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61001 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:18,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:18,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:18,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:09:18,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:09:18,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:18,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61155 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9049 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:09:20,007 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:09:20,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:09:20,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 02:09:20,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-02 02:09:20,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:09:20,304 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:63722 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53589 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:20,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:20,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:20,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:09:20,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:09:20,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:20,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11052 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:20,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:20,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:21,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:09:21,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:09:21,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:21,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9050 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57141 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:21,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:21,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:21,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:09:21,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:09:21,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:21,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57142 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61016 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:22,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:22,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:22,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:09:22,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:09:22,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:22,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61017 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62851 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61162 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:23,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:23,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:23,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:09:23,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:09:23,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:23,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62852 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:23,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:23,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:23,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:09:24,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:09:24,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:24,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61163 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:25,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:25,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:25,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:09:25,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:09:25,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:25,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:26,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:26,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:26,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:09:26,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:09:26,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:26,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61023 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:53743 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:26,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:26,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:26,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:09:26,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:09:26,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:26,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61024 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:27,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:27,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:27,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:09:27,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:09:27,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:27,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53744 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9057 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:27,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:27,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:27,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:09:27,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:09:27,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:27,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9058 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11063 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:30,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:30,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:30,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:09:30,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:09:30,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:30,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11064 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61030 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:53750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:09:30,902 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:09:30,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:09:30,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 02:09:31,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 02:09:31,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:09:31,190 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:61031 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:31,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:31,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:31,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:09:31,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:09:31,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:31,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9065 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:31,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:31,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:31,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:09:32,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:09:32,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:32,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9066 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63727 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:33,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:33,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:33,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:09:33,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:09:33,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:33,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63728 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61037 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:34,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:34,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:34,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:09:34,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:09:34,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:34,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61038 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53758 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11068 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:09:35,210 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:09:35,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:09:35,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 02:09:35,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 02:09:35,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:09:35,496 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:53759 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:35,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:35,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:35,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:09:35,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:09:35,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:35,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11069 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9070 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:36,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:36,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:36,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:09:37,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:09:37,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:37,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9071 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55648 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:09:40,332 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:09:40,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:09:40,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 02:09:40,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 02:09:40,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:09:40,618 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:11074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55649 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:41,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:41,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:41,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:09:41,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:09:41,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:41,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55136 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:42,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:42,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:42,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:09:42,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:09:42,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:42,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55655 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63732 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:44,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:44,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:44,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:09:45,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:09:45,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:45,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55656 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:45,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:45,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:45,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:09:45,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:09:45,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:45,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63733 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:46,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:46,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:46,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:09:46,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:09:46,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:46,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11079 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37758 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:09:46,681 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:09:46,695 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=17.785 +2025-10-02 02:09:46,777 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=17.785 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 02:09:46,777 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:09:46,777 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 122.35.47.45:61048 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:55141 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:47,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:47,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:47,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:09:47,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:09:47,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:47,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55142 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9081 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:49,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:49,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:49,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:09:49,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:09:49,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:49,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9082 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55660 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:50,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:50,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:50,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:09:50,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:09:50,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:50,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55661 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:52,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:52,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:52,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:09:52,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:09:52,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:52,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55147 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63737 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:55,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:55,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:55,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:09:55,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:09:55,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:55,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:55,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:55,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:55,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:09:56,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:09:56,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:56,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63738 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:56,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:56,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:56,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:09:56,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:09:56,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:56,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61072 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:57,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:57,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:57,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:09:58,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:09:58,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:58,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61073 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56452 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:09:58,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:09:58,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:09:58,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:09:58,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:09:58,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:09:58,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56453 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:00,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:00,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:00,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:10:00,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:10:00,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:00,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:03,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:03,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:03,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:10:03,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:10:03,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:03,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55162 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:05,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:05,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:05,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:10:05,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:10:05,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:05,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:05,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:05,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:05,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:10:05,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:10:05,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:05,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:06,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:06,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:06,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:10:06,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:10:06,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:06,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63743 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55684 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:08,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:08,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:08,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:10:08,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:10:08,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:08,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55685 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:09,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:09,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:09,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:10:09,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:10:09,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:09,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55691 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:11,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:11,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:11,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:10:11,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:10:11,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:11,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55692 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:13,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:13,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:13,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:10:13,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:10:13,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:13,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61197 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:10:16,435 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:10:16,460 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=108.772 +2025-10-02 02:10:16,553 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.772 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 02:10:16,553 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 02:10:16,555 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 61.255.207.212:61198 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:55696 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63748 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:32998 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:55171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:16,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:16,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:16,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:10:16,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:10:16,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:16,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55697 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:17,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:17,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:17,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:10:17,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:10:17,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:17,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63749 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:17,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:17,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:17,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:10:17,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:10:17,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:17,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57168 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:19,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:19,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:19,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:10:19,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:10:19,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:19,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57169 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:19,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:19,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:19,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:10:19,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:10:19,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:19,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61202 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:10:20,182 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:10:20,206 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=94.059 +2025-10-02 02:10:20,295 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.059 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 02:10:20,296 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 02:10:20,297 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:61203 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:55701 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:22,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:22,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:22,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:10:23,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:10:23,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:23,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55702 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:23,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:23,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:23,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:10:23,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:10:23,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:23,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55177 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61209 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:10:23,485 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:10:23,507 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=42.223 +2025-10-02 02:10:23,600 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.223 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 02:10:23,600 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 02:10:23,601 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 61.255.207.212:61210 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:63753 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57174 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:25,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:25,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:25,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:10:25,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:10:25,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:25,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63754 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:26,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:26,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:26,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:10:26,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:10:26,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:26,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57175 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61112 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:27,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:27,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:27,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:10:28,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:10:28,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:28,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61113 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:28,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:28,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:28,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:10:28,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:10:28,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:28,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:32,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:32,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:32,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:10:32,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:10:32,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:32,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61119 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:33,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:33,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:33,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 02:10:33,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 02:10:33,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:33,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61120 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:34,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:34,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:34,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:10:34,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:10:34,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:34,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63758 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:35,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:35,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:35,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:10:35,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:10:35,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:35,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63759 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61128 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:37,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:37,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:37,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:10:37,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:10:37,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:37,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61129 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:37,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:37,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:37,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:10:37,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:10:37,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:37,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61134 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:39,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:39,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:39,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 02:10:39,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 02:10:39,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:39,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61135 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:41,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:41,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:41,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:10:41,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:10:41,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:41,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56538 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55195 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:43,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:43,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:43,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:10:43,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:10:43,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:43,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55196 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:43,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:43,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:43,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:10:43,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:10:43,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:43,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63763 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:45,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:45,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:45,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:10:45,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:10:45,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:45,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63764 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9119 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:45,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:45,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:45,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:10:46,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:10:46,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:46,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9120 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55716 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:46,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:46,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:46,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:10:46,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:10:46,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:46,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55717 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40242 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:56544 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:47,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:47,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:47,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:10:47,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:10:47,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:47,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56545 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61152 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:51,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:51,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:51,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 02:10:51,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 02:10:51,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:51,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61153 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:56549 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9127 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:10:54,093 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:10:54,120 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=63.551 +2025-10-02 02:10:54,206 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.551 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 02:10:54,206 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:10:54,206 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 39.112.59.88:57197 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:54,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:54,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:54,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:10:54,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:10:54,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:54,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56550 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55726 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:55,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:55,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:55,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:10:55,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:10:55,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:55,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55727 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61160 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:56,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:56,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:57,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:10:57,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:10:57,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:57,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61161 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:10:59,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:10:59,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:10:59,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:10:59,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:10:59,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:10:59,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56556 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:00,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:00,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:00,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:11:00,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:11:00,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:00,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56557 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:01,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:01,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:01,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:11:01,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:11:01,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:01,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57205 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60410 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:11:01,573 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:11:01,598 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=81.346 +2025-10-02 02:11:01,679 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.346 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 02:11:01,679 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:11:01,680 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 221.154.208.144:60411 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:01,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:01,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:01,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:11:01,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:11:01,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:01,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57206 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61178 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:04,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:04,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:04,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.238s +2025-10-02 02:11:04,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.238s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.238s (avg: 0.238s/image) +2025-10-02 02:11:04,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.238s (avg: 0.238s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:04,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61179 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:08,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:08,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:08,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:11:08,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:11:08,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:08,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54079 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:10,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:10,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:10,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:11:10,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:11:10,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:10,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54080 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55219 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57214 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:56587 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:16,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:16,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:16,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:11:16,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:11:16,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:16,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55220 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:16,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:16,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:16,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:11:16,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:11:16,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:16,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55740 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41030 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:11:17,161 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:11:17,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:11:17,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 02:11:17,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 02:11:17,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:11:17,446 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:56588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57215 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:17,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:17,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:17,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:11:17,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:11:17,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:17,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61205 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9132 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:20,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:20,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:20,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:11:20,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:11:20,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:20,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9133 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54160 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:21,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:21,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:21,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:11:21,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:11:21,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:21,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54161 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:22,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:22,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:22,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:11:23,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:11:23,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:23,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55746 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:23,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:23,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:23,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:11:23,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:11:23,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:23,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55747 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56592 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:24,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:24,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:24,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:11:24,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:11:24,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:24,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56593 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55224 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:25,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:25,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:25,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:11:25,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:11:25,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:25,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55225 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:54168 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:26,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:26,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:26,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:11:26,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:11:26,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:26,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54169 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:26,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:26,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:26,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:11:26,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:11:26,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:26,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61261 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:28,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:28,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:28,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-02 02:11:28,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-02 02:11:28,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:28,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61224 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56603 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55751 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:31,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:31,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:31,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:11:31,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:11:31,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:31,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55752 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57222 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:31,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:31,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:31,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:11:31,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:11:31,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:31,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56604 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:31,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:31,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:31,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:11:31,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:11:31,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:31,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57223 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61230 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:33,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:33,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:33,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:11:33,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:11:33,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:33,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61231 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54181 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:56612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:11:39,221 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:11:39,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:11:39,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 02:11:39,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 02:11:39,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:11:39,514 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:54182 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56613 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:39,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:39,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:39,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:11:39,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:11:39,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:39,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57230 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:40,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:40,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:40,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:11:40,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:11:40,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:40,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55760 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57234 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:44,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:44,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:45,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:11:45,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:11:45,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:45,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57235 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36958 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:55766 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:48,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:48,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:48,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:11:48,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:11:48,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:48,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55767 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:49,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:49,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:49,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:11:49,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:11:49,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:49,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57249 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:55,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:55,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:55,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:11:55,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:11:55,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:55,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55774 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:55,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:55,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:55,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:11:55,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:11:55,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:55,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57250 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55242 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:58,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:58,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:58,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:11:58,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:11:58,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:58,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55243 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57255 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:11:59,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:11:59,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:11:59,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:11:59,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:11:59,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:11:59,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57256 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:03,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:03,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:03,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:12:03,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:12:03,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:03,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57261 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:04,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:04,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:04,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:12:04,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:12:04,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:04,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60446 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:07,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:07,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:07,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:12:07,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:12:07,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:07,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57266 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:07,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:07,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:07,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:12:07,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:12:07,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:07,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57267 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60456 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:09,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:09,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:09,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:12:10,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:12:10,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:10,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60457 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:12,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:12,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:12,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:12:12,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:12:12,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:12,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:12,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:12,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:12,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:12:13,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:12:13,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:13,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63771 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:12:14,659 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:12:14,687 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=71.322 +2025-10-02 02:12:14,777 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.322 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 02:12:14,778 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 02:12:14,780 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 220.77.167.192:63772 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:57277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53616 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:17,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:17,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:17,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:12:17,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:12:17,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:17,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55257 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:20,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:20,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:20,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:12:20,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:12:20,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:20,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55258 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55262 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:23,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:23,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:23,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:12:23,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:12:23,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:23,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:24,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:24,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:24,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:12:24,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:12:24,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:24,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57285 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:25,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:25,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:25,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:12:25,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:12:25,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:25,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57286 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:56665 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:30,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:30,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:30,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:12:30,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:12:30,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:30,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57292 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:30,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:30,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:30,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:12:30,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:12:30,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:30,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56666 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:32,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:32,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:32,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:12:32,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:12:32,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:32,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57297 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:34,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:34,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:34,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:12:34,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:12:34,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:34,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57298 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56692 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:37,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:37,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:37,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:12:37,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:12:37,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:37,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56693 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55280 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:12:38,154 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:12:38,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:12:38,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-02 02:12:38,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +2025-10-02 02:12:38,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:12:38,467 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:55281 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57304 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61300 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:12:39,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:12:39,583 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=33.818 +2025-10-02 02:12:39,663 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.818 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 02:12:39,664 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:12:39,664 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 61.255.207.212:61301 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:57308 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:42,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:42,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:42,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:12:42,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:12:42,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:42,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57309 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61305 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:12:42,991 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:12:43,013 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=91.952 +2025-10-02 02:12:43,081 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.952 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.068s +2025-10-02 02:12:43,082 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-02 02:12:43,082 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +INFO: 61.255.207.212:61306 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:57314 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:12:46,147 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:12:46,161 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=22.332 +2025-10-02 02:12:46,226 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.332 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.064s +2025-10-02 02:12:46,226 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.064s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.065s +2025-10-02 02:12:46,227 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.065s +INFO: 61.255.207.212:61311 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:55291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59480 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:12:47,097 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:12:47,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:12:47,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.331s +2025-10-02 02:12:47,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.331s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.331s (avg: 0.166s/image) +2025-10-02 02:12:47,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.331s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:12:47,430 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:57315 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55292 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57320 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:51,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:51,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:51,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:12:51,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:12:51,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:51,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57321 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:53,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:53,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:53,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:12:53,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:12:53,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:53,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55297 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57325 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:55,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:55,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:55,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:12:55,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:12:55,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:55,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57326 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11219 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:12:56,373 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:12:56,396 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=106.775 +2025-10-02 02:12:56,473 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.775 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 02:12:56,473 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:12:56,473 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 175.119.234.181:11220 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:56704 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9149 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:12:56,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:12:56,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:12:56,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:12:57,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:12:57,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:12:57,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56705 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:12:57,284 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:12:57,313 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=90.603 +2025-10-02 02:12:57,401 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.603 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 02:12:57,401 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 02:12:57,403 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 118.41.33.196:9150 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:57347 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9154 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:01,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:01,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:01,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:13:01,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:13:01,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:01,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57348 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:13:02,016 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:13:02,048 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=61.196 +2025-10-02 02:13:02,143 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.196 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 02:13:02,143 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:13:02,144 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 118.41.33.196:9155 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:56711 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:04,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:04,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:04,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:13:05,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:13:05,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:05,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:05,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:05,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:05,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:13:05,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:13:05,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:05,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:13:06,364 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:13:06,401 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=92.017 +2025-10-02 02:13:06,496 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.017 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 02:13:06,496 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:13:06,497 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 118.41.33.196:9160 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:36246 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:56722 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:18,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:18,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:18,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:13:18,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:13:18,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:18,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56723 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:13:19,798 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:13:19,822 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=24.043 +2025-10-02 02:13:19,912 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.043 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 02:13:19,912 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:13:19,912 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 122.35.47.45:61375 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:56748 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61386 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:24,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:24,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:24,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:13:25,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:13:25,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:25,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56749 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:25,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:25,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:25,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:13:25,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:13:25,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:25,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61387 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63026 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:13:30,143 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:13:30,169 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=87.961 +2025-10-02 02:13:30,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.961 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 02:13:30,250 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:13:30,250 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 211.226.69.49:63027 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:56757 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:30,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:30,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:30,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:13:30,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:13:30,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:30,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56758 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11255 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:31,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:31,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:31,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:13:31,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:13:31,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:31,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11256 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61341 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:34,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:34,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:34,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:13:34,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:13:34,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:34,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61342 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63033 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:13:35,657 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:13:35,678 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=97.676 +2025-10-02 02:13:35,755 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.676 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:13:35,755 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:13:35,755 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 211.226.69.49:63034 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:11260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:36,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:36,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:36,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:13:36,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:13:36,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:36,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11261 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:37,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:37,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:37,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:13:37,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:13:37,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:37,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56774 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:37,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:37,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:37,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:13:38,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:13:38,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:38,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9192 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61348 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:40,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:40,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:40,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:13:40,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:13:40,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:40,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9193 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:40,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:40,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:40,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:13:40,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:13:40,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:40,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61349 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61407 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:42,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:42,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:42,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:13:42,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:13:42,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:42,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61408 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56781 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:43,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:43,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:43,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:13:43,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:13:43,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:43,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60549 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:44,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:44,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:44,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:13:44,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:13:44,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:44,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60550 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57369 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:45,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:45,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:45,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:13:45,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:13:45,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:45,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:45,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:45,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:45,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:13:45,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:13:45,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:45,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57370 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35794 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:55419 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:47,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:47,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:47,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:13:47,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:13:47,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:47,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55420 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56786 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11278 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:48,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:48,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:48,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:13:48,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:13:48,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:48,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56787 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:48,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:48,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:48,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:13:48,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:13:48,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:48,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11279 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55427 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:51,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:51,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:51,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:13:51,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:13:51,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:51,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55428 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60554 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:51,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:51,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:51,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:13:51,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:13:51,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:51,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60555 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57375 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:52,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:52,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:52,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:13:52,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:13:52,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:52,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57376 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:53,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:53,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:53,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:13:53,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:13:53,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:53,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56796 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55435 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:54,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:54,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:54,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:13:54,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:13:54,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:54,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56797 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:54,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:54,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:54,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:13:55,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:13:55,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:55,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55436 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60559 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:57,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:57,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:57,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:13:57,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:13:57,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:57,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60560 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11289 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:58,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:58,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:58,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:13:58,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:13:58,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:58,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11290 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55818 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:13:58,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:13:58,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:13:58,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:13:58,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:13:58,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:13:58,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55819 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:56801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:14:00,895 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:00,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:00,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 02:14:01,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-02 02:14:01,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:14:01,202 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:55445 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:14:01,626 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:14:01,654 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=65.667 +2025-10-02 02:14:01,740 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.667 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 02:14:01,741 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:14:01,742 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 39.112.59.88:57384 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:61366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:02,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:02,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:02,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-02 02:14:02,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-02 02:14:02,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:02,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60564 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55823 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:03,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:03,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:03,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:14:03,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:14:03,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:03,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:04,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:04,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:04,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:14:04,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:14:04,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:04,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55824 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:05,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:05,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:05,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:14:05,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:14:05,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:05,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55456 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56832 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:05,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:05,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:06,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:14:06,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:14:06,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:06,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11301 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:06,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:06,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:06,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:14:06,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:14:06,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:06,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11302 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55464 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:14:08,789 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:08,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:08,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s +2025-10-02 02:14:09,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.323s (avg: 0.162s/image) +2025-10-02 02:14:09,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.323s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:14:09,114 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:61375 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55465 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55829 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57390 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60569 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:09,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:09,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:09,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 02:14:09,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 02:14:09,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:09,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55830 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:09,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:09,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:09,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:14:09,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:14:09,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:09,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60570 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:10,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:10,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:10,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:14:10,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:14:10,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:10,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57391 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:10,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:10,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:10,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:14:10,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:14:10,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:10,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:56864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:12,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:12,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:12,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:14:12,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:14:12,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:12,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:12,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:12,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:12,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:14:12,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:14:12,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:12,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55472 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:13,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:13,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:13,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:14:13,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:14:13,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:13,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55473 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61379 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61440 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:13,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:13,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:13,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:14:13,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:14:13,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:13,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61380 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:14,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:14,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:14,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:14:14,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:14:14,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:14,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61441 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60576 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:15,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:15,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:15,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:14:15,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:14:15,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:15,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60577 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61447 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50250 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:56872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:17,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:17,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:17,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:14:17,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:14:17,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:17,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61448 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61384 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:17,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:17,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:17,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:14:17,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:14:17,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:17,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 3 jobs. +2025-10-02 02:14:17,916 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 02:14:17,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 02:14:17,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.408s +2025-10-02 02:14:18,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.408s +INFO:app.core.worker_manager:'simple-lama' batch of 3 processed in 0.408s (avg: 0.136s/image) +2025-10-02 02:14:18,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.408s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 3 jobs. +2025-10-02 02:14:18,325 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +INFO: 115.138.85.166:55482 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61385 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63072 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:19,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:19,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:19,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:14:20,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:14:20,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:20,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63073 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:21,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:21,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:21,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:14:21,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:14:21,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:21,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61456 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61389 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:22,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:22,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:22,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 02:14:22,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 02:14:22,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:22,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61390 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:22,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:22,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:22,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:14:22,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:14:22,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:22,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55493 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:23,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:23,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:23,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:14:24,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:14:24,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:24,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55494 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:24,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:24,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:24,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:14:24,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:14:24,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:24,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61464 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60587 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61394 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:25,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:25,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:25,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:14:26,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:14:26,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:26,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11320 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:27,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:27,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:27,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-02 02:14:27,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-02 02:14:27,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:27,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61395 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55843 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:56884 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:14:28,327 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:28,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:28,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 02:14:28,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-02 02:14:28,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:14:28,597 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:11321 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55844 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61470 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55526 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:28,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:28,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:28,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:14:29,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:14:29,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:29,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56885 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:14:29,250 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:29,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:29,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.252s +2025-10-02 02:14:29,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.252s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.252s (avg: 0.126s/image) +2025-10-02 02:14:29,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.252s (avg: 0.126s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:14:29,504 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:61471 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63080 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:30,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:30,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:30,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:14:31,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:14:31,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:31,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63081 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61399 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57407 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:31,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:31,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:31,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-02 02:14:32,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-02 02:14:32,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:32,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61400 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:32,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:32,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:32,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:14:32,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:14:32,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:32,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57408 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:32,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:32,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:32,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:14:32,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:14:32,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:32,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60594 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:33,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:33,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:33,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:14:33,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:14:33,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:33,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60595 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:33,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:33,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:33,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:14:34,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:14:34,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:34,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61404 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:35,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:35,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:35,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:14:36,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:14:36,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:36,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61405 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61485 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63852 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:14:36,669 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:36,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:36,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-02 02:14:36,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-02 02:14:36,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:14:36,976 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:63853 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61486 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56906 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11335 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:14:38,872 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:38,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:38,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-02 02:14:39,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +2025-10-02 02:14:39,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:14:39,180 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:56907 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11336 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:40,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:40,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:40,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:14:40,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:14:40,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:40,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63089 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60599 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:40,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:40,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:40,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:14:41,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:14:41,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:41,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60600 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61410 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:14:41,453 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:41,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:41,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 02:14:41,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 02:14:41,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:14:41,745 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:61493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61411 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63858 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:42,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:42,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:42,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:14:42,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:14:42,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:42,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63859 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56914 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55855 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:44,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:44,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:44,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:14:45,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:14:45,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:45,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56915 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57416 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:45,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:45,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:45,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:14:45,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:14:45,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:45,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55856 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:45,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:45,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:45,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:14:45,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:14:45,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:45,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57417 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61415 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:46,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:46,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:46,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:14:47,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:14:47,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:47,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61416 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57042 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:63863 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60610 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:47,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:47,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:47,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:14:47,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:14:47,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:47,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61505 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:47,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:47,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:47,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:14:47,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:14:47,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:47,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63864 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:48,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:48,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:48,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:14:48,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:14:48,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:48,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60611 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63095 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:48,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:48,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:49,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:14:49,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:14:49,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:49,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63097 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:49,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:49,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:49,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:14:49,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:14:49,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:49,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57421 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55862 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:50,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:50,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:50,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:14:50,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:14:50,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:50,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57422 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:50,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:50,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:50,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:14:50,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:14:50,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:50,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55863 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56934 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:51,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:51,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:51,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:14:51,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:14:51,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:51,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56935 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60616 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:52,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:52,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:52,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:14:52,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:14:52,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:52,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60617 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:53,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:53,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:53,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:14:53,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:14:53,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:53,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61523 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:56962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:14:53,728 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:53,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:53,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +2025-10-02 02:14:54,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.319s (avg: 0.160s/image) +2025-10-02 02:14:54,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.319s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:14:54,049 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:61524 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56964 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60622 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:55868 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57427 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:55,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:55,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:56,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:14:56,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:14:56,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:56,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60623 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:14:56,296 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:14:56,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:14:56,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-02 02:14:56,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-02 02:14:56,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:14:56,568 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:55869 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57428 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63103 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:56,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:56,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:56,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:14:57,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:14:57,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:57,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63105 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61429 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:56974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61534 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:59,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:59,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:59,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:14:59,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:14:59,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:59,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61430 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:14:59,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:14:59,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:14:59,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:14:59,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:14:59,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:14:59,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:00,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:00,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:00,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:15:00,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:15:00,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:00,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61535 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55875 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63871 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:00,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:00,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:00,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:15:00,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:15:00,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:00,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55876 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57432 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:01,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:01,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:01,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:15:01,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:15:01,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:01,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63872 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:01,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:01,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:01,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:15:01,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:15:01,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:01,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57433 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:56979 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:02,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:02,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:02,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:15:02,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:15:02,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:02,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:56980 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55368 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:02,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:02,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:02,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:15:03,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:15:03,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:03,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55369 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61545 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:04,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:04,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:04,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:15:04,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:15:04,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:04,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61546 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:05,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:05,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:05,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:15:05,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:15:05,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:05,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55880 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:07,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:07,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:07,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:15:07,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:15:07,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:07,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55881 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61553 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63877 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:15:07,708 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:15:07,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:15:07,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 02:15:08,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-02 02:15:08,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:15:08,006 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:61554 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63878 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:09,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:09,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:09,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:15:09,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:15:09,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:09,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55375 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61560 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:11,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:11,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:11,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:15:11,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:15:11,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:11,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61561 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57446 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:13,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:13,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:13,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:15:13,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:15:13,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:13,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57447 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55379 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:15,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:15,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:15,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:15:15,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:15:15,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:15,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55380 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47082 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:57452 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:18,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:18,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:18,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:15:18,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:15:18,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:18,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57453 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55384 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:20,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:20,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:20,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:15:20,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:15:20,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:20,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55385 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55757 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57458 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:23,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:23,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:23,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:15:23,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:15:23,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:23,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55764 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:23,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:23,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:23,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:15:23,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:15:23,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:23,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57459 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60631 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:15:24,167 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:15:24,192 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=122.105 +2025-10-02 02:15:24,270 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.105 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 02:15:24,270 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:15:24,270 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 221.154.208.144:60632 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:55389 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:24,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:24,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:24,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:15:25,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:15:25,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:25,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55390 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55895 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:26,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:26,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:27,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:15:27,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:15:27,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:27,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55896 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55782 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57464 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:27,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:27,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:27,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:15:27,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:15:27,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:27,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55783 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:28,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:28,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:28,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:15:28,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:15:28,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:28,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57465 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:15:28,976 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:15:28,997 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=83.812 +2025-10-02 02:15:29,072 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.812 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 02:15:29,072 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 02:15:29,072 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 118.41.33.196:9214 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:55394 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:29,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:29,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:29,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:15:29,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:15:29,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:29,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55395 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55794 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:31,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:31,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:31,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:15:31,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:15:31,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:31,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55795 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61451 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:32,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:32,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:32,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:15:32,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:15:32,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:32,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61452 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61603 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:15:32,608 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:15:32,631 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=57.320 +2025-10-02 02:15:32,712 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.320 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 02:15:32,713 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:15:32,713 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 122.35.47.45:61604 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:9218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57472 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63130 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:35,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:35,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:35,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:15:35,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:15:35,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:35,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57473 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:15:35,751 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:15:35,778 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=62.304 +2025-10-02 02:15:35,851 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.304 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.072s +2025-10-02 02:15:35,852 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 02:15:35,852 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +INFO: 118.41.33.196:9219 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:36,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:36,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:36,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:15:36,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:15:36,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:36,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63131 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61458 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:37,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:37,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:37,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:15:38,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:15:38,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:38,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61459 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:15:39,325 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:15:39,352 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=131.554 +2025-10-02 02:15:39,426 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.554 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 02:15:39,427 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:15:39,427 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 118.41.33.196:9224 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:55824 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:39,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:39,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:39,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:15:39,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:15:39,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:39,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55825 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60646 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:40,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:40,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:40,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:15:40,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:15:40,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:40,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:40,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:40,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:40,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:15:40,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:15:40,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:40,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60647 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61465 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:42,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:42,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:42,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:15:42,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:15:42,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:42,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61466 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55832 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:43,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:43,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:43,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:15:43,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:15:43,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:43,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55833 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:44,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:44,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:44,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:15:44,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:15:44,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:44,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55408 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:46,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:46,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:46,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:15:46,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:15:46,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:46,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55409 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60655 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39490 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:61623 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:47,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:47,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:47,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:15:47,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:15:47,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:47,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60656 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:48,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:48,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:48,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:15:48,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:15:48,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:48,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61624 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55846 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:49,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:49,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:49,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:15:49,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:15:49,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:49,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55847 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63141 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:50,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:50,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:50,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:15:50,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:15:50,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:50,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63142 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:50,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:50,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:50,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:15:50,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:15:50,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:50,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55415 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61632 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:53,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:53,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:53,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:15:53,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:15:53,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:53,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61634 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55419 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:54,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:54,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:54,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:15:54,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:15:54,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:54,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55420 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:56,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:56,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:56,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:15:56,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:15:56,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:56,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61640 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55424 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:57,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:57,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:57,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:15:57,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:15:57,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:57,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61641 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:57,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:57,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:57,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 02:15:58,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 02:15:58,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:58,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55425 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9231 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:15:59,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:15:59,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:15:59,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:15:59,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:15:59,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:15:59,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9232 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57043 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:00,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:00,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:00,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:16:01,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:16:01,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:01,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61650 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:01,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:01,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:01,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:16:01,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:16:01,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:01,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61651 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55429 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:02,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:02,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:02,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:16:02,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:16:02,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:02,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55430 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57048 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:05,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:05,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:05,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:16:05,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:16:05,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:05,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57049 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55434 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:06,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:06,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:06,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:16:06,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:16:06,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:06,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55435 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:06,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:06,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:06,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:16:06,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:16:06,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:06,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61664 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:07,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:07,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:07,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:16:07,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:16:07,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:07,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57055 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:10,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:10,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:10,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:16:10,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:16:10,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:10,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57056 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55439 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:10,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:10,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:10,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:16:10,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:16:10,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:10,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55440 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55444 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:14,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:14,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:14,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:16:14,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:16:14,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:14,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55445 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57060 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:14,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:14,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:14,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:16:14,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:16:14,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:14,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57061 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:15,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:15,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:15,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:16:15,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:16:15,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:15,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34450 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:55449 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:18,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:18,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:18,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:16:18,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:16:18,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:18,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55450 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57066 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:19,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:19,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:19,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:16:19,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:16:19,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:19,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57067 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56014 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:20,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:20,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:20,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:16:20,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:16:20,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:20,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56015 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60674 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:21,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:21,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:21,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:16:21,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:16:21,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:21,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60675 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55454 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:22,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:22,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:22,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:16:22,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:16:22,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:22,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55455 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57090 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60680 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:25,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:25,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:25,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:16:25,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:16:25,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:25,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57091 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:25,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:25,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:25,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:16:25,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:16:25,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:25,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60681 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:25,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:25,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:25,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:16:25,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:16:25,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:25,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55459 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:26,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:26,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:26,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:16:26,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:16:26,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:26,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55460 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:28,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:28,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:29,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:16:29,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:16:29,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:29,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60686 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57095 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:29,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:29,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:29,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:16:29,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:16:29,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:29,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57096 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61495 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:30,245 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:30,268 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=73.431 +2025-10-02 02:16:30,344 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.431 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 02:16:30,345 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:16:30,345 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 61.255.207.212:61496 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:9264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:31,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:31,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:31,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:16:31,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:16:31,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:31,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9265 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57104 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:33,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:33,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:33,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:16:33,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:16:33,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:33,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57105 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61500 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:56047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61684 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:61685 - "GET /health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:36,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:36,090 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=101.807 +2025-10-02 02:16:36,176 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.807 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 02:16:36,176 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 02:16:36,176 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:61501 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:36,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:36,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:36,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:16:36,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:16:36,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:36,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56049 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57115 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9272 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:37,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:37,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:38,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:16:38,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:16:38,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:38,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57116 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:38,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:38,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:38,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:16:38,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:16:38,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:38,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60704 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:40,172 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:40,188 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=74.567 +2025-10-02 02:16:40,270 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.567 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 02:16:40,270 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:16:40,270 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 61.255.207.212:61508 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:40,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:40,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:40,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:16:40,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:16:40,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:40,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60705 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56056 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:41,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:41,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:41,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:16:41,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:16:41,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:41,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56057 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57120 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:42,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:42,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:42,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:16:42,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:16:42,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:42,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57121 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:44,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:44,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:44,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:16:44,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:16:44,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:44,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56063 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60715 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:44,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:44,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:44,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:16:44,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:16:44,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:44,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56064 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63169 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:45,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:45,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:45,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:16:45,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:16:45,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:45,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60716 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:45,705 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:45,738 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=33.695 +2025-10-02 02:16:45,813 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.695 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 02:16:45,813 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 02:16:45,813 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 211.226.69.49:63170 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:57125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:46,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:46,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:46,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:16:47,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:16:47,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:47,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57126 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54862 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:11423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:48,528 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:48,551 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=46.084 +2025-10-02 02:16:48,637 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.084 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 02:16:48,637 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:16:48,638 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 175.119.234.181:11424 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:56073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:48,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:48,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:49,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:16:49,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:16:49,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:49,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:49,903 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:49,924 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=16.520 +2025-10-02 02:16:50,007 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=16.520 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 02:16:50,007 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:16:50,008 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 211.226.69.49:63177 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:57130 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60724 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:51,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:51,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:51,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:16:51,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:16:51,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:51,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57132 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9282 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:51,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:51,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:51,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:16:52,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:16:52,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:52,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60725 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:52,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:52,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:52,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:16:52,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:16:52,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:52,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9283 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57138 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:55,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:55,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:55,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 02:16:55,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 02:16:55,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:55,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:56,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:56,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:56,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:16:56,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:16:56,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:56,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57139 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57539 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:16:57,562 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:16:57,586 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=42.029 +2025-10-02 02:16:57,666 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.029 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 02:16:57,666 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:16:57,666 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 39.112.59.88:57540 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:56132 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:16:59,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:16:59,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:16:59,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:16:59,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:16:59,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:16:59,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56134 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9287 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:00,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:00,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:00,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:17:00,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:17:00,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:00,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9288 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:00,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:00,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:00,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:17:01,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:17:01,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:01,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:01,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:01,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:01,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:17:01,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:17:01,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:01,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61728 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:17:02,410 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:17:02,429 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=42.854 +2025-10-02 02:17:02,504 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.854 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 02:17:02,504 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 02:17:02,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 122.35.47.45:61729 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:60745 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:05,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:05,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:05,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:17:05,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:17:05,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:05,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60746 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:05,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:05,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:05,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:17:05,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:17:05,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:05,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57177 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:09,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:09,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:09,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:17:09,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:17:09,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:09,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57178 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:10,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:10,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:10,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:17:10,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:17:10,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:10,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60755 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:14,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:14,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:14,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:17:15,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:17:15,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:15,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60756 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:15,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:15,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:15,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:17:15,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:17:15,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:15,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63197 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:16,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:16,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:16,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:17:16,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:17:16,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:16,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63902 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54218 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:61535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:17:17,217 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 748, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:17:17,245 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 748, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=70.111 +2025-10-02 02:17:17,331 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.111 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 02:17:17,331 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:17:17,333 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 220.77.167.192:63903 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:17,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:17,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:17,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:17:17,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:17:17,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:17,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57556 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:18,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:18,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:18,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:17:18,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:17:18,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:18,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57557 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55489 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60763 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:21,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:21,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:21,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:17:21,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:17:21,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:21,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55490 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:21,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:21,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:21,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:17:21,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:17:21,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:21,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60764 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:22,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:22,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:22,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:17:22,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:17:22,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:22,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63214 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:26,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:26,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:26,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:17:26,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:17:26,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:26,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63215 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57192 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:26,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:26,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:26,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:17:27,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:17:27,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:27,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57193 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60777 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:28,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:28,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:28,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:17:28,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:17:28,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:28,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60778 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57201 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61552 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:17:31,782 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:17:31,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:17:31,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +2025-10-02 02:17:32,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.317s (avg: 0.158s/image) +2025-10-02 02:17:32,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:17:32,100 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:63912 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57202 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:17:32,302 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:17:32,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:17:32,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 02:17:32,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-02 02:17:32,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:17:32,576 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:61553 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57566 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:35,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:35,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:35,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:17:35,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:17:35,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:35,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57567 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:36,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:36,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:36,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:17:36,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:17:36,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:36,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63227 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:36,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:36,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:36,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:17:37,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:17:37,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:37,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:37,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:37,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:37,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:17:37,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:17:37,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:37,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55503 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:38,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:38,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:38,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:17:39,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:17:39,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:39,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60808 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:42,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:42,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:42,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:17:42,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:17:42,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:42,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60809 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56823 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:43,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:43,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:43,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:17:43,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:17:43,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:43,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56824 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61779 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57575 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:44,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:44,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:44,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:17:44,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:17:44,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:44,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61780 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:44,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:44,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:44,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:17:44,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:17:44,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:44,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57576 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55510 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:46,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:46,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:46,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:17:47,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:17:47,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:47,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55512 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34684 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:61568 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:47,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:47,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:47,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:17:47,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:17:47,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:47,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61569 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61787 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:56854 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:49,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:49,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:49,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:17:49,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:17:49,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:49,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61788 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:17:49,580 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:17:49,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:17:49,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 02:17:49,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 02:17:49,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:17:49,860 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:57582 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56856 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11464 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:50,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:50,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:50,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:17:50,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:17:50,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:50,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11465 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61576 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:52,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:52,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:52,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:17:52,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:17:52,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:52,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61577 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63243 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:56871 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61796 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:53,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:53,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:54,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:17:54,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:17:54,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:54,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63244 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:17:54,787 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:17:54,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:17:54,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 02:17:55,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 02:17:55,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:17:55,075 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:56874 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61797 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57590 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:55,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:55,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:55,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:17:55,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:17:55,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:55,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57591 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:56,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:56,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:56,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:17:56,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:17:56,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:56,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61582 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:61804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:59,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:59,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:59,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:17:59,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:17:59,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:17:59,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59824 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:17:59,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:17:59,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:17:59,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:18:00,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:18:00,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:00,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61805 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57599 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:00,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:00,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:00,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:18:00,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:18:00,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:00,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61589 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:01,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:01,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:01,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:18:01,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:18:01,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:01,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57600 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63252 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11472 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:02,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:02,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:02,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:18:02,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:18:02,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:02,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63253 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:02,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:02,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:02,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:18:02,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:18:02,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:02,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11473 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:03,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:03,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:03,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:18:03,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:18:03,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:03,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57604 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:06,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:06,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:06,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:18:06,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:18:06,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:06,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57605 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57613 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:12,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:12,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:13,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:18:13,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:18:13,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:13,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57614 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39448 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:63926 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:18,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:18,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:18,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:18:18,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:18:18,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:18,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63927 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:56984 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57622 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:19,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:19,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:19,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:18:19,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:18:19,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:19,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:19,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:19,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:19,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:18:19,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:18:19,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:19,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57623 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:19,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:19,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:19,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:18:20,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:18:20,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:20,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56985 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63270 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:22,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:22,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:22,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:18:22,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:18:22,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:22,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63271 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57627 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:24,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:24,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:24,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:18:24,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:18:24,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:24,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57628 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56994 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:26,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:26,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:26,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:18:26,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:18:26,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:26,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56995 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63932 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:26,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:26,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:26,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:18:26,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:18:26,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:26,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63933 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11501 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:29,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:29,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:29,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:18:29,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:18:29,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:29,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11502 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63281 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57636 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 3 jobs. +2025-10-02 02:18:32,530 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 02:18:32,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 02:18:32,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.394s +2025-10-02 02:18:32,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.394s +INFO:app.core.worker_manager:'simple-lama' batch of 3 processed in 0.394s (avg: 0.131s/image) +2025-10-02 02:18:32,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.394s (avg: 0.131s/image) +INFO:app.core.batch_manager:Successfully processed batch of 3 jobs. +2025-10-02 02:18:32,926 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +INFO: 211.226.69.49:63282 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57006 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57637 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63938 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:34,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:34,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:34,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:18:34,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:18:34,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:34,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63939 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61856 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:35,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:35,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:35,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:18:35,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:18:35,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:35,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61857 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:37,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:37,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:37,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:18:37,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:18:37,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:37,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11508 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63288 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61614 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:41,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:41,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:41,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:18:41,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:18:41,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:41,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63289 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:42,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:42,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:42,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:18:42,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:18:42,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:42,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61615 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57648 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:44,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:44,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:44,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:18:44,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:18:44,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:44,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57649 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61620 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:45,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:45,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:45,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:18:45,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:18:45,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:45,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61621 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63949 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:46,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:46,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:46,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:18:46,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:18:46,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:46,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63950 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46540 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:60855 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:47,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:47,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:47,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:18:47,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:18:47,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:47,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60856 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61871 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63298 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:18:48,990 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(958, 799, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:18:49,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(958, 799, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=120.578 +2025-10-02 02:18:49,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.578 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 02:18:49,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:18:49,111 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 122.35.47.45:61872 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:49,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:49,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:49,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:18:49,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:18:49,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:49,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63299 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61627 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:49,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:49,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:49,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:18:49,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:18:49,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:49,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61628 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:51,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:51,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:51,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:18:51,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:18:51,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:51,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61632 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:53,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:53,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:53,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:18:53,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:18:53,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:53,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61633 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:61880 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57330 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:63955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:55,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:55,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:55,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:18:55,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:18:55,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:55,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:61881 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60869 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:18:56,314 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:18:56,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:18:56,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-02 02:18:56,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-02 02:18:56,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:18:56,626 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:57331 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61637 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:56,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:56,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:56,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:18:56,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:18:56,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:56,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60870 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:18:57,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:18:57,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:18:57,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:18:57,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:18:57,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:18:57,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61638 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57118 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:00,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:00,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:00,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:19:00,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:19:00,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:00,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57119 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60876 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:01,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:01,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:01,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:19:01,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:19:01,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:01,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60877 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:01,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:01,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:01,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:19:01,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:19:01,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:01,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63960 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60882 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:19:05,193 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:19:05,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:19:05,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.329s +2025-10-02 02:19:05,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.329s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.329s (avg: 0.165s/image) +2025-10-02 02:19:05,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.329s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:19:05,524 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:63961 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60883 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57133 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:06,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:06,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:06,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:19:06,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:19:06,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:06,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57134 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:09,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:09,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:09,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:19:09,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:19:09,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:09,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:13,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:13,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:13,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:19:13,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:19:13,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:13,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63966 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60892 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:15,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:15,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:15,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:19:15,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:19:15,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:15,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60893 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:15,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:15,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:15,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:19:15,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:19:15,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:15,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63967 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57356 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54096 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:17,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:17,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:17,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:19:17,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:19:17,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:17,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57357 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:18,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:18,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:18,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:19:18,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:19:18,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:18,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60899 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9301 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:19,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:19,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:19,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:19:19,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:19:19,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:19,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60900 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:19,472 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:19,489 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=15.692 +2025-10-02 02:19:19,566 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.692 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:19:19,566 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:19:19,566 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 118.41.33.196:9302 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:57403 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:22,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:22,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:22,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:19:22,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:19:22,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:22,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57404 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61650 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:22,555 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:22,573 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=53.487 +2025-10-02 02:19:22,650 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.487 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:19:22,651 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:19:22,651 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 61.255.207.212:61651 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:57179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60904 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:19:23,243 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:19:23,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:19:23,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s +2025-10-02 02:19:23,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image) +2025-10-02 02:19:23,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:19:23,566 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:60905 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57181 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:23,643 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:23,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=37.388 +2025-10-02 02:19:23,737 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.388 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:19:23,738 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:19:23,738 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 118.41.33.196:9307 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:61655 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:26,024 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:26,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=50.618 +2025-10-02 02:19:26,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.618 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 02:19:26,123 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:19:26,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 61.255.207.212:61656 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:9311 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57408 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:27,457 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(801, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:27,469 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=155.031 +2025-10-02 02:19:27,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=155.031 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 02:19:27,549 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:19:27,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 118.41.33.196:9312 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:19:27,561 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:19:27,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:19:27,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-02 02:19:27,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-02 02:19:27,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:19:27,868 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:57409 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60912 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:29,150 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:29,170 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=48.655 +2025-10-02 02:19:29,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.655 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 02:19:29,251 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:19:29,251 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 61.255.207.212:61663 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:63974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:30,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:30,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:30,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:19:30,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:19:30,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:30,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57413 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:31,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:31,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:31,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:19:31,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:19:31,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:31,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57414 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57209 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:33,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:33,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:33,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:19:33,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:19:33,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:33,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57210 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11584 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:34,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:34,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:34,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:19:34,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:19:34,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:34,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11585 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57219 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57426 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:36,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:36,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:36,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:19:36,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:19:36,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:36,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57220 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:37,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:37,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:37,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:19:37,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:19:37,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:37,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57427 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:63980 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:37,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:37,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:37,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:19:37,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:19:37,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:37,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:63981 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57436 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:42,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:42,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:42,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:19:42,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:19:42,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:42,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57437 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57275 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:44,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:44,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:44,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:19:44,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:19:44,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:44,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57276 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57294 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:47,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:47,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:47,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:19:47,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:19:47,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:47,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57300 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59520 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:57441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:48,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:48,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:48,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:19:48,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:19:48,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:48,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57442 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:50,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:50,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:50,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:19:51,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:19:51,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:51,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57446 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61681 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9321 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:52,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:52,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:52,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:19:53,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:19:53,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:53,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57447 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:53,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:53,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:53,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:19:53,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:19:53,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:53,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61682 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:53,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:53,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:53,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:19:53,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:19:53,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:53,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9322 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60926 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:19:54,824 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:19:54,859 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=96.823 +2025-10-02 02:19:54,956 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.823 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.095s +2025-10-02 02:19:54,956 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.099s +2025-10-02 02:19:54,958 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s +INFO: 221.154.208.144:60927 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:55,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:55,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:55,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-02 02:19:55,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-02 02:19:55,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:55,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57325 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61687 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:56,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:56,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:56,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:19:56,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:19:56,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:56,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61688 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:56,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:56,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:56,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:19:56,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:19:56,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:56,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:57,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:57,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:57,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:19:57,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:19:57,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:57,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57451 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:58,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:58,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:58,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:19:58,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:19:58,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:58,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57452 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60931 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9326 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:59,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:59,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:59,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:19:59,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:19:59,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:59,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60932 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:19:59,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:19:59,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:19:59,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:19:59,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:19:59,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:19:59,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:00,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:00,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:00,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:20:00,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:20:00,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:00,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55577 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57459 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:02,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:02,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:02,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:20:02,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:20:02,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:02,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55578 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:02,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:02,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:02,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:20:03,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:20:03,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:03,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57460 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60938 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:03,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:03,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:03,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:20:03,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:20:03,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:03,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60939 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57351 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:06,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:06,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:06,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:20:06,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:20:06,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:06,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57352 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:08,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:08,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:08,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:20:08,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:20:08,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:08,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60943 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:08,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:08,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:08,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:20:09,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:20:09,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:09,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60944 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:09,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:09,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:09,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:20:09,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:20:09,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:09,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:11,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:11,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:11,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:20:12,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:20:12,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:12,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9336 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57490 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:14,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:14,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:14,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:20:14,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:20:14,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:14,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9337 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:14,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:14,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:14,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:20:14,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:20:14,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:14,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:15,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:15,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:15,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:20:15,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:20:15,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:15,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57375 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:16,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:16,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:16,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:20:16,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:20:16,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:16,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53700 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:57384 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9341 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:19,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:19,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:20,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:20:20,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:20:20,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:20,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57385 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:21,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:21,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:21,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:20:21,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:20:21,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:21,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9342 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:55980 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:26,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:26,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:26,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:20:27,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:20:27,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:27,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:55981 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57410 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:29,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:29,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:29,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:20:29,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:20:29,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:29,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55604 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:33,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:33,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:33,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:20:33,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:20:33,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:33,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55605 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:34,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:34,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:34,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:20:34,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:20:34,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:34,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57459 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:39,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:39,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:39,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:20:39,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:20:39,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:39,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:43,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:43,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:43,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:20:43,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:20:43,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:43,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:44,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:44,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:44,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:20:44,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:20:44,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:44,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55613 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34474 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:11607 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:51,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:51,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:51,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:20:51,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:20:51,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:51,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57503 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:20:53,807 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:20:53,849 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=166.332 +2025-10-02 02:20:53,944 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.332 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 02:20:53,944 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 02:20:53,946 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 175.119.234.181:11608 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:60971 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:54,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:54,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:54,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:20:54,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:20:54,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:54,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60972 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57510 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:55,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:55,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:55,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:20:55,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:20:55,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:55,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57511 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:60978 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:20:57,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:20:57,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:20:57,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 02:20:57,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 02:20:57,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:20:57,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60979 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:20:57,753 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:20:57,797 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=178.930 +2025-10-02 02:20:57,889 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=178.930 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 02:20:57,889 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 02:20:57,889 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 39.112.59.88:57699 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:57537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:60983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:01,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:01,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:01,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:21:01,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:21:01,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:01,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57539 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:01,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:01,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:01,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-02 02:21:02,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-02 02:21:02,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:02,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:60984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61729 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:21:02,728 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:21:02,751 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=59.837 +2025-10-02 02:21:02,833 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.837 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 02:21:02,833 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:21:02,833 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 61.255.207.212:61730 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:61735 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:62083 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:21:06,891 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:21:06,916 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=25.990 +2025-10-02 02:21:06,993 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.990 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:21:06,993 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:21:06,993 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 61.255.207.212:61736 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:57551 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:07,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:07,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:07,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:21:07,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:21:07,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:07,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62085 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:07,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:07,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:07,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:21:07,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:21:07,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:07,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57552 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61740 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:21:09,958 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:21:09,985 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=25.626 +2025-10-02 02:21:10,072 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.626 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 02:21:10,072 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:21:10,072 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 61.255.207.212:61741 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:62092 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:12,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:12,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:12,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:21:13,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:21:13,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:13,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62093 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57575 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:17,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:17,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:17,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:21:17,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:21:17,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:17,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62100 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48972 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:19,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:19,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:19,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 02:21:19,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 02:21:19,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:19,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57576 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62110 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61749 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55628 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:22,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:22,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:22,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:21:22,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:21:22,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:22,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62111 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:23,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:23,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:23,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:21:23,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:21:23,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:23,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61750 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:23,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:23,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:23,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 02:21:23,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 02:21:23,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:23,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55629 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:26,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:26,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:26,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:21:26,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:21:26,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:26,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57613 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62119 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:28,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:28,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:28,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:21:28,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:21:28,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:28,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62120 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55633 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:28,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:28,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:28,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:21:28,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:21:28,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:28,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55634 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:31,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:31,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:31,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:21:31,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:21:31,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:31,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62126 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57728 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55638 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:32,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:32,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:32,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:21:32,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:21:32,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:32,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55639 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:32,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:32,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:32,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:21:33,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:21:33,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:33,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57729 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57736 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:33,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:33,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:33,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:21:33,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:21:33,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:33,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57737 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:33,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:33,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:33,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:21:33,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:21:33,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:33,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57585 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62132 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:36,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:36,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:36,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:21:36,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:21:36,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:36,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62133 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11646 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:37,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:37,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:37,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:21:37,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:21:37,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:37,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11647 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57734 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:21:38,607 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:21:38,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:21:38,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 02:21:38,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 02:21:38,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:21:38,899 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:57735 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61761 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57606 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:21:41,201 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:21:41,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:21:41,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 02:21:41,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 02:21:41,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:21:41,486 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:61762 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57611 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:42,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:42,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:42,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:21:42,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:21:42,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:42,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62141 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:42,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:42,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:42,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:21:42,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:21:42,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:42,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11653 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:43,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:43,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:43,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:21:44,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:21:44,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:44,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57740 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61025 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61766 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:45,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:45,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:45,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:21:46,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:21:46,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:46,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61767 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:46,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:46,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:46,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:21:46,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:21:46,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:46,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61026 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:46,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:46,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:46,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:21:46,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:21:46,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:46,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62148 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11657 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:47,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:47,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:47,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:21:47,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:21:47,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:47,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11658 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45550 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:57617 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:48,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:48,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:48,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:21:48,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:21:48,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:48,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57618 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57745 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:49,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:49,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:49,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:21:49,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:21:49,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:49,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57746 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:62156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:50,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:50,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:50,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:21:50,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:21:50,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:50,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11663 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:50,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:50,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:50,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:21:50,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:21:50,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:50,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61030 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:52,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:52,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:52,299 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:21:52,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:21:52,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:52,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61031 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:52,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:52,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:52,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:21:53,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:21:53,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:53,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61776 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55656 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:54,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:54,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:54,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:21:55,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:21:55,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:55,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55657 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61780 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:55,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:55,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:55,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:21:55,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:21:55,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:55,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61781 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:21:55,858 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:21:55,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:21:55,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 02:21:56,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-02 02:21:56,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:21:56,165 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:57751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11668 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61035 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:57,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:57,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:57,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:21:58,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:21:58,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:58,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61036 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61785 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:21:59,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:21:59,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:21:59,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:21:59,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:21:59,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:21:59,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61786 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11673 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:00,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:00,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:00,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:22:00,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:22:00,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:00,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11674 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61042 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:01,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:01,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:02,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:22:02,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:22:02,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:02,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:02,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:02,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:02,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 02:22:02,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 02:22:02,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:02,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57760 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56043 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:05,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:05,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:05,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:22:05,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:22:05,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:05,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62173 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:22:05,952 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:22:05,973 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=78.459 +2025-10-02 02:22:06,053 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.459 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 02:22:06,053 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:22:06,054 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 122.35.47.45:62174 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:61049 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:08,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:08,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:08,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:22:08,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:22:08,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:08,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61050 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55670 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:10,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:10,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:10,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:22:10,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:22:10,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:10,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55671 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9353 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:22:11,984 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:22:12,017 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=143.383 +2025-10-02 02:22:12,090 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.383 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.072s +2025-10-02 02:22:12,091 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:22:12,091 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 118.41.33.196:9354 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:57771 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:13,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:13,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:13,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:22:13,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:22:13,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:13,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57772 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55675 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61056 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:22:14,313 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:22:14,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:22:14,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 02:22:14,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 02:22:14,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:22:14,598 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:55676 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61057 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:14,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:14,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:15,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:22:15,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:22:15,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:15,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9358 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:22:17,080 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:22:17,110 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=86.393 +2025-10-02 02:22:17,198 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.393 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 02:22:17,198 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:22:17,199 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 118.41.33.196:9359 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:52142 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:62186 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61807 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:17,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:17,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:17,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:22:18,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:22:18,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:18,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61808 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:18,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:18,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:18,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:22:18,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:22:18,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:18,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57641 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9364 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:20,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:20,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:20,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:22:20,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:22:20,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:20,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55680 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:20,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:20,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:20,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:22:21,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:22:21,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:21,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57651 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64016 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:22:21,074 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:22:21,092 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=136.299 +2025-10-02 02:22:21,166 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.299 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 02:22:21,166 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:22:21,166 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 118.41.33.196:9365 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:21,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:21,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:21,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:22:21,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:22:21,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:21,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55681 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:21,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:21,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:21,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:22:21,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:22:21,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:21,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64017 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63449 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:22:23,394 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:22:23,419 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=119.473 +2025-10-02 02:22:23,501 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.473 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 02:22:23,502 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:22:23,503 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 211.226.69.49:63450 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:23,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:23,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:23,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:22:23,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:22:23,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:23,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:25,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:25,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:25,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:22:25,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:22:25,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:25,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62197 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57668 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:26,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:26,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:26,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:22:26,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:22:26,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:26,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57669 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:27,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:27,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:27,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:22:27,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:22:27,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:27,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61820 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63459 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:28,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:28,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:28,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:22:28,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:22:28,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:28,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61821 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:22:28,875 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:22:28,903 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=161.230 +2025-10-02 02:22:28,996 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.230 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 02:22:28,996 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 02:22:28,998 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 211.226.69.49:63460 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:62203 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:58203 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11699 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:30,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:30,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:30,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:22:31,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:22:31,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:31,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62204 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:31,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:31,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:31,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:22:31,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:22:31,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:31,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11700 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64021 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:31,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:31,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:31,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:22:31,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:22:31,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:31,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58204 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61079 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:33,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:33,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:33,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:22:33,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:22:33,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:33,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64022 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57676 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:33,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:33,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:33,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:22:34,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:22:34,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:34,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61080 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:34,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:34,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:34,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:22:34,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:22:34,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:34,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57679 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11745 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:36,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:36,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:36,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:22:37,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:22:37,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:37,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11781 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:38,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:38,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:38,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:22:38,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:22:38,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:38,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61084 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:39,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:39,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:39,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:22:39,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:22:39,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:39,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61085 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9371 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:40,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:40,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:40,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:22:40,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:22:40,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:40,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9372 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64026 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:41,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:41,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:41,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:22:41,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:22:41,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:41,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64027 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58498 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9376 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:46,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:46,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:46,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:22:46,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:22:46,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:46,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:46,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:46,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:46,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:22:46,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:22:46,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:46,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58501 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53250 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:9381 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:49,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:49,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:49,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:22:49,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:22:49,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:49,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9382 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64031 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:50,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:50,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:50,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:22:50,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:22:50,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:50,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64032 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63477 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:51,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:51,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:51,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:22:51,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:22:51,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:51,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63478 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9386 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:53,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:53,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:53,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:22:53,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:22:53,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:53,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57700 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:53,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:53,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:53,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:22:53,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:22:53,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:53,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9387 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:53,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:53,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:53,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:22:54,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:22:54,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:54,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:54,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:54,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:54,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:22:54,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:22:54,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:54,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57701 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9393 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:57,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:57,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:57,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:22:57,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:22:57,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:57,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9394 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58554 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:22:59,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:22:59,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:22:59,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:22:59,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:22:59,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:22:59,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58555 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64038 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9399 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:23:01,005 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:23:01,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:23:01,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 02:23:01,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-02 02:23:01,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:23:01,295 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:64039 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9400 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57710 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:03,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:03,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:03,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:23:03,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:23:03,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:03,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57711 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62242 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:03,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:03,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:03,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:23:03,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:23:03,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:03,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62244 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:23:04,553 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:23:04,578 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=85.241 +2025-10-02 02:23:04,665 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.241 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 02:23:04,665 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:23:04,665 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 221.154.208.144:61100 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:63489 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:58594 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:05,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:05,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:05,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:23:05,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:23:05,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:05,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:05,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:05,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:05,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:23:05,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:23:05,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:05,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58595 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:07,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:07,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:07,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:23:07,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:23:07,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:07,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61859 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:07,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:07,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:07,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:23:07,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:23:07,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:07,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61860 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57765 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:09,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:09,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:09,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:23:09,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:23:09,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:09,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57766 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58621 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9404 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:09,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:09,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:09,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:23:10,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:23:10,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:10,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58624 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:10,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:10,368 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:10,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:23:10,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:23:10,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:10,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9405 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:10,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:10,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:10,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:23:10,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:23:10,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:10,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64043 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:11,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:11,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:11,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:23:11,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:23:11,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:11,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61867 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:12,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:12,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:12,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:23:13,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:23:13,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:13,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61868 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9409 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:62266 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:15,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:15,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:15,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:23:15,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:23:15,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:15,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57774 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:23:15,709 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:23:15,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:23:15,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.326s +2025-10-02 02:23:16,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.326s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.326s (avg: 0.163s/image) +2025-10-02 02:23:16,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.326s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:23:16,037 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:9410 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62267 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61111 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:16,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:16,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:16,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:23:16,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:23:16,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:16,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61113 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37892 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:63501 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:17,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:17,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:18,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:23:18,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:23:18,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:18,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63502 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64048 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:19,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:19,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:19,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:23:19,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:23:19,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:19,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64049 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:62278 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61874 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:23:20,081 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:23:20,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:23:20,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 02:23:20,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-02 02:23:20,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:23:20,387 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:9415 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62279 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:20,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:20,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:20,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:23:20,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:23:20,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:20,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61875 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9419 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:23,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:23,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:23,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:23:24,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:23:24,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:24,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9420 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62288 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:24,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:24,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:24,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:23:25,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:23:25,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:25,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62289 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57786 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:25,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:25,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:25,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:23:25,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:23:25,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:25,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57787 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63508 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:26,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:26,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:26,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:23:27,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:23:27,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:27,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63509 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:27,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:27,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:27,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:23:27,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:23:27,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:27,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61122 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9425 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:27,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:27,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:27,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:23:28,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:23:28,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:28,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61123 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:28,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:28,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:28,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:23:28,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:23:28,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:28,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9426 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9430 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:32,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:32,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:32,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:23:32,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:23:32,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:32,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9431 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11802 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:23:32,660 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:23:32,683 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=61.972 +2025-10-02 02:23:32,763 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.972 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 02:23:32,764 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:23:32,764 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 175.119.234.181:11803 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:57797 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:33,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:33,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:33,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:23:33,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:23:33,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:33,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57798 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:33,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:33,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:33,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:23:33,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:23:33,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:33,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62304 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9435 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:35,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:35,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:35,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:23:35,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:23:36,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:36,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9436 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64059 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:36,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:36,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:36,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:23:36,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:23:36,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:36,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64060 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63515 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:62310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:37,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:37,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:37,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:23:37,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:23:37,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:37,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63516 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:37,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:37,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:37,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:23:38,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:23:38,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:38,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62311 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:58718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:39,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:39,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:39,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:23:39,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:23:39,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:39,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9440 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:40,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:40,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:40,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:23:41,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:23:41,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:41,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:41,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:41,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:41,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:23:41,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:23:41,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:41,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9441 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:41,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:41,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:41,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:23:42,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:23:42,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:42,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64065 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57818 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:43,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:43,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:43,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:23:43,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:23:43,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:43,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64066 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:44,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:44,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:44,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:23:44,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:23:44,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:44,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57819 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:45,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:45,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:45,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:23:45,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:23:45,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:45,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9446 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58728 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:62324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:23:46,001 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:23:46,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:23:46,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 02:23:46,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-02 02:23:46,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:23:46,269 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:58729 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62325 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60888 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:9450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:48,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:48,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:48,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:23:49,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:23:49,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:49,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57824 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:58736 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:51,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:51,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:51,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:23:51,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:23:51,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:51,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57825 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64071 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:51,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:51,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:52,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:23:52,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:23:52,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:52,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58737 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55715 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:62345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:52,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:52,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:52,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:23:52,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:23:52,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:52,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64072 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:52,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:52,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:52,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:23:52,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:23:52,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:52,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55716 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:52,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:52,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:52,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:23:53,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:23:53,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:53,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62347 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11843 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:55,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:55,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:55,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:23:55,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:23:55,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:55,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11844 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61143 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:55,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:55,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:55,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:23:55,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:23:55,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:55,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61144 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55721 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:57,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:57,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:57,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:23:57,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:23:57,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:57,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55722 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58765 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:58,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:58,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:58,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:23:58,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:23:58,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:58,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58766 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:58,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:58,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:58,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:23:58,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:23:58,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:23:58,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57831 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62358 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:23:59,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:23:59,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:23:59,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:24:00,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:24:00,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:00,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62359 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64076 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:00,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:00,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:00,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:24:00,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:24:00,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:00,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64077 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55726 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:01,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:01,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:01,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:24:01,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:24:01,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:01,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55727 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62364 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:58804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:03,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:03,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:03,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:24:03,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:24:03,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:03,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62365 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:03,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:03,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:03,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:24:03,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:24:03,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:03,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58805 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:05,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:05,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:05,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:24:05,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:24:05,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:05,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57837 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:06,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:06,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:06,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:24:06,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:24:06,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:06,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55732 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:07,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:07,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:07,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:24:07,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:24:07,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:07,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61897 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:24:07,550 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:24:07,568 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=131.945 +2025-10-02 02:24:07,654 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.945 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 02:24:07,655 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:24:07,655 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 61.255.207.212:61898 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:62376 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:08,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:08,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:08,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:24:08,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:24:08,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:08,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55737 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:10,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:10,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:10,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:24:10,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:24:10,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:10,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55738 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61902 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:24:10,911 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:24:10,928 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=122.660 +2025-10-02 02:24:11,008 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.660 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 02:24:11,009 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:24:11,009 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 61.255.207.212:61903 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:57842 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:11,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:11,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:11,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:24:11,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:24:11,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:11,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57843 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62386 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:12,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:12,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:12,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:24:12,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:24:12,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:12,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62387 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11855 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:13,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:13,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:13,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:24:13,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:24:13,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:13,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:13,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:13,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:13,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:24:13,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:24:13,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:13,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11856 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:24:14,183 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:24:14,202 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=132.040 +2025-10-02 02:24:14,291 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.040 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 02:24:14,292 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:24:14,292 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 61.255.207.212:61908 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:58845 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:14,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:14,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:14,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:24:14,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:24:14,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:14,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58846 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:15,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:15,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:15,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:24:15,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:24:15,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:15,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55743 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62393 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:15,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:15,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:15,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:24:15,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:24:15,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:15,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62394 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56568 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:63576 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61177 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:58857 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:19,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:19,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:19,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:24:19,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:24:19,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:19,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63577 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:24:19,734 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:24:19,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:24:19,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 02:24:20,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 02:24:20,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:24:20,014 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:55748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61178 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:20,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:20,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:20,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:24:20,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:24:20,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:20,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58858 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:24:21,948 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:24:21,981 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=110.785 +2025-10-02 02:24:22,073 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.785 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 02:24:22,073 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 02:24:22,074 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 39.112.59.88:57849 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:58869 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:22,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:22,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:22,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:24:22,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:24:22,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:22,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58870 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57875 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:23,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:23,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:24,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:24:24,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:24:24,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:24,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57876 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61184 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55752 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:24,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:24,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:24,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:24:24,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:24:24,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:24,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61185 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:24,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:24,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:24,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:24:24,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:24:24,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:24,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55753 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58876 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:25,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:25,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:25,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:24:25,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:24:25,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:25,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58877 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61189 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56103 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55758 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:29,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:29,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:29,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:24:29,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:24:29,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:29,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61190 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:24:29,416 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:24:29,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:24:29,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-02 02:24:29,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-02 02:24:29,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:24:29,690 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:55759 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56104 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58886 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11873 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57855 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:29,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:29,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:29,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:24:30,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:24:30,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:30,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11874 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:30,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:30,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:30,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:24:30,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:24:30,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:30,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58887 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:30,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:30,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:30,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:24:30,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:24:30,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:30,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57856 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:58894 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:34,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:34,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:34,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:24:34,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:24:34,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:34,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:34,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:34,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:34,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:24:34,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:24:34,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:34,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58895 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58902 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:37,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:37,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:37,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:24:37,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:24:37,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:37,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58903 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63595 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11890 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:37,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:37,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:37,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:24:37,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:24:37,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:37,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:24:37,804 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:24:37,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:24:37,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.327s +2025-10-02 02:24:38,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.327s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.327s (avg: 0.163s/image) +2025-10-02 02:24:38,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.327s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:24:38,131 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:11891 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63596 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:38,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:38,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:38,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:24:38,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:24:38,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:38,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:40,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:40,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:41,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:24:41,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:24:41,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:41,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61205 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58909 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:41,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:41,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:41,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:24:41,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:24:41,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:41,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58911 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55774 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:62415 - "GET /health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:43,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:43,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:43,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:24:43,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:24:43,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:43,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55775 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62416 - "GET /health HTTP/1.1" 200 OK +INFO: 211.226.69.49:56114 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61215 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:24:44,908 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:24:44,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:24:44,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 02:24:45,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +2025-10-02 02:24:45,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:24:45,225 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:61216 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56115 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:45,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:45,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:45,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:24:45,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:24:45,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:45,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58924 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:45,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:45,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:45,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 02:24:46,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 02:24:46,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:46,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58925 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55779 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:47,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:47,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:47,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:24:47,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:24:47,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:47,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55780 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60136 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:58932 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:49,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:49,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:49,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:24:49,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:24:49,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:49,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58933 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56121 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:49,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:49,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:49,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:24:49,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:24:49,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:49,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:50,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:50,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:50,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:24:50,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:24:50,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:50,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56122 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57871 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55784 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:24:51,600 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:24:51,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:24:51,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 02:24:51,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 02:24:51,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:24:51,880 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:55785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57872 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56128 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:57935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:55,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:55,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:55,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:24:55,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:24:55,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:55,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56129 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:24:55,707 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:24:55,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:24:55,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +2025-10-02 02:24:55,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +2025-10-02 02:24:55,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:24:55,968 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:61229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55789 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:24:56,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:24:56,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:24:56,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:24:56,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:24:56,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:24:56,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55790 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:24:59,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(780, 780, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:24:59,116 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(780, 780, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=41.910 +2025-10-02 02:24:59,200 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.910 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 02:24:59,201 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:24:59,201 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 118.41.33.196:9464 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:56134 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:00,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:00,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:00,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:25:00,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:25:00,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:00,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56136 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55794 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:01,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:01,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:01,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:25:01,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:25:01,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:01,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55795 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9468 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:25:03,537 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:25:03,563 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=41.827 +2025-10-02 02:25:03,633 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.827 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.070s +2025-10-02 02:25:03,634 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-02 02:25:03,634 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +INFO: 118.41.33.196:9469 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:55799 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:05,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:05,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:05,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:25:05,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:25:05,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:05,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55800 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57878 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56148 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:06,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:06,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:06,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:25:06,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:25:06,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:06,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56149 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:07,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:07,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:07,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:25:07,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:25:07,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:07,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57879 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:25:07,786 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:25:07,814 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=32.643 +2025-10-02 02:25:07,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.643 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.071s +2025-10-02 02:25:07,885 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 02:25:07,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +INFO: 118.41.33.196:9474 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:55805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:09,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:09,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:10,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:25:10,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:25:10,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:10,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57884 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:13,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:13,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:13,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:25:13,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:25:13,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:13,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57885 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:14,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:14,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:14,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:25:15,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:25:15,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:15,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61975 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:16,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:16,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:16,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 02:25:16,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 02:25:16,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:16,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61976 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45268 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:11940 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57891 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:18,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:18,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:18,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:25:18,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:25:18,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:18,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:18,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:18,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:18,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:25:18,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:25:18,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:18,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57892 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:19,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:19,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:19,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:25:19,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:25:19,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:19,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61982 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64083 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:22,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:22,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:22,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:25:22,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:25:22,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:22,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61983 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:25:22,938 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:25:22,959 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=190.131 +2025-10-02 02:25:23,042 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.131 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 02:25:23,042 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:25:23,042 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 220.77.167.192:64084 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:11946 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:24,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:24,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:24,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:25:24,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:25:24,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:24,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11947 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:25:24,775 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:25:24,800 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=88.378 +2025-10-02 02:25:24,879 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.378 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 02:25:24,879 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:25:24,882 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 122.35.47.45:62500 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:57896 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:25,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:25,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:25,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:25:25,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:25:25,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:25,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9482 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:26,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:26,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:26,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:25:26,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:25:26,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:26,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57897 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61987 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:28,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:28,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:28,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:25:28,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:25:28,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:28,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61988 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11951 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:29,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:29,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:29,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:25:29,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:25:29,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:29,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11952 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57902 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:30,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:30,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:30,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:25:30,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:25:30,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:30,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57903 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61994 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:32,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:32,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:32,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:25:32,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:25:32,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:32,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61995 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64088 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:33,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:33,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:33,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:25:33,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:25:33,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:33,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64089 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:34,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:34,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:34,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:25:34,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:25:34,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:34,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57912 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:38,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:38,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:38,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:25:38,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:25:38,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:38,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57913 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:39,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:39,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:39,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:25:39,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:25:39,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:39,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11963 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64093 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:41,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:41,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:41,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:25:41,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:25:41,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:41,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64094 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:57982 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:42,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:42,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:42,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:25:42,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:25:42,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:42,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:57983 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57917 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:43,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:43,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:43,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:25:43,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:25:43,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:43,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57918 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11970 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:44,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:44,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:44,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:25:44,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:25:44,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:44,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9508 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:44,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:44,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:44,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:25:44,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:25:44,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:44,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11971 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56666 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:64098 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:48,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:48,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:48,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:25:48,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:25:48,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:48,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64099 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11975 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:49,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:49,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:49,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:25:49,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:25:49,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:49,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11976 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57926 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:51,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:51,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:51,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:25:51,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:25:51,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:51,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57927 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61275 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:53,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:53,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:53,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:25:53,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:25:53,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:53,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61276 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62004 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:25:55,717 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:25:55,743 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=159.043 +2025-10-02 02:25:55,829 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.043 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 02:25:55,829 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 02:25:55,829 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:62005 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:62547 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:58,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:58,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:58,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:25:58,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:25:58,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:58,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62548 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61283 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:58,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:58,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:58,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:25:59,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:25:59,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:25:59,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61284 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62011 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:25:59,727 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:25:59,749 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=173.624 +2025-10-02 02:25:59,833 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.624 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 02:25:59,833 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:25:59,833 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 61.255.207.212:62012 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:25:59,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:25:59,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:25:59,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:26:00,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:26:00,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:00,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62558 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62016 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:57940 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:26:04,391 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:26:04,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=31.869 +2025-10-02 02:26:04,503 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.869 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 02:26:04,503 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:26:04,504 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:62017 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:04,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:04,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:04,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:26:04,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:26:04,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:04,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62559 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58018 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61288 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:06,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:06,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:06,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:26:06,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:26:06,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:06,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59174 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:62571 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:10,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:10,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:10,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:26:10,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:26:10,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:10,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61289 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62023 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55849 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:15,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:15,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:15,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:26:15,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:26:15,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:15,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62024 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61299 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35370 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:17,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:17,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:17,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:26:18,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:26:18,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:18,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58022 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:26:18,463 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:26:18,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:26:18,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 02:26:18,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-02 02:26:18,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:26:18,765 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:61300 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55850 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:19,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:19,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:19,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:26:20,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:26:20,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:20,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59177 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:20,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:20,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:20,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:26:21,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:26:21,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:21,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62572 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62031 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:21,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:21,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:21,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:26:21,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:26:21,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:21,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:22,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:22,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:22,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:26:22,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:26:22,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:22,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62032 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62589 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:23,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:23,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:24,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:26:24,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:26:24,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:24,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62591 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:25,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:25,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:25,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:26:25,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:26:25,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:25,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55857 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:26,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:26,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:26,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:26:26,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:26:26,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:26,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55858 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58040 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:26,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:26,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:26,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:26:27,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:26:27,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:27,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61312 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:32,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:32,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:32,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:26:32,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:26:32,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:32,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61313 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58046 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55866 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:33,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:33,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:33,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 02:26:33,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 02:26:33,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:33,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58047 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:33,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:33,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:33,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:26:33,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:26:33,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:33,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55867 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:57951 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:34,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:34,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:34,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:26:34,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:26:34,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:34,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:57952 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55871 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:36,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:36,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:36,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:26:36,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:26:36,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:36,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55872 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:37,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:37,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:37,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:26:37,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:26:37,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:37,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:37,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:37,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:37,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:26:37,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:26:37,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:37,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:39,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:39,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:39,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:26:39,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:26:39,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:39,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59234 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:40,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:40,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:40,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:26:40,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:26:40,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:40,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59235 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61326 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:42,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:42,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:42,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:26:42,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:26:42,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:42,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62049 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:44,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:44,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:44,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:26:44,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:26:44,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:44,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58065 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63673 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:44,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:44,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:44,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:26:44,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:26:44,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:44,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55885 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:46,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:46,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:46,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:26:46,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:26:46,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:46,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58066 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59285 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:46,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:46,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:46,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:26:46,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:26:46,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:46,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62050 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9545 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:47,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:47,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:47,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:26:47,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:26:47,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:47,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55886 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:47,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:47,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:47,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:26:47,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:26:47,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:47,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58922 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:26:47,652 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:26:47,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:26:47,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.253s +2025-10-02 02:26:47,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.253s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.253s (avg: 0.126s/image) +2025-10-02 02:26:47,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.253s (avg: 0.126s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:26:47,906 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:63674 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9546 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:48,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:48,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:48,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:26:48,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:26:48,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:48,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59287 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12011 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:26:50,623 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:26:50,645 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=21.043 +2025-10-02 02:26:50,733 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.043 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 02:26:50,733 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:26:50,733 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 175.119.234.181:12012 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:62056 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56189 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:51,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:51,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:51,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:26:51,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:26:51,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:51,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62057 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:51,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:51,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:51,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:26:51,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:26:51,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:51,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56190 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64115 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:52,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:52,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:52,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:26:52,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:26:52,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:52,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64116 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:53,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:53,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:53,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:26:53,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:26:53,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:53,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12025 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63682 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:58,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:58,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:58,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:26:58,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:26:58,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:58,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:58,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:58,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:58,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:26:59,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:26:59,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:59,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63683 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:59,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:59,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:59,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:26:59,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:26:59,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:59,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12026 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:26:59,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:26:59,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:26:59,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:26:59,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:26:59,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:26:59,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56197 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64121 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:59328 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:00,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:00,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:00,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:27:01,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:27:01,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:01,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64122 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:01,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:01,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:01,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:27:01,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:27:01,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:01,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59329 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56203 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:06,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:06,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:06,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:27:06,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:27:06,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:06,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56204 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12038 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:07,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:07,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:07,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:27:07,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:27:07,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:07,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12039 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62071 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:07,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:07,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:07,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:27:07,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:27:07,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:07,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62072 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63695 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:08,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:08,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:08,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:27:08,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:27:08,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:08,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63696 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64126 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:09,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:09,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:09,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:27:09,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:27:09,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:09,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64127 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59342 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:09,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:09,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:10,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:27:10,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:27:10,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:10,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59343 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56209 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:12,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:12,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:12,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:27:12,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:27:12,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:12,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56210 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55918 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:59350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:14,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:14,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:14,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:27:14,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:27:14,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:14,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55919 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12045 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:14,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:14,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:14,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:27:14,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:27:14,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:14,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:15,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:15,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:15,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:27:15,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:27:15,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:15,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12047 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62686 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:27:16,049 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:27:16,082 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=66.727 +2025-10-02 02:27:16,174 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.727 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 02:27:16,174 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 02:27:16,175 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 122.35.47.45:62687 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:62082 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:16,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:16,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:16,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:27:16,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:27:16,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:16,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62083 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54992 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:63703 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:18,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:18,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:18,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:27:18,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:27:18,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:18,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63704 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:27:19,661 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:27:19,680 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=31.947 +2025-10-02 02:27:19,757 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.947 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:27:19,757 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:27:19,757 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 221.154.208.144:61351 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:19,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:19,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:19,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:27:20,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:27:20,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:20,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56214 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:21,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:21,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:21,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:27:21,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:27:21,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:21,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56215 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64134 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:22,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:22,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:22,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:27:22,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:27:22,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:22,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64135 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62093 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:23,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:23,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:23,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:27:23,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:27:23,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:23,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62094 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61361 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:24,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:24,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:24,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:27:24,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:27:24,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:24,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61362 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:27,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:27,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:27,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:27:27,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:27:27,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:27,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63711 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:28,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:28,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:28,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:27:28,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:27:28,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:28,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:28,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:28,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:28,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:27:29,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:27:29,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:29,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64140 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:29,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:29,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:29,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:27:29,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:27:29,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:29,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58162 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:30,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:30,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:30,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:27:31,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:27:31,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:31,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:31,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:31,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:31,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:27:32,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:27:32,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:32,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:27:35,301 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:27:35,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:27:35,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-02 02:27:35,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-02 02:27:35,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:27:35,574 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:64146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:36,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:36,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:36,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:27:36,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:27:36,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:36,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61373 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:27:36,616 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:27:36,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:27:36,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 02:27:36,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 02:27:36,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:27:36,897 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:58205 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61374 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:37,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:37,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:37,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:27:37,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:27:37,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:37,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63720 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:38,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:38,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:38,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:27:38,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:27:38,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:38,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63721 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62114 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:39,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:39,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:39,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:27:39,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:27:39,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:39,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62115 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62726 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12067 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64150 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:42,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:42,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:42,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:27:42,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:27:42,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:42,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62727 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:27:42,372 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:27:42,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:27:42,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 02:27:42,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-02 02:27:42,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:27:42,638 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:12068 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61382 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:43,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:43,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:43,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:27:43,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:27:43,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:43,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61383 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:43,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:43,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:43,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:27:43,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:27:43,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:43,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62119 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:44,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:44,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:44,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:27:44,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:27:44,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:44,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62120 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:45,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:45,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:45,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:27:45,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:27:45,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:45,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12079 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60612 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:62126 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63733 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:48,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:48,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:48,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:27:48,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:27:48,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:48,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62127 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:48,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:48,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:48,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:27:48,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:27:48,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:48,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63734 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64155 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:49,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:49,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:49,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:27:49,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:27:49,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:49,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64156 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:50,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:50,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:50,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:27:50,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:27:50,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:50,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56245 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:50,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:50,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:50,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:27:51,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:27:51,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:51,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56246 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55933 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:27:51,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:27:51,580 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=46.152 +2025-10-02 02:27:51,661 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.152 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 02:27:51,662 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:27:51,662 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 39.112.59.88:58006 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:51,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:51,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:51,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:27:51,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:27:51,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:51,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55934 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62756 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:54,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:54,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:54,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-02 02:27:54,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-02 02:27:54,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:54,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62757 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64160 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:55,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:55,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:55,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:27:55,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:27:55,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:55,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64161 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56252 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55938 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:27:57,903 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:27:57,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:27:57,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 02:27:58,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 02:27:58,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:27:58,184 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:56253 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63743 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:58,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:58,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:58,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:27:58,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:27:58,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:58,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55939 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62763 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:27:59,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:27:59,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:27:59,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:27:59,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:27:59,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:27:59,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62764 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64165 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:01,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:01,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:01,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:28:01,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:28:01,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:01,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64166 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55943 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58019 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:03,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:03,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:03,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:28:03,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:28:03,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:03,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55944 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:04,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:04,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:04,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:28:04,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:28:04,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:04,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58020 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63756 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:06,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:06,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:06,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:28:06,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:28:06,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:06,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:06,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:06,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:06,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:28:06,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:28:06,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:06,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63757 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:07,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:07,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:07,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:28:07,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:28:07,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:07,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55948 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:08,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:08,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:08,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:28:09,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:28:09,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:09,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55949 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:09,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:09,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:09,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:28:09,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:28:09,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:09,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62147 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:10,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:10,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:10,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:28:10,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:28:10,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:10,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62148 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64175 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:13,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:13,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:13,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:28:13,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:28:13,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:13,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64176 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61392 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:13,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:13,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:13,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:28:13,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:28:13,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:13,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61393 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55953 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:28:14,920 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:14,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:14,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 02:28:15,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-02 02:28:15,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:28:15,196 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:63765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55954 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58252 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:15,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:15,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:15,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:28:15,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:28:15,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:15,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56265 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:15,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:15,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:15,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 02:28:15,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 02:28:15,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:15,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58253 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62154 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:16,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:16,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:16,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:28:16,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:28:16,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:16,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62155 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49608 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:64181 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:19,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:19,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:19,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:28:19,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:28:19,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:19,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64182 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62789 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:28:19,605 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:28:19,630 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=89.809 +2025-10-02 02:28:19,706 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.809 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:28:19,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:28:19,707 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 122.35.47.45:62790 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:55958 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:20,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:20,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:20,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:28:20,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:28:20,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:20,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55959 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61405 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58300 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:28:21,649 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:21,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:21,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-02 02:28:21,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-02 02:28:21,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:28:21,912 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:61406 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58301 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:22,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:22,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:22,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:28:22,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:28:22,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:22,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62160 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:23,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:23,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:23,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:28:23,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:28:23,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:23,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:23,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:23,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:23,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:28:23,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:28:23,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:23,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63776 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:23,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:23,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:23,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:28:24,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:28:24,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:24,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:24,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:24,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:24,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:28:24,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:28:24,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:24,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64186 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:25,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:25,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:25,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-02 02:28:25,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-02 02:28:25,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:25,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64187 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9561 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:28:26,126 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:28:26,152 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=152.563 +2025-10-02 02:28:26,240 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.563 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 02:28:26,240 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:28:26,243 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 118.41.33.196:9562 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:61416 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:26,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:26,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:26,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:28:27,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:28:27,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:27,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61417 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55964 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:27,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:27,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:27,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:28:27,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:28:27,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:27,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55965 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56278 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61421 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:29,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:29,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:29,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:28:29,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:28:29,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:29,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:28:29,489 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:29,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:29,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 02:28:29,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 02:28:29,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:28:29,777 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:56279 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61422 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9567 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:28:30,161 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:28:30,183 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=117.343 +2025-10-02 02:28:30,262 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.343 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 02:28:30,262 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:28:30,263 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 118.41.33.196:9568 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:58044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63784 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64191 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:32,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:32,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:32,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:28:32,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:28:32,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:32,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55969 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61426 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:28:32,981 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:32,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:33,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.244s +2025-10-02 02:28:33,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.244s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.244s (avg: 0.122s/image) +2025-10-02 02:28:33,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.244s (avg: 0.122s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:28:33,226 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:58045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64192 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:28:33,472 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:33,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:33,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 02:28:33,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-02 02:28:33,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:28:33,743 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:55970 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61427 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58312 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:34,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:34,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:34,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:28:34,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:28:34,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:34,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58313 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:28:34,904 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:28:34,944 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=135.927 +2025-10-02 02:28:35,034 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.927 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 02:28:35,035 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 02:28:35,036 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 118.41.33.196:9573 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:61431 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:36,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:36,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:36,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:28:36,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:28:36,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:36,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61432 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61439 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:38,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:38,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:38,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:28:38,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:28:38,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:38,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61440 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:39,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:39,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:39,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:28:39,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:28:39,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:39,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61444 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:40,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:40,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:40,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:28:40,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:28:40,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:40,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61445 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64197 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:40,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:40,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:40,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:28:40,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:28:40,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:40,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64198 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63796 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:41,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:41,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:41,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:28:41,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:28:41,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:41,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63797 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58321 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:41,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:41,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:41,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:28:42,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:28:42,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:42,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58322 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61452 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:42,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:42,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:42,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:28:42,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:28:42,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:42,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61453 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55979 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:43,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:43,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:43,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:28:44,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:28:44,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:44,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55980 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:44,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:44,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:44,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:28:44,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:28:44,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:44,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60359 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:45,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:45,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:45,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 02:28:45,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 02:28:45,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:45,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60360 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62828 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:46,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:46,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:46,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:28:46,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:28:46,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:46,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62829 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:47,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:47,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:47,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:28:47,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:28:47,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:47,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64202 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49756 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:55985 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58330 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:28:48,667 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:48,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:48,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 02:28:48,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-02 02:28:48,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:28:48,937 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:64203 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55986 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:49,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:49,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:49,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:28:49,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:28:49,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:49,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58331 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:49,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:49,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:49,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:28:49,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:28:49,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:49,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60368 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61467 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:28:50,347 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:28:50,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:28:50,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 02:28:50,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 02:28:50,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:28:50,628 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:60369 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61468 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58075 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:52,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:52,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:52,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:28:52,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:28:52,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:52,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58076 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61472 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:55990 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:52,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:52,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:52,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:28:52,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:28:52,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:52,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61473 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:52,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:52,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:53,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:28:53,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:28:53,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:53,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55991 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:54,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:54,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:54,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:28:54,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:28:54,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:54,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62843 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58339 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:56,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:56,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:56,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:28:56,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:28:56,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:56,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58340 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58080 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:57,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:57,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:57,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:28:57,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:28:57,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:57,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58081 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64207 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:57,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:57,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:57,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:28:58,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:28:58,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:58,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:58,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:58,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:58,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:28:58,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:28:58,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:58,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64208 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:55995 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:28:59,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:28:59,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:28:59,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:28:59,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:28:59,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:28:59,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:55996 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58086 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:00,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:00,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:00,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:29:01,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:29:01,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:01,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58087 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56000 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:03,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:03,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:03,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:29:03,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:29:03,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:03,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56001 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:06,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:06,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:06,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:29:06,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:29:06,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:06,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61489 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:09,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:09,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:10,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:29:10,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:29:10,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:10,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61493 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:62881 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:15,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:15,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:15,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 02:29:16,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 02:29:16,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:16,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62882 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:16,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:16,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:16,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:29:16,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:29:16,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:16,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61494 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37522 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:64218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61498 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:21,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:21,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:21,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 02:29:21,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 02:29:21,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:21,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:21,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:21,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:21,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:29:21,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:29:21,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:21,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61499 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:25,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:25,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:25,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:29:25,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:29:25,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:25,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61508 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62900 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:25,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:25,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:25,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:29:26,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:29:26,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:26,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62901 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:27,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:27,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:27,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:29:27,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:29:27,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:27,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64224 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:30,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:30,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:30,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-02 02:29:30,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-02 02:29:30,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:30,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62912 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:62918 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:34,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:34,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:34,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:29:34,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:29:34,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:34,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62919 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61520 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:29:34,714 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:29:34,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:29:34,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 02:29:34,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-02 02:29:34,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:29:34,991 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:64229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61521 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12173 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:29:38,469 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:29:38,497 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=105.116 +2025-10-02 02:29:38,596 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.116 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.098s +2025-10-02 02:29:38,597 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 02:29:38,599 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +INFO: 175.119.234.181:12174 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:62927 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:39,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:39,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:39,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 02:29:39,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 02:29:39,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:39,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:62928 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58387 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:40,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:40,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:40,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:29:40,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:29:40,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:40,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58389 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:41,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:41,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:41,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:29:41,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:29:41,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:41,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56305 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:43,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:43,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:43,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:29:43,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:29:43,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:43,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56306 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61536 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:45,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:45,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:45,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:29:45,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:29:45,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:45,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:45,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:45,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:45,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:29:45,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:29:45,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:45,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61537 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:46,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:46,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:46,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:29:46,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:29:46,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:46,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58398 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59540 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:63839 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56312 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:29:48,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:29:48,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=118.356 +2025-10-02 02:29:48,708 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.356 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 02:29:48,709 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:29:48,709 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 211.226.69.49:63840 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:64239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:48,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:48,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:48,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:29:49,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:29:49,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:49,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56313 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:29:49,185 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:29:49,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:29:49,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s +2025-10-02 02:29:49,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image) +2025-10-02 02:29:49,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:29:49,506 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:56025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61541 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:49,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:49,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:49,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:29:50,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:29:50,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:50,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61542 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60601 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58422 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:52,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:52,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:52,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:29:52,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:29:52,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:52,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58423 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:53,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:53,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:53,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:29:53,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:29:53,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:53,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60602 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:54,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:54,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:54,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:29:54,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:29:54,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:54,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56320 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61546 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:54,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:54,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:54,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:29:54,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:29:54,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:54,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61547 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63847 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:55,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:55,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:55,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:29:56,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:29:56,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:56,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:29:56,208 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:29:56,243 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=104.104 +2025-10-02 02:29:56,329 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.104 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 02:29:56,329 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:29:56,330 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 211.226.69.49:63848 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:60613 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:57,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:57,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:57,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:29:57,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:29:57,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:57,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60614 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:58,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:58,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:58,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:29:58,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:29:58,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:58,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61551 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:59,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:59,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:59,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:29:59,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:29:59,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:59,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56325 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:29:59,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:29:59,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:29:59,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +2025-10-02 02:29:59,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.128s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +2025-10-02 02:29:59,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.128s (avg: 0.128s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:29:59,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61552 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64249 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:60624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:02,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:02,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:02,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:30:03,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:30:03,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:03,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64250 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:03,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:03,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:03,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:30:03,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:30:03,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:03,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60625 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61556 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:30:04,417 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:30:04,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:30:04,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-02 02:30:04,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-02 02:30:04,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:30:04,708 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:56332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61557 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56038 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:05,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:05,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:05,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:30:05,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:30:05,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:05,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56039 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:62961 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:62963 - "GET /health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:30:07,990 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:30:08,031 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=128.423 +2025-10-02 02:30:08,112 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.423 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 02:30:08,113 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:30:08,113 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 61.255.207.212:62212 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:56043 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:10,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:10,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:10,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:30:10,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:30:10,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:10,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62217 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:30:11,434 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:30:11,458 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=69.840 +2025-10-02 02:30:11,538 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.840 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 02:30:11,538 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:30:11,538 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 61.255.207.212:62218 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:60666 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:12,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:12,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:12,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:30:12,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:30:12,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:12,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60667 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62222 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:30:14,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:30:14,551 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=59.156 +2025-10-02 02:30:14,632 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.156 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 02:30:14,632 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:30:14,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 61.255.207.212:62223 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:58439 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:15,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:15,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:15,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:30:15,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:30:15,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:15,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58440 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56341 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64257 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:16,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:16,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:16,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:30:16,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:30:16,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:16,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56342 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:16,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:16,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:16,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:30:16,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:30:16,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:16,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64258 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54876 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:56054 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:19,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:19,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:19,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:30:20,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:30:20,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:20,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56055 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56062 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:25,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:25,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:25,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 02:30:25,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 02:30:25,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:25,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56063 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63879 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:25,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:25,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:25,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:30:26,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:30:26,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:26,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63880 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:26,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:26,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:26,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:30:26,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:30:26,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:26,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64265 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60727 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:27,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:27,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:27,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:30:27,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:30:27,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:27,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60728 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58459 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:30,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:30,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:30,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:30:30,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:30:30,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:30,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58460 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:31,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:31,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:31,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:30:31,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:30:31,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:31,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56071 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:31,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:31,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:31,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:30:31,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:30:31,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:31,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56072 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60772 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:32,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:32,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:32,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:30:32,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:30:32,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:32,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60775 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58480 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:34,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:34,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:34,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 02:30:34,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 02:30:34,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:34,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58481 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:35,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:35,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:35,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:30:35,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:30:35,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:35,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56079 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:37,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:37,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:37,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:30:37,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:30:37,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:37,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:38,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:38,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:38,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:30:38,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:30:38,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:38,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56080 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62238 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:39,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:39,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:39,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:30:39,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:30:39,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:39,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:40,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:40,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:40,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:30:40,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:30:40,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:40,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62239 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56088 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:44,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:44,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:44,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:30:44,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:30:44,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:44,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56089 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:44,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:44,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:44,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:30:44,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:30:44,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:44,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56352 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:44,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:44,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:44,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:30:44,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:30:44,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:44,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:30:44,925 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:30:44,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:30:44,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.256s +2025-10-02 02:30:45,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.256s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.256s (avg: 0.128s/image) +2025-10-02 02:30:45,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.256s (avg: 0.128s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:30:45,182 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:58500 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56353 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58504 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:47,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:47,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:47,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:30:47,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:30:47,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:47,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58505 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32790 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:56357 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56096 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:49,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:49,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:49,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:30:50,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:30:50,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:50,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56358 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:50,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:50,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:50,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:30:50,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:30:50,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:50,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56097 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12249 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:50,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:50,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:50,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:30:50,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:30:50,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:50,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12250 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9614 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:52,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:52,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:52,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:30:52,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:30:52,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:52,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58514 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:30:52,354 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:30:52,376 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=122.339 +2025-10-02 02:30:52,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.339 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 02:30:52,471 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:30:52,472 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 118.41.33.196:9615 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:63900 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:53,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:53,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:53,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:30:53,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:30:53,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:53,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63901 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9619 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:30:56,520 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:30:56,547 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=85.234 +2025-10-02 02:30:56,642 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.234 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.095s +2025-10-02 02:30:56,643 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 02:30:56,644 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 118.41.33.196:9620 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:61600 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:56,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:56,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:56,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:30:57,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:30:57,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:57,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61601 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:58,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:58,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:58,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:30:58,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:30:58,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:58,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60946 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:30:59,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:30:59,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:30:59,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:30:59,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:30:59,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:30:59,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60947 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61608 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:03,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:03,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:03,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:31:03,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:31:03,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:03,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61609 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:31:03,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:31:03,890 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=69.758 +2025-10-02 02:31:03,976 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.758 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 02:31:03,976 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:31:03,978 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 118.41.33.196:9625 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:63907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:04,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:04,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:04,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:31:05,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:31:05,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:05,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58530 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:05,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:05,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:05,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:31:06,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:31:06,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:06,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58531 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56116 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:60997 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:06,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:06,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:06,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:31:06,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:31:06,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:06,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56117 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:07,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:07,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:07,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:31:07,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:31:07,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:07,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60998 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61613 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:10,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:10,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:10,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:31:10,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:31:10,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:10,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61614 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:11,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:11,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:12,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:31:12,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:31:12,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:12,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61010 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58542 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61618 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:16,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:16,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:16,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:31:16,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:31:16,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:16,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61011 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:16,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:16,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:16,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:31:16,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:31:16,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:16,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58544 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:16,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:16,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:16,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:31:16,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:31:16,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:16,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61619 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:17,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:17,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:17,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:31:17,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:31:17,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:17,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37244 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:58557 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:19,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:19,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:19,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:31:19,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:31:19,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:19,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58558 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58119 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56370 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61623 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:20,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:20,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:20,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:31:20,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:31:20,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:20,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56371 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:20,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:20,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:20,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:31:21,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:31:21,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:21,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58120 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61019 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:21,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:21,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:21,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:31:21,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:31:21,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:21,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61624 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:22,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:22,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:22,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:31:22,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:31:22,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:22,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61020 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:23,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:23,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:23,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:31:23,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:31:23,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:23,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62298 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12302 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63923 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:31:25,646 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:31:25,682 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=87.409 +2025-10-02 02:31:25,772 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.409 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 02:31:25,772 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:31:25,773 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 61.255.207.212:62299 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:26,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:26,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:26,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:31:26,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:31:26,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:26,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12303 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:26,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:26,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:26,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:31:26,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:31:26,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:26,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63924 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61028 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61628 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:27,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:27,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:27,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:31:27,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:31:27,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:27,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61029 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:27,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:27,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:27,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:31:28,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:31:28,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:28,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61629 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:31:28,513 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:31:28,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:31:28,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 02:31:28,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 02:31:28,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:31:28,813 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:58580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56141 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:31:29,016 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:31:29,037 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=131.169 +2025-10-02 02:31:29,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.169 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 02:31:29,122 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 02:31:29,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:62304 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:58125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:29,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:29,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:29,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:31:29,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:31:29,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:29,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58126 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:30,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:30,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:30,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:31:30,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:31:30,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:30,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61633 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62308 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:31:33,759 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:31:33,793 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=148.825 +2025-10-02 02:31:33,882 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.825 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 02:31:33,883 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:31:33,883 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 61.255.207.212:62309 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:34,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:34,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:34,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:31:34,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:31:34,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:34,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61634 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58587 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:34,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:34,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:34,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:31:34,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:31:34,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:34,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:35,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:35,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:35,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:31:35,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:31:35,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:35,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58131 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:36,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:36,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:36,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:31:36,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:31:36,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:36,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58132 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:36,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:36,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:36,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:31:37,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:31:37,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:37,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61640 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:38,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:38,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:38,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:31:38,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:31:38,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:38,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61641 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63103 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:31:39,277 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 751, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:31:39,307 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 751, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=122.451 +2025-10-02 02:31:39,389 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.451 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 02:31:39,390 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:31:39,391 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 122.35.47.45:63104 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:61044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:40,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:40,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:40,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:31:40,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:31:40,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:40,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58136 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12316 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:41,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:41,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:41,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:31:41,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:31:41,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:41,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58137 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:42,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:42,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:42,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:31:42,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:31:42,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:42,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12317 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61649 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:43,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:43,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:43,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:31:43,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:31:43,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:43,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61650 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61067 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:45,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:45,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:45,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:31:45,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:31:45,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:45,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61068 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45890 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:61666 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9655 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:48,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:48,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:48,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:31:48,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:31:48,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:48,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61674 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:48,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:48,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:48,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:31:49,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:31:49,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:49,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9656 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61077 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:49,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:49,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:49,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:31:49,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:31:49,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:49,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:49,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:49,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:49,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:31:50,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:31:50,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:50,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61078 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63945 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:53,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:53,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:53,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:31:53,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:31:53,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:53,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63946 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61085 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9660 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:54,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:54,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:54,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:31:54,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:31:54,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:54,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61086 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:54,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:54,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:54,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:31:55,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:31:55,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:55,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9661 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58619 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:61119 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:58,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:58,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:58,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:31:58,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:31:58,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:58,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58620 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:31:58,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:31:58,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:31:58,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:31:59,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:31:59,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:31:59,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61120 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9665 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:01,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:01,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:01,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:32:01,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:32:01,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:01,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9666 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58152 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62328 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:32:01,833 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:32:01,861 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=186.988 +2025-10-02 02:32:01,946 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=186.988 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 02:32:01,946 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:32:01,947 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 39.112.59.88:58153 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:02,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:02,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:02,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:32:02,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:32:02,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:02,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62329 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:03,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:03,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:03,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:32:03,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:32:03,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:03,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61175 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:03,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:03,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:03,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:32:03,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:32:03,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:03,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61176 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9670 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:06,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:06,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:06,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:32:06,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:32:06,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:06,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9671 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61184 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:09,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:09,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:09,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:32:09,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:32:09,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:09,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61185 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:10,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:10,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:10,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:32:10,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:32:10,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:10,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62339 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61193 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:13,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:13,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:13,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:32:13,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:32:13,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:13,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61194 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:32:14,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:32:14,499 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=69.662 +2025-10-02 02:32:14,579 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.662 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 02:32:14,579 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:32:14,579 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 221.154.208.144:61686 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:64298 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:16,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:16,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:16,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:32:16,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:32:16,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:16,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64299 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61202 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60728 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:18,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:18,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:18,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:32:18,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:32:18,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:18,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61203 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62352 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:19,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:19,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:20,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:32:20,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:32:20,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:20,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62353 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63973 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:20,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:20,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:20,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:32:20,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:32:20,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:20,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:21,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:21,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:21,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:32:21,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:32:21,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:21,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9682 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:22,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:22,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:22,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:32:22,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:32:22,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:22,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9683 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:22,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:22,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:22,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:32:23,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:32:23,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:23,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61212 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:24,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:24,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:24,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:32:24,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:32:24,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:24,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61213 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63163 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:32:27,313 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:32:27,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:32:27,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 02:32:27,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 02:32:27,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:32:27,598 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:56197 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63164 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62363 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:28,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:28,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:28,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:32:28,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:32:28,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:28,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62364 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61220 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:29,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:29,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:29,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:32:29,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:32:29,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:29,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61221 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:30,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:30,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:30,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:32:31,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:32:31,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:31,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63989 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:31,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:31,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:31,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:32:31,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:32:31,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:31,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63990 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56201 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:32,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:32,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:32,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:32:32,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:32:32,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:32,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56202 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61227 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58180 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62371 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:33,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:33,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:33,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:32:33,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:32:33,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:33,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:34,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:34,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:34,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:32:34,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:32:34,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:34,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58684 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:32:34,543 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:32:34,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:32:34,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s +2025-10-02 02:32:34,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.323s (avg: 0.162s/image) +2025-10-02 02:32:34,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.323s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:32:34,867 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:62372 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58181 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56206 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:37,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:37,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:37,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:32:38,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:32:38,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:38,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56207 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61236 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58688 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:38,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:38,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:38,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:32:38,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:32:38,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:38,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61237 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:38,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:38,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:38,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:32:39,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:32:39,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:39,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58689 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62381 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:39,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:39,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:39,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:32:39,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:32:39,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:39,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62382 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63996 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:40,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:40,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:40,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:32:40,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:32:40,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:40,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63997 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:42,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:42,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:42,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:32:42,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:32:42,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:42,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56212 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58696 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:43,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:43,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:43,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:32:43,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:32:43,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:43,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58697 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:32:46,585 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:32:46,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:32:46,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 02:32:46,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-02 02:32:46,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:32:46,863 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:58191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58713 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46286 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:47,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:47,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:47,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:32:48,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:32:48,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:48,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58714 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62397 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:48,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:48,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:48,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:32:48,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:32:48,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:48,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62398 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58195 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:51,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:51,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:51,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:32:51,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:32:51,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:51,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:51,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:51,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:51,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:32:52,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:32:52,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:52,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58196 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:52,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:52,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:52,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:32:52,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:32:52,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:52,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62402 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:53,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:53,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:53,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:32:53,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:32:53,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:53,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62403 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:56,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:56,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:56,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:32:56,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:32:56,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:56,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58201 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:57,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:57,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:57,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:32:57,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:32:57,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:57,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56227 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:32:57,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:32:57,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:32:57,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:32:57,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:32:57,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:32:57,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58202 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58765 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12351 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:00,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:00,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:00,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:33:00,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:33:00,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:00,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58766 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:33:00,339 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:33:00,362 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=29.623 +2025-10-02 02:33:00,445 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.623 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 02:33:00,446 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:33:00,449 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 175.119.234.181:12352 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:61572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:00,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:00,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:00,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:33:00,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:33:00,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:00,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61574 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64016 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:02,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:02,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:02,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:33:02,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:33:02,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:02,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64017 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58770 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:04,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:04,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:04,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:33:04,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:33:04,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:04,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58771 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61657 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:05,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:05,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:05,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:33:05,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:33:05,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:05,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61658 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:61697 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:07,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:07,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:07,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:33:07,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:33:07,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:07,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61698 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:33:08,222 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:33:08,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:33:08,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-02 02:33:08,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-02 02:33:08,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:33:08,527 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:58776 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:08,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:08,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:08,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:33:08,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:33:08,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:08,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62424 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:09,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:09,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:09,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:33:09,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:33:09,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:09,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:10,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:10,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:10,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:33:10,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:33:10,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:10,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61726 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58780 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:13,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:13,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:13,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:33:13,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:33:13,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:13,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58781 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61734 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:14,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:14,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:14,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:33:14,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:33:14,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:14,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61735 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:14,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:14,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:14,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:33:15,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:33:15,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:15,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:15,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:15,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:15,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:33:16,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:33:16,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:16,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58789 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:61818 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:33:17,406 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:33:17,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:33:17,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 02:33:17,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 02:33:17,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:33:17,705 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:61740 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58790 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47038 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:17,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:17,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:18,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:33:18,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:33:18,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:18,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:61821 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56249 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:18,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:18,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:18,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:33:18,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:33:18,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:18,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56250 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56254 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:33:20,640 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:33:20,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:33:20,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-02 02:33:20,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-02 02:33:20,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:33:20,921 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:62434 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56255 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61744 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58794 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:21,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:21,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:21,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:33:21,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:33:21,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:21,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61745 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:21,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:21,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:21,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:33:21,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:33:21,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:21,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58795 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:22,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:22,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:22,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:33:23,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:33:23,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:23,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:25,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:25,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:25,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:33:25,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:33:25,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:25,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56265 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61749 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:25,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:25,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:25,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:33:25,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:33:25,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:25,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61750 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58799 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:25,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:25,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:25,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:33:26,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:33:26,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:26,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58800 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62446 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:26,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:26,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:26,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:33:27,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:33:27,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:27,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62447 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:28,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:28,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:28,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +2025-10-02 02:33:28,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +2025-10-02 02:33:28,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:28,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58227 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61754 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:62025 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:29,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:29,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:29,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:33:29,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:33:29,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:29,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61755 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:33:30,247 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:33:30,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:33:30,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 02:33:30,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 02:33:30,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:33:30,531 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:62026 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58807 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58823 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:34,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:34,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:34,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:33:34,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:33:34,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:34,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58234 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:34,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:34,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:34,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:33:34,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:33:34,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:34,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58824 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12378 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:35,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:35,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:35,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:33:35,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:33:35,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:35,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58235 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:35,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:35,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:35,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:33:35,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:33:35,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:35,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12379 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:38,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:38,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:38,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:33:38,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:33:38,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:38,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:42,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:42,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:42,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:33:42,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:33:42,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:42,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61781 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:44,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:44,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:44,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:33:45,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:33:45,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:45,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58246 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41014 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:9699 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:47,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:47,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:47,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:33:48,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:33:48,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:48,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58247 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:33:48,246 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:33:48,261 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=110.541 +2025-10-02 02:33:48,338 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.541 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:33:48,339 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:33:48,339 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 118.41.33.196:9700 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:62101 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:48,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:48,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:48,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:33:49,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:33:49,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:49,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62102 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61786 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:49,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:49,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:49,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:33:49,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:33:49,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:49,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61787 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9704 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:33:52,211 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:33:52,232 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=77.470 +2025-10-02 02:33:52,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.470 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 02:33:52,319 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:33:52,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 118.41.33.196:9705 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:33:52,412 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(743, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:33:52,425 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(743, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=43.349 +2025-10-02 02:33:52,497 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.349 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.072s +2025-10-02 02:33:52,498 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 02:33:52,498 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +INFO: 220.77.167.192:64316 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:61791 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:53,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:53,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:53,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:33:54,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:33:54,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:54,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61792 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12416 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:54,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:54,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:54,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:33:54,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:33:54,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:54,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12418 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:33:56,188 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:33:56,214 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=115.849 +2025-10-02 02:33:56,297 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.849 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 02:33:56,297 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:33:56,298 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 118.41.33.196:9710 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:61796 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:33:57,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:33:57,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:33:57,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:33:57,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:33:57,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:33:57,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61797 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:05,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:05,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:05,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:34:05,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:34:05,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:05,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62124 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12434 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:07,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:07,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:07,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:34:07,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:34:07,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:07,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12435 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62466 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:08,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:08,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:08,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:34:08,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:34:08,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:08,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62467 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58856 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:10,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:10,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:10,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:34:10,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:34:10,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:10,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58857 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12440 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:11,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:11,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:11,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:34:11,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:34:11,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:11,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12441 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62472 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:12,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:12,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:12,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:34:12,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:34:12,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:12,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62473 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63494 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:34:15,396 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(986, 986, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:34:15,434 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(986, 986, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=156.641 +2025-10-02 02:34:15,535 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=156.641 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.100s +2025-10-02 02:34:15,535 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-02 02:34:15,537 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +INFO: 122.35.47.45:63495 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:62479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:16,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:16,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:16,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:34:16,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:34:16,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:16,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64065 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:17,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:17,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:17,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 02:34:17,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 02:34:17,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:17,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64066 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9717 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58666 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:18,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:18,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:18,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:34:18,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:34:18,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:18,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9718 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12446 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:20,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:20,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:20,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:34:20,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:34:20,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:20,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12447 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56326 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:33,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:33,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:33,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:34:33,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:34:33,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:33,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:38,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:38,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:38,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:34:38,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:34:38,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:38,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9732 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63527 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:39,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:39,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:39,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:34:39,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:34:39,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:39,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63528 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56334 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:40,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:40,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:40,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:34:41,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:34:41,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:41,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56335 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58904 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:42,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:42,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:42,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:34:42,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:34:42,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:42,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58905 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9736 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:43,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:43,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:43,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:34:43,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:34:43,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:43,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9737 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61846 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:34:44,070 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:34:44,095 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=50.717 +2025-10-02 02:34:44,188 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.717 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 02:34:44,188 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 02:34:44,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 221.154.208.144:61847 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:64335 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:46,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:46,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:46,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:34:46,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:34:46,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:46,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64336 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36662 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:58914 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:48,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:48,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:48,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:34:48,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:34:48,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:48,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58915 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:49,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:49,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:49,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:34:49,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:34:49,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:49,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58292 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9741 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:49,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:49,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:49,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:34:49,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:34:49,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:49,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9742 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64340 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:52,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:52,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:52,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:34:52,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:34:52,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:52,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58924 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:54,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:54,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:54,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:34:54,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:34:54,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:54,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58925 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58304 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:55,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:55,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:55,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:34:55,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:34:55,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:55,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56346 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:55,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:55,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:55,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:34:55,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:34:55,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:55,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58305 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:56,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:56,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:56,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:34:56,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:34:56,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:56,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62311 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62501 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:34:57,350 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:34:57,373 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=78.984 +2025-10-02 02:34:57,466 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.984 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 02:34:57,466 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 02:34:57,467 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 61.255.207.212:62502 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:12462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:57,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:57,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:57,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:34:58,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:34:58,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:34:58,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9749 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58933 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:34:59,499 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:34:59,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:34:59,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-02 02:34:59,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-02 02:34:59,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:34:59,766 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:9750 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58934 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:34:59,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:34:59,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:34:59,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +2025-10-02 02:35:00,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image) +2025-10-02 02:35:00,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:00,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64346 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62506 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:35:00,584 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:35:00,610 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=71.670 +2025-10-02 02:35:00,699 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.670 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 02:35:00,699 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 02:35:00,701 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:62507 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:63561 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:01,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:01,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:01,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:35:01,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:35:01,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:01,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63562 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:02,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:02,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:02,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:35:02,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:35:02,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:02,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58311 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:63568 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:03,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:03,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:03,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:35:03,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:35:03,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:03,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:03,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:03,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:03,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:35:03,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:35:03,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:03,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63570 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:35:03,902 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:35:03,926 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=92.457 +2025-10-02 02:35:04,013 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.457 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 02:35:04,013 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:35:04,015 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 61.255.207.212:62514 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:12468 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:04,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:04,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:04,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:35:04,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:35:04,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:04,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12469 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56356 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:63576 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64351 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:62332 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58316 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:58967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:10,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:10,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:10,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:35:11,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:35:11,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:11,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64352 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:35:12,181 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:35:12,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:35:12,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-02 02:35:12,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-02 02:35:12,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:35:12,493 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:56357 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58968 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:35:15,300 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:35:15,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:35:15,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 02:35:15,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-02 02:35:15,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:35:15,607 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:63577 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58972 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:15,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:15,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:15,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:35:15,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:35:15,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:15,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62333 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:16,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:16,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:16,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:35:16,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:35:16,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:16,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58973 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:35:17,109 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:35:17,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:35:17,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 02:35:17,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 02:35:17,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:35:17,388 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:12474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58317 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:17,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:17,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:17,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:35:17,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:35:17,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:17,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49308 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:63590 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:20,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:20,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:20,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:35:20,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:35:20,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:20,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63591 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58979 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:21,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:21,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:21,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:35:21,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:35:21,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:21,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58980 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58323 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64114 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:23,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:23,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:23,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:35:23,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:35:23,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:23,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64115 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:23,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:23,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:23,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:35:23,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:35:23,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:23,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58324 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56373 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:35:24,306 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:35:24,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:35:24,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 02:35:24,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-02 02:35:24,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:35:24,577 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:56374 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58984 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:25,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:25,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:25,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:35:25,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:35:25,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:25,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58985 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:25,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:25,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:25,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:35:25,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:35:25,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:25,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:26,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:26,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:26,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:35:26,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:35:26,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:26,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62384 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61877 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:26,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:26,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:26,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:35:27,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:35:27,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:27,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61878 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63609 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:27,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:27,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:27,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:35:27,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:35:27,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:27,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63610 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56378 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:28,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:28,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:28,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:35:28,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:35:28,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:28,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56379 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62531 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:29,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:29,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:29,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:35:29,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:35:29,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:29,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62532 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62459 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:30,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:30,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:30,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:35:30,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:35:30,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:30,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:58993 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:31,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:31,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:31,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:35:31,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:35:31,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:31,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:58994 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:31,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:31,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:31,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:35:31,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:35:31,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:31,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58330 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9771 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:32,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:32,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:32,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:35:32,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:35:32,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:32,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56384 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:35:32,547 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:35:32,570 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=87.088 +2025-10-02 02:35:32,649 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.088 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 02:35:32,649 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:35:32,649 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 39.112.59.88:58331 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:63619 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:35:32,831 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:35:32,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:35:32,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 02:35:33,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 02:35:33,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:35:33,118 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:9772 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63620 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62536 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:33,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:33,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:33,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:35:33,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:35:33,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:33,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62537 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59000 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:34,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:34,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:34,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:35:34,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:35:34,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:34,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59001 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:35,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:35,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:35,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:35:35,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:35:35,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:35,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64124 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56391 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:36,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:36,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:36,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:35:36,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:35:36,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:36,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:36,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:36,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:36,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:35:36,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:35:36,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:36,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56392 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62543 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:38,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:38,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:38,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:35:38,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:35:38,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:38,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59006 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:39,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:39,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:39,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:35:40,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:35:40,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:40,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62544 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:40,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:40,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:40,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:35:40,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:35:40,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:40,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:40,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:40,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:40,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:35:41,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:35:41,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:41,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61912 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64385 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:42,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:42,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:42,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:35:42,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:35:42,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:42,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61913 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:42,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:42,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:42,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:35:42,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:35:42,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:42,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64386 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:42,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:42,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:42,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:35:42,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:35:42,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:42,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62548 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:45,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:45,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:45,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:35:45,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:35:45,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:45,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62549 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9780 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:45,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:45,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:45,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:35:45,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:35:45,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:45,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9781 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59019 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:46,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:46,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:46,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:35:46,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:35:46,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:46,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59020 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61917 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:46,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:46,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:46,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:35:47,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:35:47,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:47,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61918 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57526 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:62555 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:48,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:48,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:48,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:35:48,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:35:48,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:48,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62556 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64134 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64393 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:49,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:49,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:49,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:35:49,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:35:49,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:49,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64135 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:49,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:49,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:49,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:35:49,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:35:49,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:49,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64394 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61923 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:51,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:51,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:51,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:35:51,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:35:51,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:51,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61924 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56415 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62560 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:51,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:51,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:51,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:35:52,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:35:52,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:52,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56416 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:35:52,168 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:35:52,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:35:52,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 02:35:52,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 02:35:52,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:35:52,458 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:62561 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58352 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:52,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:52,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:53,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:35:53,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:35:53,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:53,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58353 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64398 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:54,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:54,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:54,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:35:54,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:35:54,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:54,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64399 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:55,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:55,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:55,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:35:55,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:35:55,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:55,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62567 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:56,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:56,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:56,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:35:56,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:35:56,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:56,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62568 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61934 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:35:59,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:35:59,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:35:59,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:35:59,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:35:59,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:35:59,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61935 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64149 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:63668 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:02,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:02,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:02,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:36:02,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:36:02,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:02,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64150 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:02,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:02,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:02,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:36:02,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:36:02,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:02,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63669 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:02,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:02,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:02,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:36:02,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:36:02,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:02,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56426 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:61939 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:03,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:03,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:03,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:36:04,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:36:04,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:04,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56427 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:04,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:04,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:04,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:36:04,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:36:04,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:04,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61940 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:63686 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:08,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:08,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:08,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:36:08,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:36:08,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:08,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:08,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:08,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:08,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:36:08,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:36:08,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:08,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63687 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61944 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56431 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:09,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:09,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:09,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:36:09,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:36:09,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:09,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61945 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:10,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:10,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:10,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:36:10,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:36:10,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:10,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56432 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:10,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:10,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:10,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:36:10,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:36:10,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:10,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62584 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:13,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:13,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:13,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:36:13,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:36:13,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:13,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62585 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61949 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:63693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:14,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:14,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:14,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:36:14,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:36:14,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:14,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61950 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:14,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:14,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:14,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:36:14,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:36:14,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:14,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62564 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:15,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:15,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:15,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:36:16,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:36:16,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:16,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64162 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34126 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:62591 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:18,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:18,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:18,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:36:18,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:36:18,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:18,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64163 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:18,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:18,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:18,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:36:18,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:36:18,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:18,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62592 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58375 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:24,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:24,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:24,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 02:36:24,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 02:36:24,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:24,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62597 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:26,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:26,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:26,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:36:26,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:36:26,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:26,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62598 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63711 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:36:28,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:36:28,380 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=56.091 +2025-10-02 02:36:28,460 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.091 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 02:36:28,461 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:36:28,461 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 122.35.47.45:63712 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:62626 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64177 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:33,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:33,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:33,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:36:33,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:36:33,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:33,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62627 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:36:33,551 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:36:33,572 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=55.572 +2025-10-02 02:36:33,649 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.572 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:36:33,649 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:36:33,651 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 175.119.234.181:12514 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:63718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:36:34,632 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:36:34,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:36:34,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 02:36:34,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 02:36:34,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:36:34,920 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:63719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64178 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58388 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:37,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:37,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:37,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:36:37,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:36:37,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:37,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58389 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63728 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:39,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:39,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:39,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:36:39,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:36:39,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:39,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63729 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59118 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:42,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:42,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:42,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:36:42,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:36:42,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:42,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59119 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:62641 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:43,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:43,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:43,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:36:43,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:36:43,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:43,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12538 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:43,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:43,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:43,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:36:43,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:36:43,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:43,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62642 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:47,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:47,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:47,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:36:47,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:36:47,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:47,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59126 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52884 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:12542 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:63747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:51,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:51,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:51,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:36:51,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:36:51,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:51,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12543 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:52,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:52,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:52,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:36:52,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:36:52,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:52,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59130 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:53,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:53,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:53,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:36:53,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:36:53,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:53,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59131 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56456 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:53,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:53,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:53,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:36:53,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:36:53,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:53,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56457 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62668 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:54,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:54,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:54,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:36:54,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:36:54,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:54,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62669 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12550 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:58,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:58,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:58,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:36:58,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:36:58,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:58,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12551 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:36:59,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:36:59,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:36:59,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:36:59,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:36:59,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:36:59,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59140 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58428 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:62688 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:02,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:02,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:02,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:37:02,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:37:02,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:02,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58429 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:02,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:02,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:02,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:37:02,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:37:02,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:02,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62689 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:62695 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:04,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:04,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:04,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:37:04,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:37:04,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:04,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62696 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:61991 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:05,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:05,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:05,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:37:05,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:37:05,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:05,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:61992 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12555 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:05,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:05,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:05,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:37:05,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:37:05,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:05,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59147 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:05,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:05,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:05,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:37:05,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:37:05,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:05,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12556 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:07,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:07,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:08,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:37:08,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:37:08,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:08,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58434 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:11,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:11,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:11,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:37:11,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:37:11,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:11,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9814 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:12,227 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:12,264 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=101.028 +2025-10-02 02:37:12,359 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.028 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 02:37:12,359 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 02:37:12,361 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 118.41.33.196:9815 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:58438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:63765 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:13,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:13,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:13,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:37:13,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:37:13,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:13,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:13,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:13,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:13,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:37:13,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:37:13,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:13,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63766 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:16,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:16,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:16,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:37:16,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:37:16,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:16,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9819 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:16,915 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:16,946 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=74.103 +2025-10-02 02:37:17,038 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.103 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 02:37:17,038 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 02:37:17,038 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 118.41.33.196:9820 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:58594 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:58443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:62779 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:18,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:18,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:18,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:37:18,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:37:18,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:18,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:62780 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:18,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:18,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:18,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:37:18,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:37:18,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:18,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58444 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63780 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:19,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:19,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:19,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:37:19,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:37:19,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:19,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63781 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:20,969 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:20,995 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=18.937 +2025-10-02 02:37:21,081 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.937 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 02:37:21,082 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:37:21,083 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 118.41.33.196:9826 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:62012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:21,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:21,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:21,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:37:21,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:37:21,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:21,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:22,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:22,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:22,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:37:22,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:37:22,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:22,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59206 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:24,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:24,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:24,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:37:24,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:37:24,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:24,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63798 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:26,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:26,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:26,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 02:37:26,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 02:37:26,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:26,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63799 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64412 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:27,203 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:27,225 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=59.244 +2025-10-02 02:37:27,309 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.244 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 02:37:27,309 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:37:27,309 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 220.77.167.192:64413 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:59213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:28,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:28,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:28,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:37:29,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:37:29,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:29,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:29,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:29,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:29,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:37:29,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:37:29,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:29,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56486 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:30,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:30,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:31,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:37:31,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:37:31,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:31,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56487 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:31,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:31,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:31,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 02:37:31,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 02:37:31,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:31,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63807 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59220 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:34,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:34,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:34,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:37:35,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:37:35,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:35,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59221 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12577 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:35,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:35,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:35,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:37:35,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:37:35,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:35,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12578 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63813 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64417 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:37,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:37,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:37,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 02:37:37,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 02:37:37,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:37,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63814 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56491 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:37,435 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:37,461 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=91.155 +2025-10-02 02:37:37,550 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.155 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 02:37:37,550 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:37:37,551 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 211.226.69.49:64212 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:37,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:37,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:37,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:37:37,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:37:37,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:37,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56492 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:38,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:38,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:38,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:37:38,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:37:38,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:38,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64418 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9833 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:39,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:39,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:39,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:37:39,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:37:39,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:39,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63820 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:37:41,236 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:37:41,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:37:41,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.333s +2025-10-02 02:37:41,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.333s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.333s (avg: 0.167s/image) +2025-10-02 02:37:41,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.333s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:37:41,571 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:63821 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56496 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:41,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:41,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:41,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:37:41,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:37:41,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:41,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9838 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64224 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:43,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:43,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:43,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:37:43,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:37:43,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:43,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9839 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:43,528 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:43,554 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=85.241 +2025-10-02 02:37:43,648 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.241 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 02:37:43,648 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:37:43,650 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 211.226.69.49:64225 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 122.35.47.45:63827 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:44,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:44,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:44,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:37:44,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:37:44,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:44,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63828 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9843 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:46,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:46,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:46,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:37:46,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:37:46,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:46,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9844 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41344 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 122.35.47.45:63835 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:49,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:49,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:49,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:37:49,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:37:49,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:49,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63836 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:49,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:49,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:50,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:37:50,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:37:50,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:50,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9849 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:50,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:50,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:50,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:37:50,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:37:50,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:50,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12589 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63843 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:9853 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:53,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:53,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:53,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:37:53,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:37:53,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:53,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9854 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:53,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:53,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:53,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:37:53,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:37:53,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:53,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63844 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12593 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:55,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:55,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:55,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:37:56,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:37:56,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:56,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12594 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63851 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62049 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:37:58,451 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:37:58,468 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=95.524 +2025-10-02 02:37:58,556 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.524 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 02:37:58,557 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:37:58,557 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 221.154.208.144:62050 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:37:58,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:37:58,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:37:58,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 02:37:58,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 02:37:58,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:37:58,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63852 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12598 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:01,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:01,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:01,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:38:01,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:38:01,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:01,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12599 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:01,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:01,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:01,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:38:02,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:38:02,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:02,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62054 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:03,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:03,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:03,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:38:03,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:38:03,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:03,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62055 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12604 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:05,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:05,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:05,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:38:05,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:38:05,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:05,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12605 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9877 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:05,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:05,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:05,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:38:06,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:38:06,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:06,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9878 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62059 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:09,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:09,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:09,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:38:09,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:38:09,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:09,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62060 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12610 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:09,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:09,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:09,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:38:09,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:38:09,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:09,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12611 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64252 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:12,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:12,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:12,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:38:12,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:38:12,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:12,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64253 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12615 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:14,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:14,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:14,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:38:14,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:38:14,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:14,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12616 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50896 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:56510 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:18,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:18,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:19,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:38:19,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:38:19,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:19,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56511 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58476 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56515 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:25,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:25,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:25,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:38:25,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:38:25,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:25,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56516 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:26,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:26,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:26,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:38:26,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:38:26,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:26,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58477 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64265 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64434 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:38:27,076 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:38:27,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:38:27,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 02:38:27,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 02:38:27,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:38:27,366 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:64266 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64435 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59280 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:29,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:29,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:29,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:38:29,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:38:29,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:29,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59281 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56521 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:63879 - "GET /health HTTP/1.1" 200 OK +INFO: 122.35.47.45:63880 - "GET /health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:29,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:29,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:29,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:38:30,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:38:30,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:30,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56522 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:30,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:30,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:30,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:38:30,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:38:30,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:30,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58482 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58486 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:35,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:35,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:35,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:38:35,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:38:35,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:35,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58487 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64440 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:35,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:35,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:35,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:38:35,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:38:35,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:35,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64441 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:38,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:38,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:38,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:38:38,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:38:38,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:38,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:39,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:39,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:39,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:38:39,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:38:39,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:39,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:40,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:40,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:40,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:38:40,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:38:40,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:40,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56534 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:41,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:41,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:42,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:38:42,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:38:42,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:42,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56535 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:44,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:44,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:44,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:38:44,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:38:44,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:44,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63919 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:46,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:46,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:46,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:38:46,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:38:46,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:46,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63920 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64448 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:47,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:47,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:47,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:38:48,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:38:48,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:48,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64449 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46488 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:56542 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59322 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:49,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:49,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:49,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:38:49,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:38:49,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:49,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56543 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:49,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:49,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:49,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:38:49,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:38:49,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:49,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59324 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63927 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:51,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:51,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:51,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:38:51,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:38:51,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:51,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63929 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56547 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:52,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:52,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:52,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:38:52,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:38:52,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:52,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56548 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:38:53,138 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:38:53,164 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=91.828 +2025-10-02 02:38:53,248 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.828 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 02:38:53,249 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:38:53,249 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 39.112.59.88:58503 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:59331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:54,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:54,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:54,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:38:54,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:38:54,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:54,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56552 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:54,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:54,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:54,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:38:55,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:38:55,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:55,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56553 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59340 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:38:58,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:38:58,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:38:58,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:38:58,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:38:58,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:38:58,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56557 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:00,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:00,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:00,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:39:01,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:39:01,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:01,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56558 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59347 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:02,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:02,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:02,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:39:02,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:39:02,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:02,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59348 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64460 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:04,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:04,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:04,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:39:04,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:39:04,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:04,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64461 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:63943 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:39:04,451 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:39:04,477 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=26.215 +2025-10-02 02:39:04,560 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.215 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 02:39:04,560 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:39:04,560 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 122.35.47.45:63944 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:56562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:05,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:05,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:05,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:39:05,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:39:05,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:05,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56563 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64294 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:07,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:07,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:07,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:39:07,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:39:07,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:07,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64295 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64465 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56568 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:39:08,872 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:39:08,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:39:08,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-02 02:39:09,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-02 02:39:09,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:39:09,137 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:64466 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56569 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:11,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:11,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:11,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:39:11,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:39:11,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:11,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:14,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:14,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:14,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:39:14,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:39:14,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:14,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:16,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:16,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:16,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:39:16,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:39:16,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:16,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56575 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36260 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:59366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:18,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:18,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:18,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:39:18,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:39:18,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:18,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9890 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:39:20,138 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:39:20,172 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=75.746 +2025-10-02 02:39:20,261 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.746 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 02:39:20,261 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:39:20,262 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 118.41.33.196:9891 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:64302 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:21,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:21,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:21,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:39:21,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:39:21,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:21,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64303 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59373 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:21,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:21,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:21,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:39:21,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:39:21,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:21,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59374 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64470 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:22,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:22,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:23,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:39:23,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:39:23,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:23,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64471 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9895 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59378 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:24,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:24,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:24,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:39:24,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:39:24,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:24,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59379 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56582 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:39:24,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:39:24,728 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=74.538 +2025-10-02 02:39:24,815 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.538 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 02:39:24,815 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:39:24,815 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 118.41.33.196:9896 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:24,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:24,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:24,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:39:25,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:39:25,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:25,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56583 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:28,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:28,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:28,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:39:28,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:39:28,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:28,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59384 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9900 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:39:29,253 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:39:29,279 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=28.110 +2025-10-02 02:39:29,368 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.110 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 02:39:29,368 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:39:29,369 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 118.41.33.196:9901 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:59388 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56587 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:30,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:30,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:30,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:39:30,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:39:30,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:30,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59389 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:31,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:31,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:31,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:39:31,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:39:31,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:31,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59417 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:32,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:32,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:32,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:39:32,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:39:32,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:32,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59418 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:33,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:33,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:33,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:39:33,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:39:33,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:33,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64311 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56592 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:34,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:34,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:34,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:39:35,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:39:35,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:35,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56593 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62631 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:35,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:35,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:35,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:39:35,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:39:35,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:35,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62632 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:36,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:36,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:36,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:39:36,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:39:36,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:36,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58526 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:37,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:37,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:37,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:39:37,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:39:37,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:37,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:38,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:38,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:38,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:39:38,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:39:38,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:38,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58527 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56597 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:39,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:39,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:39,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:39:39,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:39:39,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:39,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56598 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62637 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:41,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:41,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:41,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:39:41,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:39:41,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:41,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62638 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62154 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:63994 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:39:41,780 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:39:41,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:39:41,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 02:39:42,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 02:39:42,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:39:42,074 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:62155 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59446 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:42,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:42,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:42,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:39:42,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:39:42,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:42,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:63995 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58531 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:44,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:44,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:44,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:39:44,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:39:44,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:44,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58532 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56602 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:45,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:45,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:45,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:39:45,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:39:45,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:45,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56603 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64484 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:45,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:45,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:45,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:39:45,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:39:45,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:45,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64485 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59454 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:64001 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62644 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:39:46,394 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:39:46,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:39:46,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 02:39:46,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-02 02:39:46,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:39:46,660 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:59455 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64002 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:46,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:46,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:46,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:39:46,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:39:46,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:46,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62645 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45146 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:62164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:48,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:48,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:48,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:39:48,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:39:48,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:48,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62165 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64321 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:50,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:50,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:50,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:39:50,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:39:50,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:50,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64322 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62649 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64489 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:51,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:51,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:51,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:39:51,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:39:51,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:51,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62650 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:39:51,818 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:39:51,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:39:51,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 02:39:52,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-02 02:39:52,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:39:52,119 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:9917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64490 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62169 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:55,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:55,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:55,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:39:55,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:39:55,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:55,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62170 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62656 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:57,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:57,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:57,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:39:57,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:39:57,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:57,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62657 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9921 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:57,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:57,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:57,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:39:57,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:39:57,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:39:57,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9922 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62174 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:39:59,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:39:59,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:39:59,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:40:00,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:40:00,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:00,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62175 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:04,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:04,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:04,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:40:04,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:40:04,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:04,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62184 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:08,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:08,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:08,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:40:08,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:40:08,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:08,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62185 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62189 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:11,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:11,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:11,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:40:11,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:40:11,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:11,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62190 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64341 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58551 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:14,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:14,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:14,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:40:14,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:40:14,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:14,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64342 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:15,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:15,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:15,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:40:15,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:40:15,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:15,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58552 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62195 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64503 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:17,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:17,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:17,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:40:17,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:40:17,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:17,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62196 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:17,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:17,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:17,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:40:17,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:40:17,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:17,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64504 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51314 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:62204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:21,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:21,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:21,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:40:21,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:40:21,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:21,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62205 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64509 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64353 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:29,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:29,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:29,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:40:29,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:40:29,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:29,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64510 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:30,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:30,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:30,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:40:30,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:40:30,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:30,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64354 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:40:32,719 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:40:32,741 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=108.346 +2025-10-02 02:40:32,833 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.346 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 02:40:32,833 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 02:40:32,835 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 61.255.207.212:62673 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:64514 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:35,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:35,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:35,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:40:36,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:40:36,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:36,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64515 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62678 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:40:36,313 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:40:36,335 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=143.562 +2025-10-02 02:40:36,428 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.562 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 02:40:36,428 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 02:40:36,430 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 61.255.207.212:62679 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:64362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:39,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:39,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:39,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:40:39,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:40:39,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:39,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:40:39,994 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:40:40,018 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=142.278 +2025-10-02 02:40:40,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.278 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 02:40:40,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 02:40:40,110 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 61.255.207.212:62686 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:64519 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:42,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:42,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:42,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:40:42,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:40:42,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:42,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64520 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62215 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:40:45,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:40:45,575 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=48.477 +2025-10-02 02:40:45,664 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.477 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 02:40:45,664 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:40:45,664 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 221.154.208.144:62216 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:12709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:46,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:46,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:46,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:40:46,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:40:46,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:46,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12710 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51080 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:64524 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:63936 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:48,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:48,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:48,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:40:48,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:40:48,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:48,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:49,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:49,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:49,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:40:49,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:40:49,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:49,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63937 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62222 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64373 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:50,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:50,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:50,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:40:50,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:40:50,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:50,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62223 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:51,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:51,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:51,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:40:51,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:40:51,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:51,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64374 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:54,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:54,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:54,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:40:54,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:40:54,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:54,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:54,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:54,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:54,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:40:54,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:40:54,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:54,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:40:55,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:40:55,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:40:55,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:40:55,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:40:55,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:40:55,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62229 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:63950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:40:57,143 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:40:57,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:40:57,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 02:40:57,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 02:40:57,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:40:57,421 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:62230 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:63951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64534 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:00,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:00,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:01,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:41:01,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:41:01,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:01,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64535 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12723 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:63958 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62236 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:04,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:04,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:05,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:41:05,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:41:05,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:05,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62237 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:06,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:06,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:07,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:41:07,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:41:07,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:07,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12724 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:07,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:07,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:07,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:41:07,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:41:07,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:07,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:63959 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:08,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:08,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:08,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:41:08,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:41:08,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:08,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64385 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62705 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:09,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:09,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:09,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:41:10,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:41:10,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:10,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62706 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62711 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:13,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:13,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:13,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:41:13,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:41:13,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:13,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12728 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:14,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:14,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:14,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:41:14,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:41:14,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:14,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12729 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64543 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:14,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:14,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:14,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:41:14,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:41:14,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:14,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64544 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64165 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:17,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:17,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:17,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:41:17,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:41:17,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:17,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64166 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56868 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:12733 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:19,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:19,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:19,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:41:20,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:41:20,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:20,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12734 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64548 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62724 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:64176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:23,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:23,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:23,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:41:24,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:41:24,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:24,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62725 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:41:25,410 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:25,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:25,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 02:41:25,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 02:41:25,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:41:25,703 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:64177 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64549 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64004 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:26,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:26,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:26,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:41:27,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:41:27,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:27,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64010 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12738 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:41:28,033 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:28,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:28,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 02:41:28,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 02:41:28,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:41:28,327 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:12739 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62732 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62736 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:64185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:31,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:31,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:31,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:41:31,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:41:31,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:31,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62737 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:32,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:32,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:32,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:41:32,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:41:32,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:32,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64404 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:33,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:33,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:33,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:41:33,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:41:33,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:33,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64405 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64556 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:41:33,920 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:33,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:33,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 02:41:34,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 02:41:34,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:41:34,209 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:64557 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64192 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:37,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:37,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:37,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:41:37,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:41:37,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:37,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64193 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64122 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:38,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:38,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:38,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:41:38,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:41:38,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:38,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64123 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12752 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:39,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:39,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:39,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:41:39,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:41:39,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:39,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12753 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62250 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64561 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:64201 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59599 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:41:42,763 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:42,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:42,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 02:41:43,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 02:41:43,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:41:43,060 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:62251 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64562 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:43,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:43,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:43,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:41:43,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:41:43,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:43,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64203 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:43,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:43,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:43,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +2025-10-02 02:41:43,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image) +2025-10-02 02:41:43,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:43,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59600 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12757 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:45,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:45,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:45,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:41:45,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:41:45,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:45,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12758 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62752 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:45,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:45,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:45,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:41:45,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:41:45,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:45,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62753 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64136 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:46,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:46,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:46,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:41:46,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:41:46,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:46,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64137 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:64209 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:47,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:47,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:47,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:41:47,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:41:47,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:47,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64210 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59606 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:41:47,932 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:47,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:47,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 02:41:48,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-02 02:41:48,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:41:48,199 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:59607 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64415 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45670 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:62261 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:48,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:48,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:48,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:41:48,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:41:48,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:48,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62262 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12762 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:64144 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:50,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:50,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:50,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:41:50,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:41:50,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:50,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12763 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64219 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:51,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:51,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:51,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:41:51,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:41:51,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:51,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64145 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:51,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:51,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:51,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:41:51,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:41:51,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:51,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64220 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62268 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59634 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:41:51,942 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:51,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:51,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.236s +2025-10-02 02:41:52,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.236s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.236s (avg: 0.118s/image) +2025-10-02 02:41:52,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.236s (avg: 0.118s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:41:52,179 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:59637 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62269 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64570 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62762 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:41:52,446 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:52,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:52,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.252s +2025-10-02 02:41:52,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.252s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.252s (avg: 0.126s/image) +2025-10-02 02:41:52,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.252s (avg: 0.126s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:41:52,700 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:62763 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64571 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:64152 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:64225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59658 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62273 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:55,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:55,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:56,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:41:56,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:41:56,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:56,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64153 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:41:56,245 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:41:56,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:41:56,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-02 02:41:56,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +2025-10-02 02:41:56,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:41:56,505 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:59659 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64226 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:56,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:56,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:56,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:41:56,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:41:56,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:56,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62274 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12768 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:57,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:57,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:57,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:41:57,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:41:57,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:57,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12769 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58593 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64575 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:64159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:41:58,854 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:41:58,873 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=100.475 +2025-10-02 02:41:58,956 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.475 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 02:41:58,957 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:41:58,957 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 39.112.59.88:58594 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:58,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:58,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:59,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:41:59,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:41:59,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:59,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64576 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:59,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:59,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:59,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:41:59,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:41:59,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:41:59,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:64160 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:41:59,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:41:59,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:41:59,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:42:00,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:42:00,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:00,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62776 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62278 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:00,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:00,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:00,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:42:00,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:42:00,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:00,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62279 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59665 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:01,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:01,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:01,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:42:01,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:42:01,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:01,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59666 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:02,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:02,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:02,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:42:02,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:42:02,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:02,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:03,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:03,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:03,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:42:03,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:42:03,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:03,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12774 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:03,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:03,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:03,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:42:03,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:42:03,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:03,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64424 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62283 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:04,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:04,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:04,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:42:04,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:42:04,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:04,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62284 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64580 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:05,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:05,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:05,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:42:05,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:42:05,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:05,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64581 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:06,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:06,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:06,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:42:06,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:42:06,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:06,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64242 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58598 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:07,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:07,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:07,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:42:07,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:42:07,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:07,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58599 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62294 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:08,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:08,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:08,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:42:08,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:42:08,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:08,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62295 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12778 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:09,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:09,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:09,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:42:09,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:42:09,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:09,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12779 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62299 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:12,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:12,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:12,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:42:13,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:42:13,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:13,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:13,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:13,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:13,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:42:13,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:42:13,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:13,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62300 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12786 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58603 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:14,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:14,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:14,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:42:15,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:42:15,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:15,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12787 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:15,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:15,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:15,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:42:15,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:42:15,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:15,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58604 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59684 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:16,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:16,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:16,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:42:16,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:42:16,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:16,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59685 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64585 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:17,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:17,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:17,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:42:17,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:42:17,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:17,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64586 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64255 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:42:18,041 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:42:18,065 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=54.585 +2025-10-02 02:42:18,146 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.585 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 02:42:18,146 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:42:18,146 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 122.35.47.45:64256 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:58928 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:12792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:19,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:19,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:19,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:42:20,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:42:20,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:20,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:21,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:21,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:21,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:42:21,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:42:21,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:21,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64434 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59689 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:42:22,265 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:42:22,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:42:22,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 02:42:22,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 02:42:22,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:42:22,547 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:62316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59690 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12797 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:64272 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62326 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:26,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:26,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:26,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:42:26,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:42:26,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:26,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12798 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:42:26,705 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:42:26,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:42:26,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 02:42:27,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 02:42:27,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:42:27,001 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:64273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56705 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64590 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:32,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:32,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:32,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:42:32,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:42:32,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:32,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56706 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:32,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:32,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:32,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:42:32,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:42:32,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:32,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64591 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59699 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:33,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:33,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:33,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:42:33,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:42:33,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:33,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59700 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64280 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:34,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:34,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:34,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:42:34,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:42:34,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:34,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64281 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62334 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:35,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:35,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:35,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:42:36,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:42:36,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:36,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62335 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56710 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59716 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:36,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:36,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:36,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:42:37,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:42:37,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:37,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56711 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:37,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:37,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:37,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:42:37,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:42:37,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:37,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59718 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64442 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58616 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:37,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:37,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:37,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:42:37,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:42:37,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:37,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64443 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:38,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:38,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:38,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:42:38,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:42:38,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:38,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58617 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62339 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:40,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:40,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:40,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:42:40,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:42:40,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:40,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62340 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:40,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:40,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:40,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:42:41,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:42:41,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:41,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64597 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64292 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:42,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:42,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:42,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:42:42,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:42:42,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:42,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64293 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59733 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:42,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:42,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:42,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:42:42,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:42:42,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:42,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59734 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56587 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58621 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:42:43,153 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:42:43,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:42:43,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 02:42:43,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 02:42:43,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:42:43,430 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:56588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58622 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62347 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:44,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:44,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:44,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:42:44,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:42:44,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:44,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62348 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56721 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:47,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:47,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:47,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:42:47,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:42:47,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:47,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56722 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49946 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:64459 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58626 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:49,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:49,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:49,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:42:49,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:42:49,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:49,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64460 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:49,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:49,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:49,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:42:49,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:42:49,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:49,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58627 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64601 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:51,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:51,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:51,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:42:51,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:42:51,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:51,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64602 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56726 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:52,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:52,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:52,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:42:52,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:42:52,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:52,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56727 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58631 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62359 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:54,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:54,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:54,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:42:54,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:42:54,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:54,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62360 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:54,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:54,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:54,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:42:54,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:42:54,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:54,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58632 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:57,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:57,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:57,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:42:57,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:42:57,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:57,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56732 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62365 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:42:58,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:42:58,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:42:58,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:42:58,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:42:58,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:42:58,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62366 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56736 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:00,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:00,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:00,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:43:00,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:43:00,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:00,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56737 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58639 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64606 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:01,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:01,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:01,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:43:01,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:43:01,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:01,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64607 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:01,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:01,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:02,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:43:02,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:43:02,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:02,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58640 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:02,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:02,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:02,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:43:02,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:43:02,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:02,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62372 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:02,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:02,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:02,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:43:03,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:43:03,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:03,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56741 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:03,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:03,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:04,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:43:04,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:43:04,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:04,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56742 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:05,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:05,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:05,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:43:06,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:43:06,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:06,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62837 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62377 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:64350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:06,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:06,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:06,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:43:06,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:43:06,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:06,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62378 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:07,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:07,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:07,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.254s +2025-10-02 02:43:08,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.254s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.254s (avg: 0.254s/image) +2025-10-02 02:43:08,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.254s (avg: 0.254s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:08,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:08,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:08,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:08,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:43:08,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:43:08,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:08,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:12,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:12,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:12,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:43:12,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:43:12,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:12,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64482 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:14,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:14,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:14,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.266s +2025-10-02 02:43:14,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.266s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.266s (avg: 0.266s/image) +2025-10-02 02:43:14,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.266s (avg: 0.266s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:14,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:15,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:15,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:15,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:43:15,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:43:15,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:15,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56755 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:17,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:17,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:17,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:43:17,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:43:17,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:17,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56756 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57466 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:58651 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:19,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:19,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:19,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.213s +2025-10-02 02:43:19,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.213s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.213s (avg: 0.213s/image) +2025-10-02 02:43:19,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.213s (avg: 0.213s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:19,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58652 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64372 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:20,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:20,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:20,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:43:20,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:43:20,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:20,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:20,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:20,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:20,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.243s +2025-10-02 02:43:21,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.243s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.243s (avg: 0.243s/image) +2025-10-02 02:43:21,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.243s (avg: 0.243s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:21,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62851 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:22,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:22,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:22,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:43:22,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:43:22,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:22,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62852 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:22,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:22,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:22,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:43:22,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:43:22,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:22,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64389 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62858 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12806 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:25,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:25,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:25,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:43:25,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:43:25,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:25,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62859 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:43:25,762 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:43:25,790 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=45.437 +2025-10-02 02:43:25,883 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.437 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 02:43:25,883 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 02:43:25,885 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 175.119.234.181:12807 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:58661 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:26,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:26,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:26,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.259s +2025-10-02 02:43:26,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.259s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.259s (avg: 0.259s/image) +2025-10-02 02:43:26,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.259s (avg: 0.259s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:26,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64390 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:26,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:26,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:26,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:43:26,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:43:26,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:26,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58662 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64490 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62863 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59784 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:29,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:29,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:29,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:43:30,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:43:30,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:30,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62864 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:30,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:30,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:30,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:43:30,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:43:30,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:30,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:31,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:31,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:31,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:43:31,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:43:31,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:31,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64492 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64398 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58666 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:43:32,316 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:43:32,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:43:32,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.397s +2025-10-02 02:43:32,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.397s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.397s (avg: 0.199s/image) +2025-10-02 02:43:32,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.397s (avg: 0.199s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:43:32,715 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 122.35.47.45:64399 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58667 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62868 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12820 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:33,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:33,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:33,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:43:33,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:43:33,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:33,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62869 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:34,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:34,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:34,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:43:34,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:43:34,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:34,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12821 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62875 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:36,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:36,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:36,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:43:36,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:43:36,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:36,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62876 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64406 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62880 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:39,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:39,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:39,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:43:39,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:43:39,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:39,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62881 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:40,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:40,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:40,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:43:40,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:43:40,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:40,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64407 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:40,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:40,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:40,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:43:41,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:43:41,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:41,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62885 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:41,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:41,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:41,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:43:41,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:43:41,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:41,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62886 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58674 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:64412 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:43,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:43,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:43,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:43:43,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:43:43,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:43,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58675 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:44,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:44,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:44,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.224s +2025-10-02 02:43:44,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.224s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.224s (avg: 0.224s/image) +2025-10-02 02:43:44,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.224s (avg: 0.224s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:44,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64413 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62897 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:47,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:47,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:47,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:43:47,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:43:47,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:47,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62898 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62418 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:47,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:47,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:47,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:43:47,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:43:47,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:47,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62419 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 122.35.47.45:64421 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34214 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:48,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:48,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:48,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:43:48,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:43:48,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:48,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12831 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:49,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:49,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:49,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.228s +2025-10-02 02:43:49,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.228s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.228s (avg: 0.228s/image) +2025-10-02 02:43:49,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.228s (avg: 0.228s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:49,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64422 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64508 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:50,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:50,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:50,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:43:50,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:43:50,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:50,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64509 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62902 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:52,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:52,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:52,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:43:52,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:43:52,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:52,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62903 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64428 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:43:52,815 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:43:52,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:43:52,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.340s +2025-10-02 02:43:53,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.340s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.340s (avg: 0.170s/image) +2025-10-02 02:43:53,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.340s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:43:53,156 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:58684 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64429 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62425 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59806 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:43:53,561 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:43:53,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:43:53,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 02:43:53,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 02:43:53,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:43:53,842 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:59807 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62426 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12854 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:56,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:56,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:56,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:43:56,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:43:56,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:56,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12855 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 122.35.47.45:64437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:58,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:58,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:58,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.258s +2025-10-02 02:43:58,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.258s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.258s (avg: 0.258s/image) +2025-10-02 02:43:58,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.258s (avg: 0.258s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:58,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 122.35.47.45:64438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62432 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:58,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:58,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:58,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:43:58,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:43:58,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:58,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62433 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56595 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:59,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:59,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:59,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:43:59,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:43:59,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:59,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56596 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59813 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58692 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:59,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:59,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:43:59,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:43:59,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:43:59,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:43:59,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59814 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:43:59,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:43:59,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:00,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:44:00,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:44:00,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:00,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58693 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:03,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:03,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:03,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:44:03,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:44:03,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:03,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:04,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:04,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:04,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:44:04,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:44:04,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:04,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:05,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:05,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:05,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:44:05,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:44:05,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:05,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58699 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:06,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:06,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:06,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:44:06,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:44:06,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:06,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56774 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62442 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:07,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:07,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:07,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:44:07,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:44:07,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:07,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62443 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:08,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:08,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:08,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:44:08,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:44:08,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:08,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59849 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9960 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:44:08,939 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:44:08,968 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=122.255 +2025-10-02 02:44:09,054 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.255 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 02:44:09,054 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:44:09,056 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 118.41.33.196:9961 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:56779 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:11,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:11,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:11,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:44:11,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:44:11,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:11,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56780 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58708 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62447 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:44:12,996 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:44:12,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:44:13,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +2025-10-02 02:44:13,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +2025-10-02 02:44:13,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:44:13,304 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:62448 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58709 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9965 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:44:14,167 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:44:14,189 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=109.452 +2025-10-02 02:44:14,274 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.452 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 02:44:14,275 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:44:14,276 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 118.41.33.196:9966 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:12868 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:15,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:15,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:15,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:44:15,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:44:15,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:15,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12869 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56784 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:15,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:15,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:15,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:44:16,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:44:16,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:16,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62453 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:17,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:17,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:17,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:44:17,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:44:17,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:17,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62454 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9971 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52688 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:44:18,743 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:44:18,775 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=110.596 +2025-10-02 02:44:18,870 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.596 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 02:44:18,870 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:44:18,871 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 118.41.33.196:9972 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:59861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:19,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:19,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:19,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:44:19,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:44:19,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:19,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58713 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:21,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:21,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:21,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:44:21,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:44:21,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:21,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58714 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62460 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59866 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:23,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:23,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:23,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:44:23,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:44:23,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:23,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62461 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:23,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:23,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:23,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:44:23,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:44:23,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:23,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59867 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65246 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:26,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:26,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:26,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:44:26,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:44:26,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:26,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62465 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59873 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:27,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:27,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:27,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:44:27,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:44:27,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:27,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62466 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:28,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:28,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:28,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:44:28,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:44:28,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:28,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59874 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12879 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:28,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:28,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:28,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:44:28,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:44:28,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:28,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12880 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58722 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:30,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:30,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:30,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:44:30,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:44:30,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:30,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58723 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62470 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:31,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:31,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:31,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:44:31,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:44:31,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:31,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62471 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56796 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:31,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:31,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:31,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:44:32,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:44:32,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:32,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56797 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65256 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12884 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59881 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:32,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:32,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:32,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:44:33,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:44:33,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:33,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65257 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:44:33,220 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:44:33,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:44:33,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 02:44:33,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-02 02:44:33,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:44:33,518 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:12885 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59882 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58727 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:35,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:35,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:35,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:44:35,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:44:35,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:35,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58728 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9979 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:37,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:37,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:37,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:44:37,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:44:37,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:37,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:37,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:37,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:37,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:44:37,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:44:37,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:37,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9980 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12892 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:42,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:42,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:42,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:44:42,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:44:42,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:42,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12893 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9984 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:42,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:42,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:42,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:44:42,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:44:42,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:42,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9985 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65272 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:44,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:44,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:44,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:44:44,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:44:44,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:44,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9989 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:46,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:46,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:46,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:44:46,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:44:46,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:46,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9990 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55720 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:9994 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:50,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:50,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:50,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:44:51,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:44:51,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:51,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:9995 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:9999 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64633 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:55,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:55,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:55,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 02:44:55,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 02:44:55,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:55,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10000 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:55,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:55,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:55,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:44:56,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:44:56,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:56,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64634 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65330 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:56,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:56,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:56,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:44:57,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:44:57,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:57,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65331 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:44:57,371 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:44:57,401 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=29.840 +2025-10-02 02:44:57,491 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.840 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 02:44:57,491 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 02:44:57,491 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 221.154.208.144:62483 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:10004 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:44:59,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:44:59,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:44:59,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:44:59,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:44:59,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:44:59,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10005 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:00,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:00,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:01,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:45:01,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:45:01,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:01,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62491 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:10009 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:03,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:03,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:03,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:45:04,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:45:04,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:04,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62492 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64638 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:65362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:04,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:04,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:04,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:45:05,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:45:05,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:05,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56818 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12918 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:05,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:05,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:05,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:45:05,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:45:05,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:05,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10010 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:05,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:05,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:05,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:45:05,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:45:05,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:05,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56819 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:05,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:05,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:06,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:45:06,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:45:06,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:06,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64639 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62924 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:10014 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62496 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56824 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:10,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:10,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:10,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:45:10,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:45:10,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:10,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12919 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:10,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:10,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:10,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:45:11,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:45:11,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:11,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62925 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:11,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:11,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:11,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:45:11,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:45:11,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:11,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56825 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65375 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:11,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:11,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:11,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:45:11,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:45:11,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:11,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:13,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:13,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:13,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:45:13,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:45:13,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:13,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65376 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12924 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:15,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:15,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:15,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:45:15,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:45:15,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:15,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10015 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64643 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62931 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:16,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:16,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:16,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 02:45:16,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 02:45:16,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:16,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12925 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56829 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:16,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:16,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:16,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:45:16,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:45:16,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:16,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64644 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:17,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:17,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:17,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:45:17,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:45:17,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:17,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62932 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:17,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:17,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:17,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:45:17,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:45:17,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:17,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56830 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56604 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:18,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:18,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:18,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:45:18,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:45:18,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:18,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56605 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42750 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:58741 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:10019 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:45:19,384 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:45:19,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:45:19,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 02:45:19,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +2025-10-02 02:45:19,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:45:19,701 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:59938 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:10020 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58742 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65388 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:20,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:20,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:20,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:45:20,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:45:20,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:20,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59939 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:20,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:20,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:20,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:45:20,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:45:20,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:20,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65389 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:21,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:21,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:21,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:45:21,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:45:21,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:21,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:21,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:21,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:21,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:45:22,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:45:22,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:22,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62508 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62938 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:22,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:22,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:22,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:45:22,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:45:22,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:22,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62939 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:59943 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:45:23,765 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:45:23,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:45:23,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 02:45:24,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-02 02:45:24,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:45:24,048 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:59944 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58746 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:24,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:24,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:24,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:45:24,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:45:24,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:24,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:25,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:25,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:25,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:45:25,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:45:25,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:25,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58747 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56837 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:26,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:26,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:26,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:45:26,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:45:26,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:26,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56838 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62943 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:26,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:26,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:26,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:45:27,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:45:27,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:27,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62944 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64648 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:27,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:27,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:27,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:45:27,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:45:27,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:27,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64649 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10030 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:28,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:28,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:28,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:45:28,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:45:28,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:28,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10031 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:65404 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:29,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:29,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:29,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:45:29,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:45:29,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:29,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:29,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:29,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:29,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:45:29,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:45:29,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:29,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65405 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12937 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:45:31,399 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:45:31,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:45:31,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 02:45:31,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-02 02:45:31,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:45:31,700 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:12938 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58751 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:32,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:32,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:32,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:45:32,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:45:32,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:32,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58752 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10035 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:32,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:32,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:32,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:45:32,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:45:32,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:32,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10036 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:59955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:33,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:33,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:33,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:45:33,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:45:33,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:33,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:59956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65412 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:33,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:33,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:33,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:45:33,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:45:33,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:33,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65413 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:36,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:36,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:36,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:45:36,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:45:36,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:36,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10040 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:36,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:36,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:36,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:45:37,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:45:37,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:37,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10041 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:65420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:37,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:37,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:37,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:45:37,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:45:37,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:37,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:65421 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60007 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:38,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:38,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:38,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:45:38,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:45:38,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:38,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60008 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58757 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:40,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:40,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:40,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:45:40,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:45:40,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:40,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58758 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:40,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:40,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:40,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:45:40,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:45:40,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:40,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:10045 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:41,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:41,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:41,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:45:41,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:45:41,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:41,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:41,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:41,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:41,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:45:41,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:45:41,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:41,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62963 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:41,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:41,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:41,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:45:41,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:45:41,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:41,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10046 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10050 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:45,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:45,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:45,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:45:45,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:45:45,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:45,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10051 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12958 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:47,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:47,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:47,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:45:48,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:45:48,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:48,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12959 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48596 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:58762 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:45:50,162 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:45:50,196 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=87.400 +2025-10-02 02:45:50,284 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.400 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 02:45:50,285 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 02:45:50,285 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 39.112.59.88:58763 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:62522 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:50,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:50,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:51,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:45:51,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:45:51,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:51,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62523 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64659 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:51,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:51,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:51,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:45:51,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:45:51,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:51,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64660 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62527 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:54,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:54,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:54,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s +2025-10-02 02:45:54,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image) +2025-10-02 02:45:54,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:54,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62528 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:55,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:55,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:55,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:45:55,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:45:55,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:55,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12966 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:56,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:56,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:56,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:45:56,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:45:56,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:56,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12967 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:57,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:57,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:57,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:45:57,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:45:57,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:57,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62540 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58767 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:45:59,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:45:59,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:45:59,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:45:59,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:45:59,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:45:59,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62541 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64664 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62547 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 3 jobs. +2025-10-02 02:46:05,522 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 02:46:05,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 02:46:05,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.421s +2025-10-02 02:46:05,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.421s +INFO:app.core.worker_manager:'simple-lama' batch of 3 processed in 0.421s (avg: 0.140s/image) +2025-10-02 02:46:05,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.421s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 3 jobs. +2025-10-02 02:46:05,945 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +INFO: 39.112.59.88:58768 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62548 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64665 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12976 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62973 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:08,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:08,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:08,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:46:08,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:46:08,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:08,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12977 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:46:08,826 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(838, 629, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:46:08,856 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(838, 629, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=58.887 +2025-10-02 02:46:08,931 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.887 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 02:46:08,932 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 02:46:08,932 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 61.255.207.212:62974 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:62552 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:09,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:09,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:09,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:46:09,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:46:09,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:09,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62553 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62557 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:11,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:11,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:11,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:46:11,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:46:11,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:11,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62558 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62980 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:46:12,487 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:46:12,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=49.020 +2025-10-02 02:46:12,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.020 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 02:46:12,595 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 02:46:12,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 61.255.207.212:62981 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:62562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12981 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58772 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:13,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:13,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:13,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:46:13,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:46:13,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:13,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62563 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:14,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:14,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:14,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:46:14,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:46:14,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:14,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12982 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:14,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:14,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:14,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:46:14,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:46:14,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:14,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58773 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62985 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62567 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:16,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:16,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:16,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:46:16,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:46:16,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:16,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:46:16,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:46:16,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=81.777 +2025-10-02 02:46:16,594 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.777 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 02:46:16,594 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:46:16,594 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 61.255.207.212:62986 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:16,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:16,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:16,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:46:16,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:46:16,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:16,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62568 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37040 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:12991 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:19,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:19,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:19,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:46:19,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:46:19,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:19,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12992 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64614 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:46:21,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(642, 738, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:46:21,382 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(642, 738, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=99.494 +2025-10-02 02:46:21,450 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.494 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.067s +2025-10-02 02:46:21,450 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-02 02:46:21,450 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +INFO: 211.226.69.49:64615 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:62992 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:21,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:21,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:22,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:46:22,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:46:22,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:22,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62993 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58777 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:22,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:22,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:23,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:46:23,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:46:23,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:23,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58778 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12996 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64675 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64621 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56879 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:26,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:26,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:26,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:46:26,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:46:26,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:26,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64676 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:46:27,303 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(737, 740, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:46:27,319 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(737, 740, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=101.073 +2025-10-02 02:46:27,387 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.073 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.068s +2025-10-02 02:46:27,388 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-02 02:46:27,388 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +INFO: 211.226.69.49:64624 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:27,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:27,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:27,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:46:27,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:46:27,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:27,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56880 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:27,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:27,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:27,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:46:27,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:46:27,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:27,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12997 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56888 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:33,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:33,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:33,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:46:33,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:46:33,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:33,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56889 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:34,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:34,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:34,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:46:34,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:46:34,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:34,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56613 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:35,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:35,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:36,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:46:36,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:46:36,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:36,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64684 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56896 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:40,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:40,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:40,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 02:46:40,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 02:46:40,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:40,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56897 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58786 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:41,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:41,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:41,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:46:42,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:46:42,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:42,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58787 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:45,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:45,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:45,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:46:45,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:46:45,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:45,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60100 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63009 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:46,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:46,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:46,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:46:46,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:46:46,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:46,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63010 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56904 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:46,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:46,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:46,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:46:46,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:46:46,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:46,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56905 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58791 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:47,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:47,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:47,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:46:48,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:46:48,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:48,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58792 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51612 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:63019 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:49,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:49,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:49,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:46:49,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:46:49,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:49,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63020 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58816 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:51,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:51,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:51,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:46:51,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:46:51,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:51,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58817 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:52,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:52,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:52,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:46:52,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:46:52,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:52,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56912 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:52,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:52,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:53,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 02:46:53,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 02:46:53,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:53,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56913 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63029 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62606 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:54,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:54,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:54,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:46:54,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:46:54,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:54,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63030 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:55,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:55,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:55,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:46:55,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:46:55,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:55,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62607 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56921 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:46:58,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:46:58,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:46:58,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 02:46:59,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 02:46:59,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:46:59,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56922 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58821 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64651 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:00,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:00,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:00,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:47:00,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:47:00,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:00,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58822 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:00,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:00,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:00,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:47:00,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:47:00,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:00,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64652 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63042 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:02,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:02,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:02,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:47:02,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:47:02,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:02,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60112 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:02,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:02,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:02,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:47:02,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:47:02,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:02,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60114 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:05,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:05,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:05,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:47:05,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:47:05,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:05,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58827 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:05,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:05,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:05,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 02:47:05,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 02:47:05,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:05,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:07,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:07,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:07,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:47:07,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:47:07,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:07,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60143 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58831 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:09,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:09,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:09,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:47:09,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:47:09,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:09,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58832 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56938 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:11,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:11,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:11,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.211s +2025-10-02 02:47:11,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.211s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.211s (avg: 0.211s/image) +2025-10-02 02:47:11,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.211s (avg: 0.211s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:11,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56939 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:12,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:12,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:12,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:47:12,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:47:12,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:12,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:13,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:13,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:13,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:47:13,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:47:13,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:13,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58837 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:60152 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:15,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:15,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:15,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:47:15,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:47:15,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:15,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:15,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:15,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:15,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:47:15,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:47:15,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:15,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60153 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56946 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:17,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:17,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:17,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 02:47:17,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 02:47:17,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:17,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56947 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:18,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:18,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:18,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:47:18,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:47:18,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:18,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53134 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:60157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:18,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:18,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:19,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:47:19,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:47:19,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:19,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10070 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:47:20,501 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:47:20,529 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=101.190 +2025-10-02 02:47:20,616 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.190 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 02:47:20,617 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:47:20,617 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 118.41.33.196:10071 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:63073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:23,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:23,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:23,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 02:47:23,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 02:47:23,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:23,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56954 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:24,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:24,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:24,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:47:24,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:47:24,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:24,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56955 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10075 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:47:25,050 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:47:25,082 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=88.462 +2025-10-02 02:47:25,158 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.462 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 02:47:25,159 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 02:47:25,159 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 118.41.33.196:10076 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:58849 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:60167 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:47:25,707 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:47:25,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:47:25,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 02:47:26,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 02:47:26,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:47:26,000 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:60168 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58850 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10080 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:47:29,566 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:47:29,594 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=80.511 +2025-10-02 02:47:29,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.511 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 02:47:29,675 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:47:29,676 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 118.41.33.196:10081 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:58854 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63080 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:30,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:30,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:30,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:47:30,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:47:30,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:30,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58855 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:31,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:31,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:31,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:47:31,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:47:31,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:31,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63081 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:32,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:32,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:32,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 02:47:32,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 02:47:32,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:32,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56963 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58859 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:33,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:33,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:34,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:47:34,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:47:34,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:34,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:34,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:34,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:34,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:47:34,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:47:34,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:34,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58860 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62639 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:47:37,527 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:47:37,552 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=25.013 +2025-10-02 02:47:37,630 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.013 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 02:47:37,630 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:47:37,630 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 221.154.208.144:62640 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:58864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:38,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:38,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:38,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:47:38,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:47:38,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:38,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56970 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:39,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:39,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:39,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 02:47:40,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 02:47:40,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:40,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56971 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63100 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:40,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:40,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:40,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:47:40,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:47:40,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:40,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63101 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13029 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:47:42,532 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:47:42,552 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=80.206 +2025-10-02 02:47:42,630 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.206 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 02:47:42,631 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:47:42,631 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 175.119.234.181:13030 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:62652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58870 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:44,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:44,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:44,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:47:44,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:47:44,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:44,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62653 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:44,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:44,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:44,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:47:44,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:47:44,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:44,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58871 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:56978 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63108 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:46,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:46,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:46,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:47:46,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:47:46,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:46,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56979 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:47,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:47,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:47,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:47:47,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:47:47,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:47,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:47,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:47,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:47,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:47:47,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:47:47,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:47,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63109 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46794 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:13034 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:49,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:49,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:50,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:47:50,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:47:50,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:50,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13035 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62657 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:50,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:50,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:50,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:47:50,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:47:50,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:50,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62658 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58875 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63115 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:51,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:51,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:51,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:47:51,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:47:51,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:51,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63116 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:52,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:52,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:52,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:47:52,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:47:52,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:52,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58876 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56987 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:53,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:53,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:53,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:47:54,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:47:54,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:54,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56988 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49717 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:54,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:54,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:54,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:47:55,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:47:55,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:55,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49718 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10095 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13040 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:56,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:56,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:56,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:47:56,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:47:56,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:56,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10096 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:57,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:57,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:57,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:47:57,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:47:57,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:57,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13041 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58881 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:58,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:58,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:58,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:47:58,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:47:58,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:58,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63124 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:58,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:58,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:58,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:47:58,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:47:58,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:58,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58882 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:59,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:59,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:47:59,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:47:59,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:47:59,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:47:59,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49456 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:56995 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:47:59,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:47:59,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:00,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:48:00,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:48:00,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:00,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:56996 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:48:00,479 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:48:00,510 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=133.244 +2025-10-02 02:48:00,611 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.244 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.100s +2025-10-02 02:48:00,611 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 02:48:00,612 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +INFO: 220.77.167.192:64691 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:13046 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58886 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:03,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:03,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:03,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:48:04,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:48:04,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:04,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13047 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:04,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:04,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:04,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:48:04,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:48:04,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:04,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58887 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49738 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:06,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:06,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:06,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:48:06,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:48:06,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:06,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49739 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58891 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57003 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63136 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:07,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:07,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:07,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:48:07,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:48:07,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:07,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57004 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64695 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:48:07,747 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:48:07,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:48:07,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 02:48:08,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-02 02:48:08,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:48:08,030 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:58892 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63137 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49744 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:08,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:08,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:08,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:48:08,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:48:08,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:08,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64696 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:08,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:08,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:08,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:48:08,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:48:08,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:08,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49745 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57008 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58896 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:11,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:11,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:11,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:48:11,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:48:11,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:11,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57009 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:11,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:11,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:12,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:48:12,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:48:12,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:12,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58897 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63143 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:12,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:12,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:12,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:48:12,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:48:12,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:12,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63144 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49758 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57013 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:48:15,060 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:48:15,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:48:15,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 02:48:15,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 02:48:15,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:48:15,364 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:49759 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57014 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63148 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:17,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:17,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:17,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:48:17,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:48:17,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:17,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63149 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64700 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:18,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:18,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:18,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:48:18,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:48:18,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:18,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64701 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51662 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:49766 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:19,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:19,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:19,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:48:19,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:48:19,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:19,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49767 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62678 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:20,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:20,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:20,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:48:20,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:48:20,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:20,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62679 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58906 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:22,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:22,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:22,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:48:22,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:48:22,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:22,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58907 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:22,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:22,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:22,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:48:22,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:48:22,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:22,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49774 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:24,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:24,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:24,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:48:25,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:48:25,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:25,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49775 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13065 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64705 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:26,535 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:26,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:26,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:48:26,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:48:26,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:26,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13066 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:27,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:27,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:27,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:48:27,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:48:27,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:27,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64706 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49782 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:28,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:28,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:28,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:48:28,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:48:28,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:28,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49783 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:30,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:30,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:30,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:48:30,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:48:30,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:30,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58912 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49790 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:48:31,661 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:48:31,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:48:31,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 02:48:31,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 02:48:31,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:48:31,938 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:49791 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:32,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:32,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:32,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:48:32,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:48:32,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:32,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:34,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:34,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:34,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:48:34,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:48:34,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:34,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62699 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:37,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:37,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:37,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:48:38,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:48:38,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:38,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13079 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62706 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:38,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:38,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:38,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:48:38,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:48:38,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:38,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62707 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49807 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:39,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:39,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:39,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:48:39,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:48:39,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:39,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49808 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13083 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:49841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62717 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:42,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:42,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:42,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:48:43,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:48:43,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:43,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:48:43,170 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:48:43,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:48:43,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 02:48:43,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-02 02:48:43,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:48:43,446 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:13084 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62718 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13089 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:46,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:46,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:46,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:48:46,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:48:46,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:46,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13090 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62722 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:47,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:47,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:47,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:48:47,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:48:47,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:47,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62723 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:49883 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:47,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:47,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:47,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:48:47,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:48:47,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:47,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49884 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33704 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:13095 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:50,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:50,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:50,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:48:50,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:48:50,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:50,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13096 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63169 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:53,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:53,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:53,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:48:53,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:48:53,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:53,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63170 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13100 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:54,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:54,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:54,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:48:54,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:48:54,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:54,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13101 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62733 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:49940 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:55,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:55,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:55,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:48:55,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:48:55,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:55,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62734 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:56,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:56,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:56,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:48:56,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:48:56,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:56,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:49941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13105 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:58,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:58,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:58,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:48:58,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:48:58,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:58,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13106 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62744 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:48:58,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:48:58,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:48:58,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:48:58,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:48:58,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:48:58,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62745 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:01,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:01,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:01,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:49:01,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:49:01,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:01,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50189 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62751 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:02,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:02,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:02,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:49:02,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:49:02,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:02,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62752 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13114 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:03,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:03,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:03,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:49:03,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:49:03,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:03,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13115 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:06,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:06,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:06,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:49:06,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:49:06,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:06,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62760 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13121 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:50354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:07,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:07,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:07,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:49:07,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:49:07,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:07,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13122 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:07,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:07,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:07,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:49:07,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:49:07,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:07,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:10,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:10,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:11,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:49:11,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:49:11,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:11,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64720 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:12,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:12,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:12,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:49:13,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:49:13,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:13,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64721 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62771 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:13,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:13,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:13,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:49:13,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:49:13,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:13,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62772 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:49:15,979 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:49:15,997 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=58.216 +2025-10-02 02:49:16,077 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.216 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 02:49:16,077 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:49:16,077 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 61.255.207.212:63180 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:64725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:17,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:17,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:17,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:49:17,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:49:17,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:17,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64726 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57286 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:63186 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:49:19,232 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:49:19,253 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=34.770 +2025-10-02 02:49:19,331 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.770 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 02:49:19,331 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:49:19,332 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 61.255.207.212:63187 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:64731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63191 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:22,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:22,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:22,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:49:22,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:49:22,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:22,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64732 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:49:23,077 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:49:23,103 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=34.859 +2025-10-02 02:49:23,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.859 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:49:23,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:49:23,180 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 61.255.207.212:63192 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:63196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:27,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:27,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:27,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:49:28,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:49:28,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:28,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63197 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:41,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:41,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:41,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:49:41,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:49:41,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:41,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:47,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:47,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:47,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:49:48,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:49:48,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:48,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63212 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54028 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:50652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:49,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:49,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:49,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:49:49,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:49:49,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:49,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50653 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:50,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:50,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:50,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:49:50,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:49:50,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:50,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:53,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:53,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:53,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:49:53,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:49:53,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:53,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:50662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:49:56,440 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:49:56,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:49:56,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 02:49:56,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-02 02:49:56,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:49:56,740 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:50663 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63227 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10131 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:49:57,757 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:49:57,785 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=53.850 +2025-10-02 02:49:57,876 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.850 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 02:49:57,876 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 02:49:57,878 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 118.41.33.196:10132 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:64859 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:49:58,687 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:49:58,724 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=112.015 +2025-10-02 02:49:58,812 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.015 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 02:49:58,812 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 02:49:58,812 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 211.226.69.49:64860 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:63231 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:49:59,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:49:59,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:49:59,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:49:59,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:49:59,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:49:59,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63232 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10136 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:50:02,003 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:50:02,035 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=88.378 +2025-10-02 02:50:02,131 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.378 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.095s +2025-10-02 02:50:02,132 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 02:50:02,133 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 118.41.33.196:10137 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:50672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:03,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:03,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:03,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:50:04,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:50:04,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:04,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50673 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64868 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:50:05,779 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:50:05,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=34.386 +2025-10-02 02:50:05,899 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.386 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 02:50:05,899 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 02:50:05,899 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 211.226.69.49:64869 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:10141 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:50:06,558 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:50:06,593 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=84.332 +2025-10-02 02:50:06,678 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.332 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 02:50:06,678 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 02:50:06,680 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 118.41.33.196:10142 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:57044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:12,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:12,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:12,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:50:12,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:50:12,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:12,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:12,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:12,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:13,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:50:13,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:50:13,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:13,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50684 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58949 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:50:15,238 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:50:15,265 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=103.528 +2025-10-02 02:50:15,359 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.528 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 02:50:15,359 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:50:15,361 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 39.112.59.88:58950 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:57049 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:15,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:15,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:15,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:50:15,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:50:15,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:15,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57050 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46860 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:13156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:50694 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:22,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:22,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:22,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:50:22,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:50:22,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:22,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58954 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:24,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:24,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:24,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:50:24,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:50:24,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:24,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58955 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:24,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:24,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:24,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:50:24,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:50:24,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:24,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50696 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57057 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:25,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:25,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:25,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:50:25,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:50:25,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:25,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57058 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:27,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:27,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:27,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:50:27,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:50:27,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:27,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13162 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57063 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:29,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:29,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:29,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:50:29,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:50:29,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:29,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57064 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58959 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:31,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:31,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:32,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:50:32,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:50:32,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:32,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58960 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:32,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:32,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:32,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:50:32,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:50:32,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:32,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:50764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:32,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:32,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:32,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:50:32,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:50:32,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:32,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:33,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:33,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:33,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:50:33,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:50:33,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:33,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57068 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:34,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:34,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:34,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:50:34,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:50:34,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:34,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57069 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64909 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:35,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:35,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:35,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:50:35,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:50:35,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:35,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64910 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:36,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:36,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:36,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:50:36,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:50:36,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:36,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:38,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:38,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:38,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:50:38,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:50:38,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:38,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58965 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:39,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:39,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:39,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:50:39,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:50:39,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:39,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58966 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13177 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:40,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:40,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:40,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:50:40,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:50:40,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:40,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13178 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:41,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:41,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:41,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:50:41,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:50:41,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:41,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57079 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:44,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:44,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:44,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:50:44,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:50:44,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:44,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57083 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:46,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:46,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:46,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:50:46,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:50:46,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:46,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57084 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58842 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:49,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:49,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:49,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:50:49,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:50:49,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:49,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:50,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:50,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:50,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:50:50,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:50:50,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:50,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57088 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:51,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:51,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:51,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:50:51,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:50:51,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:51,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57089 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64754 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:52,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:52,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:52,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:50:52,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:50:52,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:52,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64755 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13193 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:53,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:53,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:54,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:50:54,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:50:54,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:54,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13194 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:54,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:54,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:54,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:50:54,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:50:54,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:54,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10162 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57093 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:55,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:55,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:55,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:50:55,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:50:55,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:55,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57094 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13198 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:58,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:58,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:58,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:50:58,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:50:58,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:58,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13199 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57098 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:58,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:58,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:58,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:50:58,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:50:58,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:58,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50789 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:58,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:58,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:58,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:50:58,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:50:58,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:58,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57099 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58976 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:50:59,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:50:59,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:50:59,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:50:59,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:50:59,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:50:59,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50790 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:00,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:00,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:00,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:51:00,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:51:00,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:00,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58977 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64934 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:02,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:02,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:02,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:51:02,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:51:02,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:02,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13203 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:02,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:02,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:02,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:51:02,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:51:02,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:02,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64935 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:02,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:02,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:02,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:51:02,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:51:02,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:02,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13204 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57103 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:60490 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:05,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:05,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:05,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:51:05,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:51:05,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:05,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:05,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:05,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:05,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:51:05,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:51:05,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:05,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57104 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58982 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:06,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:06,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:06,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:51:07,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:51:07,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:07,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58983 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:07,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:07,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:07,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:51:07,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:51:07,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:07,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:08,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:08,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:08,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:51:08,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:51:08,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:08,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10177 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60503 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:10,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:10,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:10,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:51:10,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:51:10,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:10,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60504 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:12,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:12,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:12,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:51:12,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:51:12,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:12,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10181 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58987 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:12,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:12,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:12,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:51:13,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:51:13,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:13,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10182 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60508 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:13,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:13,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:13,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 02:51:13,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 02:51:13,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:13,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58988 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:14,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:14,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:14,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:51:14,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:51:14,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:14,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60509 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10186 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:16,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:16,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:16,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:51:16,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:51:16,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:16,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10187 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:16,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:16,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:16,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:51:16,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:51:16,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:16,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13224 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:58992 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52192 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:10191 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:21,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:21,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:21,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:51:21,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:51:21,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:21,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10192 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:21,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:21,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:21,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:51:21,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:51:21,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:21,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:21,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:21,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:21,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:51:22,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:51:22,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:22,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58993 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60524 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:23,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:23,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:23,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:51:23,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:51:23,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:23,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57136 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:24,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:24,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:24,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:51:24,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:51:24,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:24,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57137 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63267 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:26,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:26,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:26,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:51:26,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:51:26,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:26,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:26,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:26,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:26,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:51:26,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:51:26,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:26,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63268 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:25236 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:51:26,852 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:51:26,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:51:26,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-02 02:51:27,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +2025-10-02 02:51:27,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:51:27,174 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:60530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50887 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62838 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:58997 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:27,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:27,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:28,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:51:28,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:51:28,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:28,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62839 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:28,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:28,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:28,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:51:29,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:51:29,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:29,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:58998 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57141 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:30,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:30,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:30,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:51:30,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:51:30,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:30,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57142 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:30,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:30,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:30,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:51:30,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:51:30,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:30,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:31,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:31,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:31,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:51:31,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:51:31,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:31,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60540 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62843 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:33,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:33,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:33,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:51:34,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:51:34,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:34,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60541 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:34,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:34,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:34,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:51:34,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:51:34,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:34,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62844 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:34,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:34,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:34,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:51:34,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:51:34,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:34,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59006 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:35,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:35,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:35,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:51:35,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:51:35,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:35,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60559 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:36,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:36,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:36,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:51:37,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:51:37,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:37,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60560 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10207 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13249 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64970 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:40,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:40,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:40,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:51:40,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:51:40,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:40,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10208 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:51:40,964 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:51:40,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:51:41,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 02:51:41,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 02:51:41,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:51:41,241 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:13250 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64971 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62853 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:41,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:41,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:41,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:51:41,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:51:41,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:41,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62854 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59013 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:60572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:51:44,260 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:51:44,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:51:44,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-02 02:51:44,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.309s (avg: 0.154s/image) +2025-10-02 02:51:44,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:51:44,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:60573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59014 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10212 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:45,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:45,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:45,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:51:45,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:51:45,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:45,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10213 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13254 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:46,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:46,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:46,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:51:46,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:51:46,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:46,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13255 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60580 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:48,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:48,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:48,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:51:48,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:51:48,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:48,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60581 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56643 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48894 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:10217 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:48,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:48,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:48,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:51:48,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:51:48,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:48,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56644 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62859 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:49,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:49,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:49,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:51:49,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:51:49,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:49,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10218 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:49,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:49,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:49,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:51:49,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:51:49,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:49,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62860 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:50,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:50,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:50,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:51:50,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:51:50,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:50,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60587 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:51,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:51,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:51,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:51:51,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:51:51,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:51,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59021 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:52,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:52,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:52,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:51:52,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:51:52,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:52,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59022 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60592 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:55,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:55,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:55,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:51:55,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:51:55,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:55,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60593 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:55,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:55,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:55,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:51:55,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:51:55,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:55,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:55,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:55,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:55,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:51:56,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:51:56,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:56,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63281 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:51:56,387 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:51:56,411 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=49.543 +2025-10-02 02:51:56,488 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.543 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:51:56,488 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:51:56,488 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 61.255.207.212:63282 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:60601 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59026 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:57,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:57,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:57,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:51:57,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:51:57,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:57,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60602 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:51:58,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:51:58,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:51:58,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:51:58,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:51:58,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:51:58,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59027 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63288 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:51:59,879 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:51:59,898 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=52.366 +2025-10-02 02:51:59,972 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.366 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.072s +2025-10-02 02:51:59,972 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 02:51:59,972 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 61.255.207.212:63289 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:00,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:00,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:00,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:52:00,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:52:00,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:00,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57162 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62869 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59031 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:02,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:02,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:02,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:52:03,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:52:03,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:03,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62870 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63293 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:03,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:03,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:03,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:52:03,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:52:03,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:03,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59032 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:52:04,227 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(640, 640, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:52:04,249 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(640, 640, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=232.919 +2025-10-02 02:52:04,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=232.919 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.070s +2025-10-02 02:52:04,319 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-02 02:52:04,319 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +INFO: 61.255.207.212:63294 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:04,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:04,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:04,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:52:04,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:52:04,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:04,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60617 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:08,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:08,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:08,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:52:08,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:52:08,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:08,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60618 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62874 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:09,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:09,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:09,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:52:09,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:52:09,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:09,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:10,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:10,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:10,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:52:10,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:52:10,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:10,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62875 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63298 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:11,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:11,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:11,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:52:11,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:52:11,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:11,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60625 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:13,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:13,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:13,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:52:13,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:52:13,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:13,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63299 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60629 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:13,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:13,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:14,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:52:14,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:52:14,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:14,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60630 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:50982 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62879 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:60634 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:17,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:17,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:17,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:52:17,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:52:17,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:17,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62880 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:17,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:17,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:17,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:52:17,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:52:17,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:17,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:50983 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:17,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:17,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:17,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 02:52:18,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 02:52:18,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:18,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60637 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:18,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:18,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:18,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:52:18,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:52:18,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:18,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50662 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:60642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:20,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:20,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:20,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:52:20,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:52:20,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:20,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60647 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:21,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:21,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:21,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:52:21,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:52:21,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:21,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62891 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:22,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:22,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:22,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:52:22,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:52:22,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:22,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62892 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:52:25,121 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:52:25,158 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=128.978 +2025-10-02 02:52:25,244 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.978 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 02:52:25,244 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 02:52:25,245 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 220.77.167.192:64765 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.199.161.49:60669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:25,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:25,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:25,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:52:25,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:52:25,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:25,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51096 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:27,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:27,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:27,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:52:27,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:52:27,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:27,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51097 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51105 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:33,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:33,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:33,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:52:33,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:52:33,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:33,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51106 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64770 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:52:36,060 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:52:36,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:52:36,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 02:52:36,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 02:52:36,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:52:36,341 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:64771 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51114 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:39,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:39,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:39,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:52:39,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:52:39,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:39,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51115 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:44,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:44,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:44,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:52:44,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:52:44,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:44,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64776 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:52:45,020 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:52:45,048 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=38.655 +2025-10-02 02:52:45,143 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.655 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 02:52:45,143 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 02:52:45,145 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 175.119.234.181:13278 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:51124 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:46,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:46,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:46,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:52:46,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:52:46,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:46,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51125 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54066 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:64780 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:51132 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:52:52,102 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:52:52,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:52:52,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 02:52:52,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-02 02:52:52,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:52:52,401 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:64781 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51133 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62908 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:52:53,827 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:52:53,853 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=70.003 +2025-10-02 02:52:53,936 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.003 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 02:52:53,936 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:52:53,936 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 221.154.208.144:62909 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:10228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:52:54,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:52:54,388 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=56.810 +2025-10-02 02:52:54,469 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.810 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 02:52:54,469 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:52:54,469 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 118.41.33.196:10229 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:13285 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:55,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:55,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:55,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:52:55,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:52:55,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:55,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13286 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62913 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:10234 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:52:58,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:52:58,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:52:58,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:52:58,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:52:58,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:52:58,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62914 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:52:58,308 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:52:58,325 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=68.323 +2025-10-02 02:52:58,409 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.323 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 02:52:58,409 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 02:52:58,409 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 118.41.33.196:10235 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:10239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:53:02,378 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:53:02,402 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=45.189 +2025-10-02 02:53:02,481 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.189 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 02:53:02,481 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:53:02,481 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 118.41.33.196:10240 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:62921 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:02,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:02,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:02,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:53:03,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:53:03,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:03,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62922 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62926 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56651 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:07,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:07,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:07,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:53:07,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:53:07,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:07,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62927 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:08,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:08,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:08,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:53:08,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:53:08,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:08,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56652 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:62931 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:11,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:11,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:11,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:53:11,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:53:11,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:11,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57212 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:12,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:12,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:12,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:53:12,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:53:12,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:12,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62932 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63356 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:14,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:14,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:14,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:53:14,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:53:14,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:14,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63357 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:16,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:16,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:16,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:53:16,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:53:16,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:16,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63363 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:51271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57724 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:59068 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:19,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:19,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:19,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:53:19,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:53:19,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:19,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63364 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:53:20,134 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:53:20,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:53:20,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 02:53:20,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-02 02:53:20,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:53:20,409 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:59069 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:21,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:21,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:21,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:53:21,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:53:21,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:21,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13302 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:24,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:24,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:24,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:53:24,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:53:24,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:24,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13303 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51280 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:25,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:25,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:25,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:53:25,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:53:25,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:25,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51281 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:25,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:25,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:25,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:53:25,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:53:25,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:25,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57227 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:26,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:26,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:26,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:53:26,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:53:26,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:26,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63373 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:51288 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:29,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:29,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:29,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:53:29,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:53:29,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:29,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63374 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:30,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:30,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:30,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:53:30,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:53:30,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:30,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51289 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57231 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:30,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:30,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:30,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:53:30,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:53:30,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:30,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57232 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13312 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:51296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:34,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:34,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:34,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:53:34,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:53:34,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:34,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13313 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63381 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57236 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:34,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:34,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:34,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 02:53:34,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 02:53:34,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:34,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51297 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:53:34,949 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:53:34,964 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=37.940 +2025-10-02 02:53:35,042 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.940 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 02:53:35,042 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:53:35,043 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 39.112.59.88:59079 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:35,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:35,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:35,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:53:35,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:53:35,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:35,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57237 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:35,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:35,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:35,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:53:35,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:53:35,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:35,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63382 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51304 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:39,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:39,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:39,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:53:39,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:53:39,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:39,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51305 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65056 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:40,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:40,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:40,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 02:53:40,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 02:53:40,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:40,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65057 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:41,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:41,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:41,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:53:41,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:53:41,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:41,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57242 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:42,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:42,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:42,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:53:43,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:53:43,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:43,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64795 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:44,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:44,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:44,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:53:44,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:53:44,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:44,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64796 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57246 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:45,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:45,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:45,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:53:46,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:53:46,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:46,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57247 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13322 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:46,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:46,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:46,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:53:46,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:53:46,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:46,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13323 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65067 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:47,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:47,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:47,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:53:47,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:53:47,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:47,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65068 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59958 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:51317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:49,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:49,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:49,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:53:49,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:53:49,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:49,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57252 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:50,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:50,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:50,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:53:50,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:53:50,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:50,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57253 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64800 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:50,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:50,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:50,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:53:50,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:53:50,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:50,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64801 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51347 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:56,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:56,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:56,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:53:57,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:53:57,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:57,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51348 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:57,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:57,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:57,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:53:58,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:53:58,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:58,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64806 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:53:58,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:53:58,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:53:58,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:53:58,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:53:58,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:53:58,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64807 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65076 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:00,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:00,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:00,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:54:00,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:54:00,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:00,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65077 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51391 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:02,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:02,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:02,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:54:02,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:54:02,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:02,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51392 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62958 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:04,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:04,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:04,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:54:04,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:54:04,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:04,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62959 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:07,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:07,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:07,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:54:07,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:54:07,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:07,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64817 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:08,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:08,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:08,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:54:08,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:54:08,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:08,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64818 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:10,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:10,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:10,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 02:54:10,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 02:54:10,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:10,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13365 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:12,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:12,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:12,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:54:12,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:54:12,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:12,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13366 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:12,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:12,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:12,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:54:12,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:54:12,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:12,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59100 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62978 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:13,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:13,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:13,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:54:13,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:54:13,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:13,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62979 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51421 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:15,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:15,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:15,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:54:15,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:54:15,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:15,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51422 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59104 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:65095 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:54:17,346 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:54:17,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:54:17,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-02 02:54:17,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.257s (avg: 0.129s/image) +2025-10-02 02:54:17,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.129s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:54:17,605 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:59105 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65096 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62986 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:18,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:18,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:18,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:54:18,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:54:18,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:18,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62987 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46862 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:64825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:19,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:19,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:19,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:54:20,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:54:20,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:20,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:62997 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:23,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:23,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:23,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:54:23,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:54:23,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:23,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:62998 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56659 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:24,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:24,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:24,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:54:24,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:54:24,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:24,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56660 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:25,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:25,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:25,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:54:25,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:54:25,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:25,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59112 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:25,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:25,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:25,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:54:26,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:54:26,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:26,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59113 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51467 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:27,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:27,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:28,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:54:28,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:54:28,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:28,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51468 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64833 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13376 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:28,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:28,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:28,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:54:28,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:54:28,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:28,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:29,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:29,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:29,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 02:54:29,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 02:54:29,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:29,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65117 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59121 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:32,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:32,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:32,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:54:33,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:54:33,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:33,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65118 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:33,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:33,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:33,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:54:33,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:54:33,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:33,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59122 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64838 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:35,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:35,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:35,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:54:35,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:54:35,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:35,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64839 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63023 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:36,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:36,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:36,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:54:37,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:54:37,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:37,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63024 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59126 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:39,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:39,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:39,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:54:39,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:54:39,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:39,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59127 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13387 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57282 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:39,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:39,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:39,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:54:39,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:54:39,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:39,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13388 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:40,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:40,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:40,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:54:40,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:54:40,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:40,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57283 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:40,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:40,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:40,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:54:41,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:54:41,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:41,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63421 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65129 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:42,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:42,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:42,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:54:42,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:54:42,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:42,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65130 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:43,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:43,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:43,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:54:43,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:54:43,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:43,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59131 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:44,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:44,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:44,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:54:44,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:54:44,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:44,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59132 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13392 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:45,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:45,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:45,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:54:45,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:54:45,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:45,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13393 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57287 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64847 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:46,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:46,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:46,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:54:46,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:54:46,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:46,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64848 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:47,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:47,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:47,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:54:47,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:54:47,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:47,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57288 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63427 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:47,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:47,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:47,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:54:47,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:54:47,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:47,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63428 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63046 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:48,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:48,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:48,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:54:48,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:54:48,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:48,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63047 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33634 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:60953 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:49,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:49,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:49,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:54:49,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:54:49,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:49,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60954 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:51,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:51,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:51,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:54:51,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:54:51,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:51,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65143 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13397 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63432 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:54:52,341 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:54:52,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:54:52,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 02:54:52,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 02:54:52,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:54:52,618 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63433 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13398 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51876 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57292 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63054 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64852 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:54:53,040 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:54:53,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:54:53,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-02 02:54:53,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.261s (avg: 0.131s/image) +2025-10-02 02:54:53,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.131s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:54:53,303 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:57293 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51877 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:54:53,443 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:54:53,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:54:53,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 02:54:53,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-02 02:54:53,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:54:53,718 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:64853 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63055 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60975 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64857 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:58,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:58,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:58,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:54:58,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:54:58,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:58,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60976 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:51939 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:58,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:58,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:58,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:54:58,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:54:58,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:58,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64858 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:54:58,986 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:54:58,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:54:59,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-02 02:54:59,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.261s (avg: 0.130s/image) +2025-10-02 02:54:59,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.130s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:54:59,248 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:51941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63439 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:54:59,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:54:59,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:54:59,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:54:59,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:54:59,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:54:59,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63440 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60986 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:00,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:00,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:00,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:55:01,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:55:01,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:01,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60987 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:51993 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57300 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:03,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:03,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:03,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:55:03,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:55:03,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:03,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57301 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:03,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:03,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:03,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:55:04,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:55:04,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:04,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:51994 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60991 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:04,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:04,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:04,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:55:04,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:55:04,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:04,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60992 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63444 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:05,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:05,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:05,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:55:05,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:55:05,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:05,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63445 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59149 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:06,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:06,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:06,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:55:06,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:55:06,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:06,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59150 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63083 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:07,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:07,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:07,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:55:07,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:55:07,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:07,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63084 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:60996 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:07,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:07,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:07,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:55:07,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:55:07,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:07,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:60997 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52057 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:08,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:08,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:08,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:55:08,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:55:08,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:08,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52058 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63451 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:55:09,342 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:55:09,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:55:09,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-02 02:55:09,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.309s (avg: 0.155s/image) +2025-10-02 02:55:09,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:55:09,653 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:57307 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63452 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:61010 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:10,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:10,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:10,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:55:10,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:55:10,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:10,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:10,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:10,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:10,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:55:11,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:55:11,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:11,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61011 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52122 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:12,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:12,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:12,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:55:12,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:55:12,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:12,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52125 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:13,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:13,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:13,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:55:13,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:55:13,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:13,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63456 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:14,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:14,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:14,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:55:14,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:55:14,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:14,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63457 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57311 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:61024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:15,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:15,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:15,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:55:15,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:55:15,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:15,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57312 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:16,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:16,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:16,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:55:16,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:55:16,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:16,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10288 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:61033 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:55:18,305 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:55:18,337 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=139.613 +2025-10-02 02:55:18,440 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.613 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.102s +2025-10-02 02:55:18,441 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-02 02:55:18,444 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +INFO: 118.41.33.196:10289 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:52241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:18,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:18,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:18,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:55:18,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:55:18,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:18,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61034 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44000 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:18,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:18,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:18,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:55:19,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:55:19,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:19,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52246 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59160 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:19,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:19,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:19,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.124s +2025-10-02 02:55:19,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.124s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.124s (avg: 0.124s/image) +2025-10-02 02:55:19,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.124s (avg: 0.124s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:19,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64871 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:55:19,412 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:55:19,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:55:19,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-02 02:55:19,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.257s (avg: 0.129s/image) +2025-10-02 02:55:19,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.129s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:55:19,670 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63464 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59161 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:19,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:19,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:19,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:55:19,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:55:19,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:19,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64872 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57316 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:20,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:20,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:20,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 02:55:20,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 02:55:20,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:20,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57317 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61074 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:22,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:22,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:22,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 02:55:22,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 02:55:22,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:22,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61076 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10294 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:55:23,234 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:55:23,259 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=58.931 +2025-10-02 02:55:23,342 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.931 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 02:55:23,342 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 02:55:23,342 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 118.41.33.196:10299 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:64876 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:24,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:24,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:24,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:55:24,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:55:24,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:24,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64877 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52254 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:25,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:25,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:25,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:55:25,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:55:25,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:25,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52255 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:26,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:26,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:26,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:55:26,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:55:26,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:26,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:61088 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:55:27,313 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(998, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:55:27,341 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(998, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=63.857 +2025-10-02 02:55:27,432 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.857 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 02:55:27,432 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 02:55:27,434 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 118.41.33.196:10307 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:27,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:27,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:27,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 02:55:27,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 02:55:27,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:27,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61089 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64882 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59168 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:28,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:28,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:28,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:55:28,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:55:28,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:28,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64883 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:28,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:28,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:28,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:55:28,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:55:28,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:28,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59169 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61100 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:30,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:30,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:30,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:55:30,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:55:30,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:30,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61101 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65194 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:33,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:33,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:33,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:55:33,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:55:33,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:33,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65195 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:35,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:35,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:35,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:55:35,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:55:35,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:35,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:41,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:41,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:41,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:55:41,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:55:41,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:41,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63143 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:43,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:43,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:43,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:55:43,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:55:43,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:43,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63144 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63475 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:55:43,619 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:55:43,641 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=93.612 +2025-10-02 02:55:43,726 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.612 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 02:55:43,726 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 02:55:43,727 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 61.255.207.212:63476 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:63481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:55:47,125 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:55:47,145 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=115.549 +2025-10-02 02:55:47,220 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.549 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 02:55:47,221 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 02:55:47,221 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 61.255.207.212:63482 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 221.154.208.144:63148 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:48,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:48,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:48,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:55:48,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:55:48,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:48,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63149 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45324 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:63486 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:55:50,242 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:55:50,263 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=60.403 +2025-10-02 02:55:50,340 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.403 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 02:55:50,340 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:55:50,340 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 61.255.207.212:63487 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:52279 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:51,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:51,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:51,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:55:51,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:55:51,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:51,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52280 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63153 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:52,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:52,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:52,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:55:52,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:55:52,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:52,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63154 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:52288 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:57,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:57,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:57,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:55:57,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:55:57,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:57,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63160 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63491 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:57,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:57,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:57,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:55:58,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:55:58,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:58,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52289 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:55:58,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:55:58,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:55:58,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:55:58,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:55:58,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:55:58,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63492 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:03,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:03,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:03,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:56:03,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:56:03,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:03,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63165 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52298 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:04,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:04,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:04,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:56:04,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:56:04,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:04,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52299 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63498 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:05,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:05,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:05,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:56:05,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:56:05,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:05,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63499 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:09,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:09,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:09,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:56:09,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:56:09,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:09,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52364 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:13,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:13,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:13,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:56:14,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:56:14,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:14,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52365 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:16,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:16,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:16,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:56:17,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:56:17,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:17,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57340 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:17,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:17,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:17,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:56:17,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:56:17,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:17,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38014 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:61164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:23,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:23,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:23,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:56:23,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:56:23,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:23,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61165 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63510 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:52383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:24,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:24,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:24,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:56:24,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:56:24,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:24,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63511 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:24,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:24,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:24,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:56:24,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:56:24,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:24,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52384 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:25,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:25,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:25,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:56:25,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:56:25,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:25,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57346 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:56:26,636 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:56:26,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=91.854 +2025-10-02 02:56:26,739 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.854 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 02:56:26,740 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:56:26,740 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 221.154.208.144:63177 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:52391 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63518 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:29,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:29,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:29,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:56:29,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:56:29,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:29,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52392 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:29,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:29,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:29,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:56:29,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:56:29,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:29,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63519 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61169 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57351 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:30,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:30,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:30,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:56:30,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:56:30,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:30,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61170 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:30,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:30,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:30,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 02:56:30,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 02:56:30,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:30,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57352 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63181 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:31,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:31,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:31,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:56:31,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:56:31,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:31,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63182 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52399 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:33,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:33,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:33,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:56:33,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:56:33,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:33,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52400 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65234 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:56:33,716 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:56:33,744 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=31.802 +2025-10-02 02:56:33,822 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.802 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 02:56:33,822 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 02:56:33,822 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 211.226.69.49:65235 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:63523 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:34,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:34,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:34,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:56:34,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:56:34,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:34,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63524 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:36,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:36,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:36,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:56:36,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:56:36,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:36,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61177 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52407 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63186 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:56:37,719 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:56:37,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:56:37,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 02:56:38,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 02:56:38,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:56:38,012 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:52408 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63187 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57356 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:65241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13447 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:56:38,363 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(648, 886, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:56:38,377 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(648, 886, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=35.432 +2025-10-02 02:56:38,453 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.432 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:56:38,453 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:56:38,454 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 211.226.69.49:65242 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:38,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:38,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:38,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:56:38,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:56:38,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:38,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57357 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:56:38,624 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:56:38,643 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=66.814 +2025-10-02 02:56:38,717 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.814 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 02:56:38,717 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 02:56:38,719 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 175.119.234.181:13448 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:63530 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:38,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:38,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:39,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:56:39,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:56:39,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:39,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63531 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52415 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59192 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:61181 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:56:43,253 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:56:43,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:56:43,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +2025-10-02 02:56:43,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.321s (avg: 0.161s/image) +2025-10-02 02:56:43,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:56:43,576 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:52416 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:43,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:43,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:43,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:56:43,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:56:43,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:43,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61182 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57361 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:44,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:44,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:44,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:56:44,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:56:44,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:44,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57362 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:44,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:44,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:44,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:56:44,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:56:44,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:44,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59193 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63194 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:45,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:45,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:45,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:56:45,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:56:45,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:45,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63195 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52422 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:46,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:46,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:46,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:56:46,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:56:46,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:46,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52423 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63542 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:47,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:47,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:47,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:56:47,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:56:47,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:47,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63543 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64905 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:47,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:47,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:47,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:56:47,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:56:47,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:47,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64906 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33612 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:52430 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:50,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:50,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:50,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:56:50,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:56:50,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:50,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52431 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59217 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:50,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:50,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:50,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:56:50,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:56:50,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:50,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:51,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:51,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:51,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:56:51,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:56:51,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:51,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:51,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:51,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:51,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:56:51,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:56:51,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:51,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59218 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63547 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:52,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:52,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:52,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:56:52,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:56:52,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:52,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63548 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:54,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:54,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:54,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:56:54,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:56:54,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:54,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:55,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:55,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:55,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:56:55,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:56:55,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:55,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64912 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59222 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:57,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:57,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:57,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:56:58,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:56:58,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:58,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59223 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57371 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:58,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:58,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:58,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:56:58,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:56:58,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:58,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57372 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52447 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63557 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:56:59,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:56:59,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:56:59,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:56:59,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:56:59,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:56:59,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52448 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:00,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:00,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:00,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:57:00,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:57:00,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:00,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63558 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:02,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:02,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:02,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:57:02,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:57:02,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:02,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65263 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:52455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57376 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:03,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:03,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:03,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 02:57:03,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 02:57:03,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:03,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65264 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 3 jobs. +2025-10-02 02:57:03,880 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 02:57:03,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 02:57:03,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.394s +2025-10-02 02:57:04,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.394s +INFO:app.core.worker_manager:'simple-lama' batch of 3 processed in 0.394s (avg: 0.131s/image) +2025-10-02 02:57:04,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.394s (avg: 0.131s/image) +INFO:app.core.batch_manager:Successfully processed batch of 3 jobs. +2025-10-02 02:57:04,276 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +INFO: 115.138.85.166:52456 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63563 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59227 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:04,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:04,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:04,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:57:04,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:57:04,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:04,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59228 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63569 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:06,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:06,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:06,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:57:06,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:57:06,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:06,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63570 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64921 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:52463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:09,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:09,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:09,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:57:09,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:57:09,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:09,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64922 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57382 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:57:10,635 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:57:10,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:57:10,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 02:57:10,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-02 02:57:10,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:57:10,931 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:52464 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57383 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59232 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:65278 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:11,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:11,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:11,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:57:11,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:57:11,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:11,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65279 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:11,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:11,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:11,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:57:11,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:57:11,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:11,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59233 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:12,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:12,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:12,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:57:12,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:57:12,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:12,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63575 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:15,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:15,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:15,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:57:15,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:57:15,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:15,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52514 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:15,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:15,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:15,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:57:16,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:57:16,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:16,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63582 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:17,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:17,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:17,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:57:17,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:57:17,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:17,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63583 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64926 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57387 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:57:18,165 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:57:18,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:57:18,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 02:57:18,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 02:57:18,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:57:18,442 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:57388 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64927 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50812 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:63220 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:20,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:20,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:20,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:57:21,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:57:21,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:21,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63221 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61230 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59237 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:21,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:21,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:21,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:57:21,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:57:21,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:21,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61231 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:57:22,023 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:57:22,045 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=93.294 +2025-10-02 02:57:22,123 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.294 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:57:22,123 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 02:57:22,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 39.112.59.88:59238 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:65289 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:22,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:22,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:22,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:57:22,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:57:22,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:22,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65293 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:24,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:24,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:24,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:57:24,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:57:24,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:24,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63589 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63231 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64931 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:57:24,922 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:57:24,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:57:24,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 02:57:25,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 02:57:25,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:57:25,220 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:63232 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13475 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:25,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:25,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:25,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:57:25,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:57:25,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:25,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64932 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61237 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59242 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57392 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:57:27,672 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:57:27,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:57:27,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 02:57:27,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 02:57:27,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:57:27,960 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.199.161.49:61238 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59243 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:28,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:28,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:28,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:57:28,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:57:28,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:28,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57393 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63595 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:29,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:29,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:29,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:57:30,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:57:30,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:30,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63596 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63238 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:30,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:30,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:30,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:57:31,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:57:31,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:31,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63239 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:31,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:31,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:31,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:57:31,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:57:31,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:31,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65300 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:31,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:31,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:31,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:57:32,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:57:32,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:32,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65301 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61243 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:32,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:32,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:32,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:57:32,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:57:32,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:32,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61244 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63243 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:33,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:33,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:33,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 02:57:33,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 02:57:33,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:33,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63244 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64936 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63600 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:57:34,857 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:57:34,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:57:34,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 02:57:35,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-02 02:57:35,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:57:35,125 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63601 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64937 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63248 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:35,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:35,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:35,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:57:35,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:57:35,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:35,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63249 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57397 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:36,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:36,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:36,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 02:57:37,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 02:57:37,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:37,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57398 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:37,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:37,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:37,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:57:37,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:57:37,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:37,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63607 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:38,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:38,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:38,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 02:57:39,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 02:57:39,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:39,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63608 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:39,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:39,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:39,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 02:57:40,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 02:57:40,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:40,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:40,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:40,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:40,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:57:40,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:57:40,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:40,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:43,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:43,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:43,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:57:43,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:57:43,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:43,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63613 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63272 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:44,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:44,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:44,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:57:44,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:57:44,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:44,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65316 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63619 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:46,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:46,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:46,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:57:46,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:57:46,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:46,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65317 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:47,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:47,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:47,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:57:47,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:57:47,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:47,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63620 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:47,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:47,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:47,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 02:57:47,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 02:57:47,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:47,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39356 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:61277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63285 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:57:52,492 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:57:52,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:57:52,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-02 02:57:52,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-02 02:57:52,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:57:52,763 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:63286 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:53,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:53,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:53,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:57:53,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:57:53,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:53,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63625 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:54,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:54,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:54,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:57:54,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:57:54,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:54,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65325 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63290 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:56,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:56,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:56,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:57:57,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:57:57,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:57,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63291 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:57,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:57,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:57,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:57:57,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:57:57,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:57,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61285 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:58,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:58,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:58,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:57:58,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:57:58,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:58,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61286 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63631 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:57:59,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:57:59,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:57:59,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:57:59,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:57:59,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:57:59,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63632 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63295 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:00,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:00,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:00,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:58:00,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:58:00,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:00,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63296 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:01,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:01,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:01,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:58:01,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:58:01,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:01,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59265 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57418 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:02,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:02,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:02,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:58:02,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:58:02,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:02,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57419 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63300 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63639 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59270 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:06,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:06,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:06,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 02:58:06,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 02:58:06,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:06,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63301 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61302 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:52638 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:65341 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:10,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:10,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:10,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-02 02:58:10,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-02 02:58:10,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:10,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63640 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:11,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:11,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:11,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 02:58:11,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 02:58:11,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:11,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57424 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 3 jobs. +2025-10-02 02:58:12,129 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 02:58:12,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 02:58:12,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.402s +2025-10-02 02:58:12,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.402s +INFO:app.core.worker_manager:'simple-lama' batch of 3 processed in 0.402s (avg: 0.134s/image) +2025-10-02 02:58:12,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.402s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 3 jobs. +2025-10-02 02:58:12,532 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +INFO: 115.138.85.166:52641 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65342 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61303 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:12,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:12,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:12,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:58:13,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:58:13,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:13,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59271 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:16,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:16,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:16,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:58:16,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:58:16,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:16,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61311 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63646 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:17,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:17,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:17,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 02:58:17,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 02:58:17,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:17,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:17,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:17,403 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:17,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:58:17,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:58:17,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:17,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63647 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45512 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.199.161.49:61331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:65354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:21,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:21,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:21,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 02:58:21,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 02:58:21,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:21,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61334 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:22,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:22,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:22,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:58:22,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:58:22,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:22,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10328 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63655 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:58:23,332 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:58:23,354 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=123.244 +2025-10-02 02:58:23,434 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.244 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 02:58:23,434 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 02:58:23,434 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 118.41.33.196:10329 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:23,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:23,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:23,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 02:58:23,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 02:58:23,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:23,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63656 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57429 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:26,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:26,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:26,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 02:58:26,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 02:58:26,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:26,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57430 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:10333 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:58:27,982 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(804, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:58:28,009 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(804, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=89.378 +2025-10-02 02:58:28,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.378 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 02:58:28,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 02:58:28,086 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 118.41.33.196:10334 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:59284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:29,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:29,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:29,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:58:30,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:58:30,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:30,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57435 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:10339 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:31,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:31,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:31,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:58:31,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:58:31,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:31,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57436 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:58:31,715 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(643, 823, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:58:31,730 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(643, 823, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=92.701 +2025-10-02 02:58:31,796 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.701 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.065s +2025-10-02 02:58:31,796 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.065s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.066s +2025-10-02 02:58:31,796 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.066s +INFO: 118.41.33.196:10340 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:57443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:37,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:37,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:37,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 02:58:37,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 02:58:37,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:37,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57444 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57452 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:41,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:41,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:41,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:58:41,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:58:41,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:41,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57453 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63341 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13573 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:42,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:42,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:42,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:58:42,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:58:42,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:42,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63342 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:42,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:42,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:42,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 02:58:43,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 02:58:43,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:43,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13574 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59301 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:44,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:44,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:44,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 02:58:44,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 02:58:44,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:44,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59302 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52771 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:65376 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:61349 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:58:44,900 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:58:44,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:58:44,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-02 02:58:45,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-02 02:58:45,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:58:45,164 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:52772 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:45,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:45,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:45,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:58:45,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:58:45,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:45,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61350 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63348 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63676 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57461 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:48,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:48,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:48,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 02:58:48,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 02:58:48,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:48,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63349 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:48,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:48,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:48,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 02:58:48,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 02:58:48,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:48,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63677 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49350 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:58:49,056 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:58:49,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:58:49,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 02:58:49,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-02 02:58:49,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:58:49,334 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:57462 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:49,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:49,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:49,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 02:58:49,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 02:58:49,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:49,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:50,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:50,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:50,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:58:50,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:58:50,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:50,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64944 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:58:51,006 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:58:51,031 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=81.457 +2025-10-02 02:58:51,107 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.457 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 02:58:51,107 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 02:58:51,107 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 220.77.167.192:64945 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:57466 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:51,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:51,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:51,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:58:51,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:58:51,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:51,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57467 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52781 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:52,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:52,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:52,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:58:52,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:58:52,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:52,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61359 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59313 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57471 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:54,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:54,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:54,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:58:54,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:58:54,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:54,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61360 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 02:58:54,471 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 02:58:54,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 02:58:54,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 02:58:54,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-02 02:58:54,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 02:58:54,750 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:59314 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57472 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63353 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:55,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:55,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:55,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 02:58:55,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 02:58:55,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:55,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63354 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:58,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:58,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:58,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 02:58:58,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 02:58:58,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:58,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63684 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57480 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:58,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:58,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:58,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:58:58,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:58:58,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:58,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57481 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52867 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:58:59,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:58:59,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:58:59,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 02:58:59,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 02:58:59,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:58:59,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63359 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:00,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:00,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:00,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:59:00,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:59:00,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:00,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:00,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:00,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:00,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 02:59:00,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 02:59:00,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:00,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59320 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:00,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:00,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:00,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:59:00,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:59:00,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:00,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63360 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.199.161.49:61683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:02,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:02,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:02,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:59:02,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:59:02,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:02,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:61688 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52908 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:03,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:03,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:04,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:59:04,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:59:04,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:04,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52909 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:04,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:04,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:04,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:59:04,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:59:04,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:04,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:05,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:05,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:05,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 02:59:05,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 02:59:05,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:05,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57489 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57494 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:07,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:07,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:07,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:59:08,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:59:08,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:08,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57495 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:10359 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57500 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.199.161.49:63552 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63695 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:13,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:13,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:13,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 02:59:13,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 02:59:13,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:13,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:14,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:14,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:14,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 02:59:14,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 02:59:14,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:14,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57501 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:14,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:14,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:14,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:59:15,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:59:15,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:15,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.199.161.49:63559 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:15,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:15,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:15,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 02:59:16,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 02:59:16,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:16,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63696 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:17,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:17,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:17,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:59:17,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:59:17,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:17,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10360 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47478 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:57508 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:19,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:19,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:19,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 02:59:19,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 02:59:19,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:19,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:19,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:19,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:19,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:59:19,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:59:19,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:19,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57509 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:22,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:22,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:22,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:59:22,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:59:22,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:22,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64963 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63368 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:23,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:23,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:23,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:59:24,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:59:24,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:24,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57514 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 02:59:24,042 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 02:59:24,065 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=40.811 +2025-10-02 02:59:24,145 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.811 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 02:59:24,146 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 02:59:24,146 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 221.154.208.144:63369 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:10367 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:52935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:28,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:28,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:28,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:59:28,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:59:28,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:28,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:10368 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57518 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:28,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:28,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:28,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:59:28,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:59:28,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:28,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:29,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:29,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:29,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 02:59:29,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 02:59:29,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:29,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57519 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:31,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:31,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:31,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 02:59:31,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 02:59:31,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:31,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64968 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:52942 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:32,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:32,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:32,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 02:59:32,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 02:59:32,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:32,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:52944 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57523 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:34,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:34,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:34,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 02:59:34,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 02:59:34,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:34,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57524 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53014 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:35,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:35,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:35,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 02:59:36,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 02:59:36,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:36,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53016 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57528 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:38,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:38,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:38,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 02:59:38,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 02:59:38,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:38,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57529 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53092 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:39,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:39,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:39,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:59:40,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:59:40,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:40,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53094 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57533 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:42,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:42,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:42,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 02:59:42,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 02:59:42,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:42,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57534 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53154 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:43,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:43,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:43,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 02:59:43,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 02:59:43,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:43,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57538 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:45,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:45,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:45,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 02:59:46,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 02:59:46,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:46,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57539 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:47,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:47,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:47,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 02:59:47,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 02:59:47,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:47,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48300 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:57544 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:50,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:50,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:50,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 02:59:50,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 02:59:50,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:50,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57545 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57549 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:52,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:52,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:52,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 02:59:52,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 02:59:52,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:52,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57550 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:54,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:54,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:54,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 02:59:54,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 02:59:54,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:54,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53362 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 02:59:57,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 02:59:57,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 02:59:57,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 02:59:57,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 02:59:57,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 02:59:57,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53423 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57563 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:00,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:00,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:00,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:00:00,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:00:00,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:00,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57564 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63426 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:03,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:03,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:03,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:00:03,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:00:03,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:03,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63427 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53522 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57571 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:05,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:05,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:05,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:00:05,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:00:05,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:05,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53524 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:05,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:05,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:05,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 03:00:05,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 03:00:05,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:05,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57572 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53570 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:08,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:08,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:08,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:00:09,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:00:09,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:09,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53572 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64976 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:11,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:11,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:11,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:00:11,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:00:11,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:11,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64977 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:11,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:11,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:11,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:00:12,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:00:12,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:12,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57580 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:13,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:13,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:13,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:00:13,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:00:13,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:13,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57581 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53704 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:65456 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:13,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:13,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:13,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:00:13,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:00:13,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:13,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53705 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53320 - "GET /health HTTP/1.1" 200 OK +INFO: 118.41.33.196:53322 - "GET /health HTTP/1.1" 200 OK +INFO: 118.41.33.196:53323 - "GET /health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:15,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:15,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:15,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:00:15,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:00:15,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:15,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:15,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:15,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:16,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:00:16,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:00:16,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:16,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63444 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53711 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:64981 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:17,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:17,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:17,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:00:18,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:00:18,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:18,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:18,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:18,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:18,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:00:18,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:00:18,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:18,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64982 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39852 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:63465 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:20,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:20,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:20,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:00:20,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:00:20,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:20,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63466 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53733 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:22,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:22,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:22,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:00:22,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:00:22,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:22,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53734 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63717 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:00:22,502 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:00:22,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:00:22,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 03:00:22,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 03:00:22,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:00:22,783 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63718 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59339 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57601 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:23,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:23,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:23,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:00:23,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:00:23,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:23,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57602 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65469 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:24,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:24,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:24,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:00:24,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:00:24,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:24,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65470 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64986 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:25,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:25,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:25,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:00:25,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:00:25,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:25,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64987 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53741 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57606 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:00:26,018 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:00:26,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:00:26,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-02 03:00:26,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-02 03:00:26,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:00:26,293 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:53742 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57607 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59343 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:27,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:27,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:27,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:00:27,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:00:27,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:27,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59344 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63724 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:30,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:30,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:30,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:00:30,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:00:30,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:30,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63725 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59348 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:32,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:32,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:32,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:00:32,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:00:32,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:32,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59349 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:32,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:32,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:32,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:00:33,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:00:33,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:33,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57613 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64991 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:33,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:33,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:33,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:00:33,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:00:33,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:33,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64992 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65477 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:34,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:34,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:34,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:00:34,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:00:34,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:34,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65478 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:36,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:36,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:36,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:00:36,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:00:36,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:36,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63732 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59353 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:36,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:36,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:37,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:00:37,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:00:37,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:37,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59354 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:64996 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:39,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:39,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:39,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:00:39,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:00:39,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:39,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:64997 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:41,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:41,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:41,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:00:41,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:00:41,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:41,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63738 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:42,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:42,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:42,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:00:42,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:00:42,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:42,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63739 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:00:43,025 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:00:43,047 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=91.316 +2025-10-02 03:00:43,124 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.316 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 03:00:43,124 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 03:00:43,125 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 175.119.234.181:13663 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:65002 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:65489 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:45,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:45,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:45,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:00:45,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:00:45,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:45,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65003 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:45,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:45,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:45,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:00:46,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:00:46,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:46,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65490 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63745 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:48,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:48,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:48,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 03:00:49,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 03:00:49,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:49,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 127.0.0.1:56772 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:63746 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65007 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:52,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:52,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:52,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:00:52,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:00:52,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:52,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65008 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:00:54,485 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:00:54,518 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=82.827 +2025-10-02 03:00:54,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.827 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 03:00:54,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 03:00:54,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 39.112.59.88:59384 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:65497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63752 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:00:55,686 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:00:55,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:00:55,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 03:00:55,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +2025-10-02 03:00:55,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:00:55,993 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:65498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63753 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:00:58,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:00:58,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:00:58,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:00:58,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:00:58,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:00:58,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:02,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:02,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:02,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:01:02,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:01:02,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:02,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:05,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:05,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:05,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:01:05,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:01:05,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:05,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:07,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:07,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:07,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:01:07,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:01:07,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:07,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63573 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:09,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:09,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:09,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:01:09,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:01:09,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:09,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63574 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65022 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:11,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:11,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:11,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:01:11,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:01:11,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:11,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65023 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59405 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63578 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:13,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:13,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:14,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:01:14,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:01:14,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:14,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63579 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13696 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:16,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:16,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:16,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:01:16,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:01:16,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:16,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13697 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65027 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:18,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:18,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:18,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:01:18,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:01:18,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:18,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65028 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:19,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:19,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:19,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:01:19,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:01:19,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:19,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59406 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32812 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:65032 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:24,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:24,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:24,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:01:24,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:01:24,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:24,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65033 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:25,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:25,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:25,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:01:25,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:01:25,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:25,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63589 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13710 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:28,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:28,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:28,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 03:01:28,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 03:01:28,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:28,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65038 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:31,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:31,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:31,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:01:31,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:01:31,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:31,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65039 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53480 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:33,071 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:33,103 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=146.745 +2025-10-02 03:01:33,197 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.745 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 03:01:33,197 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 03:01:33,197 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 118.41.33.196:53481 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:65043 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:36,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:36,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:36,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:01:36,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:01:36,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:36,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:37,899 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:37,925 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=81.379 +2025-10-02 03:01:38,002 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.379 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 03:01:38,003 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 03:01:38,003 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 61.255.207.212:63774 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:53514 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:39,265 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:39,299 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=175.558 +2025-10-02 03:01:39,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=175.558 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 03:01:39,379 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 03:01:39,379 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 118.41.33.196:53515 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:63778 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59428 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:42,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:42,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:43,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 03:01:43,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 03:01:43,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:43,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59430 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:43,131 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:43,150 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=111.664 +2025-10-02 03:01:43,228 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.664 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 03:01:43,228 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 03:01:43,228 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 61.255.207.212:63779 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:53520 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65048 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:44,231 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:44,263 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=97.574 +2025-10-02 03:01:44,337 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.574 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 03:01:44,338 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 03:01:44,338 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 118.41.33.196:53521 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:57663 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:44,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:44,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:44,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:01:44,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:01:44,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:44,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65049 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:01:45,066 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:01:45,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:01:45,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 03:01:45,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 03:01:45,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:01:45,344 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:57664 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13726 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63783 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:47,837 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:47,863 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=144.085 +2025-10-02 03:01:47,945 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.085 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 03:01:47,945 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 03:01:47,945 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 61.255.207.212:63784 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:59437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:48,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:48,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:48,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:01:48,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:01:48,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:48,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45734 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:63678 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:51,858 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:51,882 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=69.392 +2025-10-02 03:01:51,958 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.392 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 03:01:51,959 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 03:01:51,959 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 221.154.208.144:63679 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:53937 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:53,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:53,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:53,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:01:53,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:01:53,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:53,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53938 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57675 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59448 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:53,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:53,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:53,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:01:54,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:01:54,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:54,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57676 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65533 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:54,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:54,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:54,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 03:01:54,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 03:01:54,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:54,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59449 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:01:54,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:01:54,910 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=62.373 +2025-10-02 03:01:55,000 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.373 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 03:01:55,001 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 03:01:55,002 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 211.226.69.49:49152 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:13737 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63788 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:56,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:56,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:56,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 03:01:56,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 03:01:56,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:56,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13738 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:57,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:57,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:57,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:01:57,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:01:57,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:57,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63789 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57680 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:58,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:58,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:58,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 03:01:58,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 03:01:58,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:58,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57681 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:01:59,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:01:59,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:01:59,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:01:59,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:01:59,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:01:59,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59456 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53947 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:49158 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:00,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:00,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:00,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:02:00,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:02:00,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:00,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53948 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:02:00,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:02:00,637 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=35.297 +2025-10-02 03:02:00,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.297 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.096s +2025-10-02 03:02:00,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 03:02:00,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +INFO: 211.226.69.49:49159 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:53580 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:01,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:01,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:01,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:02:01,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:02:01,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:01,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:53581 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:02,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:02,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:02,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:02:03,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:02:03,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:03,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57691 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:04,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:04,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:04,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:02:04,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:02:04,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:04,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57692 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63793 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:05,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:05,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:05,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:02:05,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:02:05,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:05,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63794 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:53961 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:08,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:08,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:08,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:02:08,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:02:08,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:08,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:53962 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53593 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:08,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:08,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:08,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 03:02:08,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 03:02:08,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:08,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:53598 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56708 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:02:09,248 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:02:09,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:02:09,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 03:02:09,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 03:02:09,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:02:09,534 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:59464 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56709 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57699 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:12,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:12,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:12,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:02:12,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:02:12,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:12,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57700 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59468 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:14,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:14,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:14,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:02:14,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:02:14,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:14,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59469 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57704 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:15,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:15,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:15,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:02:15,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:02:15,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:15,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57705 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13763 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:16,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:16,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:16,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:02:16,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:02:16,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:16,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13764 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53648 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:17,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:17,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:17,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:02:17,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:02:17,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:17,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:53649 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39188 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:65059 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:21,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:21,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:21,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:02:22,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:02:22,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:22,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65060 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53681 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:02:22,432 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:02:22,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:02:22,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 03:02:22,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 03:02:22,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:02:22,724 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:53682 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:02:23,511 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:02:23,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:02:23,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 03:02:23,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-02 03:02:23,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:02:23,789 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:54042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:54048 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:26,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:26,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:26,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:02:26,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:02:26,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:26,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54049 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:26,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:26,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:26,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-02 03:02:26,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-02 03:02:26,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:26,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:27,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:27,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:27,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:02:27,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:02:27,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:27,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53813 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:28,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:28,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:28,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:02:28,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:02:28,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:28,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:53814 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63802 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57724 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:29,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:29,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:29,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.126s +2025-10-02 03:02:29,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.126s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.126s (avg: 0.126s/image) +2025-10-02 03:02:29,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.126s (avg: 0.126s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:29,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63803 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:29,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:29,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:29,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:02:29,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:02:29,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:29,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57725 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:53838 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:33,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:33,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:33,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:02:33,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:02:33,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:33,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:53839 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63807 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63734 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:34,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:34,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:34,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:02:34,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:02:34,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:34,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63808 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:02:34,679 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:02:34,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:02:34,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 03:02:34,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 03:02:34,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:02:34,974 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:59484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63735 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:35,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:35,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:35,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 03:02:35,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 03:02:35,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:35,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57729 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:36,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:36,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:36,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:02:36,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:02:36,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:36,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57730 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53851 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:39,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:39,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:39,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 03:02:39,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 03:02:39,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:39,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:53852 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63812 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63743 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:54070 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:02:39,718 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:02:39,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:02:39,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 03:02:39,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 03:02:39,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:02:39,996 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63813 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63744 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:40,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:40,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:40,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:02:40,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:02:40,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:40,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54071 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59489 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:42,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:42,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:42,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 03:02:42,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 03:02:42,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:42,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59490 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63751 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:43,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:43,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:43,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:02:43,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:02:43,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:43,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63752 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57737 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:53860 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:54078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:49207 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63817 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:02:45,626 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:02:45,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:02:45,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-02 03:02:45,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +2025-10-02 03:02:45,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:02:45,939 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:54079 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53863 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:46,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:46,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:46,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:02:46,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:02:46,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:46,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57738 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:46,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:46,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:46,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 03:02:46,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 03:02:46,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:46,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63818 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:47,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:47,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:48,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 03:02:48,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 03:02:48,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:48,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49208 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63757 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:48,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:48,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:48,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:02:48,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:02:48,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:48,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63758 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53196 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:54086 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:50,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:50,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:50,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:02:50,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:02:50,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:50,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54087 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:50,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:50,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:50,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 03:02:51,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 03:02:51,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:51,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:52,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:52,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:52,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:02:52,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:02:52,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:52,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57743 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63762 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:52,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:52,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:52,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:02:52,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:02:52,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:52,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63763 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49215 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63827 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:53870 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:56,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:56,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:56,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-02 03:02:56,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-02 03:02:56,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:56,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63828 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:56,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:56,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:56,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:02:57,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:02:57,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:57,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:53871 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:57,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:57,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:58,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:02:58,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:02:58,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:58,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49216 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54101 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:58,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:58,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:58,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:02:58,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:02:58,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:58,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54102 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63768 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:02:59,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:02:59,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:02:59,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:02:59,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:02:59,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:02:59,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63769 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:00,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:00,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:00,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:03:00,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:03:00,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:00,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:02,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:02,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:02,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:03:02,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:03:02,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:02,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63834 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:04,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:04,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:04,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:03:04,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:03:04,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:04,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63835 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63782 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:06,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:06,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:06,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:03:06,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:03:06,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:06,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63783 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49227 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:53895 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:03:07,411 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:03:07,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:03:07,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +2025-10-02 03:03:07,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.319s (avg: 0.160s/image) +2025-10-02 03:03:07,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.319s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:03:07,731 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:49228 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53896 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:11,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:11,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:11,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 03:03:11,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 03:03:11,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:11,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63790 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:49240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63846 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:16,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:16,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:16,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:03:16,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:03:16,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:16,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63791 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53905 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:18,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:18,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:18,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 03:03:18,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 03:03:18,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:18,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:53906 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:18,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:18,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:18,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:03:18,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:03:18,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:18,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63847 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50126 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 221.154.208.144:63796 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:03:20,497 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:03:20,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:03:20,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 03:03:20,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 03:03:20,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:03:20,802 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:63797 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65076 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:23,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:23,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:23,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:03:23,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:03:23,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:23,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65077 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53926 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:24,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:24,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:24,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:03:24,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:03:24,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:24,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:53927 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:03:25,882 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:03:25,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:03:25,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 03:03:26,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-02 03:03:26,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:03:26,165 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:56719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13786 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:26,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:26,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:26,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:03:26,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:03:26,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:26,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13787 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53933 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:29,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:29,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:29,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:03:29,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:03:29,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:29,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:53934 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63807 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65081 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:33,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:33,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:33,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:03:33,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:03:33,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:33,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63808 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:53998 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:33,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:33,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:33,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:03:34,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:03:34,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:34,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:34,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:34,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:34,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 03:03:34,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 03:03:34,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:34,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54002 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:34,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:34,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:34,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:03:34,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:03:34,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:34,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65082 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:49257 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:38,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:38,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:38,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:03:38,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:03:38,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:38,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63816 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:54073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:38,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:38,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:38,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 03:03:38,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 03:03:38,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:38,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49258 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13800 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:03:38,788 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:03:38,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:03:38,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.252s +2025-10-02 03:03:39,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.252s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.252s (avg: 0.126s/image) +2025-10-02 03:03:39,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.252s (avg: 0.126s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:03:39,041 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 118.41.33.196:54074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63817 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:39,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:39,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:39,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:03:39,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:03:39,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:39,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13801 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57765 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:39,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:39,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:39,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 03:03:39,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 03:03:39,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:39,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57766 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:54092 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:41,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:41,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:41,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:03:41,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:03:41,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:41,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54097 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65088 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:44,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:44,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:44,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:03:44,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:03:44,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:44,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65089 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63831 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63869 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:44,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:44,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:44,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:03:44,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:03:44,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:44,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63832 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:44,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:44,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:44,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:03:45,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:03:45,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:45,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63870 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57770 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:45,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:45,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:46,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:03:46,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:03:46,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:46,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57771 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:46,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:46,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:46,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:03:46,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:03:46,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:46,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49273 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:54148 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:48,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:48,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:48,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 03:03:48,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 03:03:48,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:48,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49274 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:49,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:49,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:49,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:03:49,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:03:49,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:49,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54149 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53068 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:63876 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:51,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:51,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:51,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:03:51,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:03:51,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:51,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63877 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63840 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:51,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:51,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:51,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:03:52,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:03:52,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:52,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63841 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57776 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:52,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:52,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:52,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:03:52,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:03:52,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:52,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:52,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:52,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:52,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:03:52,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:03:52,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:52,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57777 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65093 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:54,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:54,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:54,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:03:54,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:03:54,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:54,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:54,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:54,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:54,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:03:55,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:03:55,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:55,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65094 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 221.154.208.144:63846 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:55,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:55,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:55,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:03:55,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:03:55,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:55,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 221.154.208.144:63847 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57781 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:57,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:57,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:57,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:03:57,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:03:57,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:57,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49282 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:54223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 221.154.208.144:63851 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:03:59,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:03:59,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:03:59,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:03:59,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:03:59,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:03:59,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49283 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13833 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:03:59,828 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:03:59,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:03:59,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 03:04:00,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 03:04:00,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:04:00,112 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 221.154.208.144:63852 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54232 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:00,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:00,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:00,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 03:04:00,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 03:04:00,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:00,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63886 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:00,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:00,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:00,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:04:00,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:04:00,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:00,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63887 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57786 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:02,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:02,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:02,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:04:02,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:04:02,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:02,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57787 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:54217 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:04,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:04,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:04,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:04:05,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:04:05,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:05,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54218 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63891 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:05,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:05,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:05,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:04:06,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:04:06,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:06,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63892 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59525 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:06,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:06,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:06,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:04:06,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:04:06,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:06,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59526 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57791 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:07,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:07,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:07,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:04:07,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:04:07,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:07,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57792 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:54225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63898 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:10,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:10,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:10,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 03:04:11,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 03:04:11,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:11,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54226 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57797 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:11,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:11,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:11,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:04:11,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:04:11,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:11,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63899 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:12,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:12,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:12,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:04:12,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:04:12,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:12,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57798 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59538 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:54381 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:13,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:13,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:13,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:04:13,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:04:13,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:13,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54382 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:13,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:13,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:13,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 03:04:13,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 03:04:13,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:13,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59539 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63903 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:54239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57802 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:04:16,388 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:04:16,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:04:16,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-02 03:04:16,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-02 03:04:16,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:04:16,697 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63904 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:54240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54388 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:16,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:16,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:16,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 03:04:17,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 03:04:17,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:17,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57803 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:17,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:17,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:17,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 03:04:17,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 03:04:17,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:17,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54390 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:18,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:18,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:18,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:04:19,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:04:19,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:19,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38710 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:59549 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:54396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:20,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:20,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:20,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:04:20,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:04:20,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:20,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59551 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:20,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:20,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:21,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:04:21,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:04:21,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:21,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57807 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:54247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:21,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:21,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:21,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:04:21,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:04:21,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:21,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57808 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:21,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:21,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:21,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:04:22,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:04:22,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:22,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54404 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:24,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:24,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:24,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:04:25,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:04:25,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:25,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54405 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57812 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:54256 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:26,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:26,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:26,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:04:26,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:04:26,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:26,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57813 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:26,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:26,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:26,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:04:26,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:04:26,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:26,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54257 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63915 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59561 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:27,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:27,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:27,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 03:04:27,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 03:04:27,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:27,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59562 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:28,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:28,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:28,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:04:28,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:04:28,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:28,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63916 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13863 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:29,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:29,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:29,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:04:29,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:04:29,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:29,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13864 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:54288 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59568 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:32,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:32,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:32,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 03:04:33,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 03:04:33,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:33,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54289 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13868 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:04:33,446 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:04:33,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:04:33,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 03:04:33,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 03:04:33,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:04:33,722 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:59569 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13869 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:54320 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:38,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:38,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:38,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:04:38,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:04:38,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:38,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54321 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13873 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:41,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:41,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:41,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:04:41,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:04:41,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:41,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13874 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:04:42,315 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:04:42,338 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=65.485 +2025-10-02 03:04:42,414 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.485 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 03:04:42,414 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 03:04:42,415 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 39.112.59.88:59575 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 118.41.33.196:54354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:43,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:43,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:43,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 03:04:44,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 03:04:44,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:44,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56728 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:44,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:44,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:44,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:04:44,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:04:44,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:44,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56729 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:45,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:45,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:45,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:04:46,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:04:46,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:46,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13878 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:47,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:47,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:48,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:04:48,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:04:48,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:48,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13879 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:48,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:48,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:48,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:04:48,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:04:48,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:48,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40722 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:49,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:49,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:49,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 03:04:49,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 03:04:49,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:49,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:53,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:53,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:53,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:04:53,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:04:53,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:53,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57837 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63951 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:54,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:54,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:54,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:04:54,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:04:54,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:54,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63952 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59585 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:58,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:58,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:58,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:04:58,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:04:58,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:58,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59586 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:04:59,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:04:59,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:04:59,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:04:59,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:04:59,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:04:59,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57844 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:05,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:05,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:05,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 03:05:05,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 03:05:05,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:05,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57845 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63964 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:06,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:06,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:06,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 03:05:06,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 03:05:06,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:06,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63965 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:05:10,171 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(801, 801, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:05:10,198 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 801, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=50.153 +2025-10-02 03:05:10,283 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.153 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 03:05:10,283 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 03:05:10,284 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 220.77.167.192:65100 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:57850 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:11,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:11,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:11,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 03:05:11,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 03:05:11,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:11,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57851 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63969 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:12,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:12,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:12,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:05:12,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:05:12,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:12,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63970 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:54949 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:13,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:13,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:13,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:05:13,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:05:13,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:13,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:54955 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55007 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:17,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:17,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:17,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:05:18,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:05:18,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:18,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55012 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39560 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:19,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:19,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:19,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:05:19,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:05:19,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:19,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55107 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:22,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:22,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:22,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:05:22,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:05:22,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:22,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55113 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:54529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55175 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:05:24,022 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:05:24,047 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=91.830 +2025-10-02 03:05:24,142 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.830 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 03:05:24,142 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 03:05:24,142 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 118.41.33.196:54530 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:24,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO: 220.77.167.192:65108 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:24,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:24,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:05:24,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:05:24,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:24,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55176 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63979 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:05:25,045 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:05:25,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:05:25,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +2025-10-02 03:05:25,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.309s (avg: 0.154s/image) +2025-10-02 03:05:25,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:05:25,356 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:65109 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63980 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:54556 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:05:28,766 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:05:28,802 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=89.098 +2025-10-02 03:05:28,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.098 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 03:05:28,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 03:05:28,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 118.41.33.196:54557 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:63984 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:31,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:31,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:31,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 03:05:31,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 03:05:31,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:31,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63985 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:54581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:05:32,522 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:05:32,546 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=94.262 +2025-10-02 03:05:32,619 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.262 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 03:05:32,619 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 03:05:32,619 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 118.41.33.196:54585 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:65113 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59626 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:34,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:34,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:34,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 03:05:34,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 03:05:34,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:34,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65114 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:34,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:34,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:34,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:05:34,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:05:34,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:34,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59627 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:35,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:35,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:35,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:05:35,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:05:35,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:35,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63989 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:36,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:36,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:36,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 03:05:36,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 03:05:36,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:36,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63990 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57869 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:41,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:41,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:41,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:05:41,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:05:41,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:41,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57870 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63999 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:42,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:42,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:42,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:05:43,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:05:43,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:43,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64000 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65118 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:43,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:43,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:44,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:05:44,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:05:44,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:44,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65119 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13898 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:05:44,914 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:05:44,937 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=46.882 +2025-10-02 03:05:45,039 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.882 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.101s +2025-10-02 03:05:45,039 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 03:05:45,039 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +INFO: 175.119.234.181:13899 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:59643 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:46,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:46,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:46,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +2025-10-02 03:05:46,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +2025-10-02 03:05:46,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:46,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59644 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64006 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:47,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:47,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:47,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:05:47,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:05:47,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:47,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64007 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60420 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 118.41.33.196:54758 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:51,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:51,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:51,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:05:51,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:05:51,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:51,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54759 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59648 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13903 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:52,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:52,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:52,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 03:05:52,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 03:05:52,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:52,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59649 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64011 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:52,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:52,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:52,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:05:52,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:05:52,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:52,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13904 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:52,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:52,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:53,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:05:53,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:05:53,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:53,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64012 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:58,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:58,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:58,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:05:58,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:05:58,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:58,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64021 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:05:59,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:05:59,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:05:59,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 03:05:59,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 03:05:59,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:05:59,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64022 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56735 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:00,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:00,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:00,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:06:00,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:06:00,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:00,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56736 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57899 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:54797 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:01,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:01,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:01,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:06:01,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:06:01,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:01,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57900 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:01,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:01,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:01,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:06:01,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:06:01,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:01,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54799 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64026 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:03,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:03,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:03,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:06:03,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:06:03,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:03,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64027 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59659 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:04,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:04,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:04,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:06:04,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:06:04,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:04,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59660 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:54836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:07,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:07,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:07,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:06:07,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:06:07,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:07,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54837 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64033 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:08,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:08,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:08,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:06:08,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:06:08,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:08,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64034 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59664 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:09,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:09,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:09,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:06:10,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:06:10,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:10,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59665 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55330 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:12,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:12,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:12,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:06:12,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:06:12,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:12,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55331 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:15,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:15,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:15,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:06:15,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:06:15,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:15,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55340 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55208 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:59674 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:20,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:20,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:20,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:06:20,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:06:20,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:20,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55342 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:21,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:21,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:21,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 03:06:21,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 03:06:21,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:21,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59675 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65129 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:24,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:24,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:24,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 03:06:24,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 03:06:24,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:24,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65130 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64050 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:26,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:26,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:26,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:06:26,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:06:26,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:26,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:26,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:26,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:26,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:06:27,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:06:27,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:27,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64051 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:27,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:27,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:27,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:06:27,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:06:27,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:27,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59681 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:28,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:28,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:28,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 03:06:28,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 03:06:28,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:28,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65134 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:31,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:31,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:31,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:06:32,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:06:32,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:32,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65135 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:06:32,465 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:06:32,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:06:32,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.328s +2025-10-02 03:06:32,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.328s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.328s (avg: 0.164s/image) +2025-10-02 03:06:32,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.328s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:06:32,794 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:55386 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59686 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13934 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:33,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:33,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:33,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 03:06:33,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 03:06:33,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:33,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13935 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57914 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:54943 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:38,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:38,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:38,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:06:38,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:06:38,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:38,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57915 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55428 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:39,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:39,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:39,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:06:39,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:06:39,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:39,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54944 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:40,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:40,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:40,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:06:40,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:06:40,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:40,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65140 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:40,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:40,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:40,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:06:40,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:06:40,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:40,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55429 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13942 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:41,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:41,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:41,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 03:06:41,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 03:06:41,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:41,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13943 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:42,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:42,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:43,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:06:43,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:06:43,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:43,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:57919 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:45,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:45,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:45,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:06:45,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:06:45,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:45,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57920 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:45,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:45,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:45,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:06:45,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:06:45,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:45,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:46,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:46,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:46,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:06:46,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:06:46,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:46,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:48,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:48,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:48,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:06:48,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:06:48,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:48,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43108 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:13955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:51,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:51,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:51,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:06:51,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:06:51,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:51,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57924 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 118.41.33.196:54983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:52,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:52,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:52,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:06:52,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:06:52,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:52,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57925 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55447 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:52,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:52,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:52,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 03:06:52,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 03:06:52,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:52,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:54984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65150 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:53,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:53,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:53,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:06:53,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:06:53,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:53,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55448 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:53,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:53,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:53,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +2025-10-02 03:06:54,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image) +2025-10-02 03:06:54,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:54,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59732 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:54,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:54,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:06:54,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:06:54,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:06:54,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:06:54,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55456 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:06:59,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:06:59,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:00,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:07:00,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:07:00,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:00,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:00,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:00,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:00,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:07:00,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:07:00,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:00,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:01,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:01,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:01,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:07:01,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:07:01,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:01,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59740 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:55001 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:01,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:01,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:01,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:07:01,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:07:01,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:01,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:55002 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57934 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:06,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:06,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:06,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:07:06,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:07:06,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:06,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57935 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55466 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:06,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:06,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:06,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:07:07,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:07:07,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:07,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55467 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 118.41.33.196:55014 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:09,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:09,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:09,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 03:07:09,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 03:07:09,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:09,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 118.41.33.196:55015 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57940 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:11,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:11,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:11,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:07:11,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:07:11,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:11,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13997 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:15,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:15,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:15,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:07:15,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:07:15,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:15,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13998 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:15,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:15,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:16,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:07:16,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:07:16,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:16,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65162 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57945 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:16,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:16,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:16,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:07:16,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:07:16,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:16,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57946 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53086 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:19,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:19,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:19,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 03:07:19,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 03:07:19,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:19,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14006 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56743 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:19,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:19,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:19,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-02 03:07:19,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-02 03:07:19,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:19,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56744 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:21,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:21,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:21,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:07:21,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:07:21,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:21,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:22,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:22,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:22,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:07:22,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:07:22,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:22,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14013 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:23,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:23,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:24,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:07:24,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:07:24,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:24,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14014 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64072 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:07:24,551 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:07:24,572 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=139.108 +2025-10-02 03:07:24,656 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.108 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 03:07:24,656 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 03:07:24,656 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 61.255.207.212:64073 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:14020 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:07:27,715 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:07:27,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:07:27,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 03:07:28,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 03:07:28,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:07:28,002 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:14021 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64077 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:07:28,196 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:07:28,213 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=165.270 +2025-10-02 03:07:28,295 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.270 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 03:07:28,295 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 03:07:28,295 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 61.255.207.212:64078 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:14026 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:31,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:31,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:31,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 03:07:31,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 03:07:31,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:31,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14027 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64082 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:07:32,168 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:07:32,190 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=83.061 +2025-10-02 03:07:32,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.061 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 03:07:32,267 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 03:07:32,267 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 61.255.207.212:64083 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:14034 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55530 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:35,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:35,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:35,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:07:35,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:07:35,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:35,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14035 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:35,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:35,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:35,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:07:35,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:07:35,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:35,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55532 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:36,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:36,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:36,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 03:07:37,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 03:07:37,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:37,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64088 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:38,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:38,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:38,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:07:38,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:07:38,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:38,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64089 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57961 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:41,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:41,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:41,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:07:41,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:07:41,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:41,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57962 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55560 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64093 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:42,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:42,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:42,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:07:42,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:07:42,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:42,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55561 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:42,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:42,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:42,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:07:43,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:07:43,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:43,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64094 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:44,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:44,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:45,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 03:07:45,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 03:07:45,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:45,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57966 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:46,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:46,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:46,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:07:46,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:07:46,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:46,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57967 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55568 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:48,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:48,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:48,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:07:48,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:07:48,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:48,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55569 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45638 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:57972 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:50,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:50,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:50,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:07:51,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:07:51,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:51,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57973 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:54,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:54,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:54,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:07:54,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:07:54,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:07:54,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:07:59,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:07:59,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:07:59,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:08:00,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:08:00,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:00,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55589 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64100 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:02,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:02,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:02,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:08:02,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:08:02,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:02,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64101 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64105 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:06,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:06,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:06,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:08:06,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:08:06,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:06,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64106 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64110 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:11,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:11,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:11,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:08:11,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:08:11,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:11,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64111 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55602 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:12,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:12,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:12,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:08:12,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:08:12,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:12,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55603 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64117 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:15,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:15,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:15,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:08:15,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:08:15,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:15,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64118 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45830 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:64122 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55616 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:19,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:19,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:19,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:08:19,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:08:19,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:19,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64123 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:20,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:20,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:20,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:08:20,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:08:20,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:20,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55617 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64129 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:22,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:22,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:22,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:08:22,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:08:22,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:22,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64130 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:57998 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:23,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:23,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:23,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:08:23,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:08:23,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:23,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:57999 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55625 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:25,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:25,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:25,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:08:25,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:08:25,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:25,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55626 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64134 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:27,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:27,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:27,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:08:27,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:08:27,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:27,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64135 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:33,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:33,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:33,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:08:34,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:08:34,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:34,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56751 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:35,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:35,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:35,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:08:35,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:08:35,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:35,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56752 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55702 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:39,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:39,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:39,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:08:39,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:08:39,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:39,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55703 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55710 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:43,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:43,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:43,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:08:43,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:08:43,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:43,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55711 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:49764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:47,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:47,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:47,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:08:47,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:08:47,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:47,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:08:48,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 642, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:08:48,068 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 642, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=118.341 +2025-10-02 03:08:48,137 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.341 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.069s +2025-10-02 03:08:48,137 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-02 03:08:48,137 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +INFO: 211.226.69.49:49765 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:59837 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:08:48,748 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:08:48,772 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=50.553 +2025-10-02 03:08:48,854 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.553 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 03:08:48,855 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 03:08:48,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 39.112.59.88:59838 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:38778 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:58022 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:50,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:50,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:50,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:08:50,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:08:50,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:50,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58023 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:51,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:51,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:51,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:08:52,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:08:52,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:52,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55726 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49771 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:08:52,621 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:08:52,645 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=82.683 +2025-10-02 03:08:52,733 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.683 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 03:08:52,733 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 03:08:52,734 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 211.226.69.49:49773 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:14075 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:53,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:53,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:53,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:08:54,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:08:54,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:54,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14076 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59844 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58030 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:55,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:55,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:55,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:08:55,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:08:55,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:55,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59845 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:56,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:56,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:56,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:08:56,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:08:56,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:56,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58031 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55734 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:08:57,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:08:57,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:08:57,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:08:57,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:08:57,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:08:57,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55735 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:01,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:01,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:01,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:09:02,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:09:02,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:02,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55743 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59849 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58035 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:03,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:03,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:03,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:09:03,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:09:03,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:03,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59850 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:03,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:03,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:03,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:09:03,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:09:03,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:03,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58036 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:06,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:06,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:06,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:09:06,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:09:06,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:06,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55761 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59863 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:11,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:11,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:11,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:09:11,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:09:11,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:11,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55762 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:12,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:12,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:12,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:09:12,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:09:12,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:12,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59864 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55797 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:17,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:17,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:17,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:09:17,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:09:17,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:17,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55798 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58372 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:55828 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:21,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:21,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:21,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:09:21,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:09:21,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:21,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55829 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:27,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:27,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:27,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:09:27,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:09:27,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:27,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59880 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:29,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:29,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:29,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:09:29,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:09:29,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:29,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59881 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:30,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:30,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:30,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:09:30,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:09:30,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:30,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55849 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55856 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:35,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:35,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:35,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:09:35,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:09:35,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:35,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55857 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:36,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:36,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:36,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:09:36,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:09:36,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:36,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58048 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:37,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:37,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:37,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:09:37,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:09:37,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:37,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58049 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59892 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:41,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:41,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:41,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:09:42,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:09:42,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:42,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:42,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:42,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:42,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 03:09:42,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 03:09:42,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:42,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59893 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:55870 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:43,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:43,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:43,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:09:43,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:09:43,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:43,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:43,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:43,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:43,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:09:44,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:09:44,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:44,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55871 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:46,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:46,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:46,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:09:46,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:09:46,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:46,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59897 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:47,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:47,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:47,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:09:47,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:09:47,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:47,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59898 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:55879 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:49,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:49,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:49,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:09:49,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:09:49,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:49,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:55880 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53218 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:14118 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64165 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:50,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:50,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:50,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:09:50,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:09:50,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:50,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14119 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:50,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:50,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:50,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:09:51,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:09:51,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:51,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64166 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:51,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:51,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:51,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:09:51,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:09:51,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:51,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:54,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:54,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:54,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:09:54,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:09:54,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:54,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58069 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:55,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:55,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:55,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:09:56,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:09:56,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:56,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58070 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59905 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64172 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:58,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:58,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:58,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:09:58,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:09:58,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:58,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64173 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:09:58,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:09:58,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:09:58,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:09:58,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:09:58,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:09:58,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59906 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:05,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:05,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:05,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:10:05,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:10:05,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:05,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58077 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:06,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:06,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:06,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:10:07,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:10:07,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:07,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58078 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56059 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59913 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:07,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:07,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:07,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:10:07,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:10:07,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:07,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56063 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:08,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:08,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:08,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:10:08,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:10:08,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:08,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59914 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:10:10,020 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:10:10,044 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=124.638 +2025-10-02 03:10:10,128 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.638 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 03:10:10,128 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 03:10:10,129 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 220.77.167.192:65217 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 115.138.85.166:56121 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:11,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:11,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:11,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:10:11,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:10:11,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:11,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56122 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64184 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:12,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:12,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:12,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:10:12,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:10:12,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:12,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64185 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58082 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:13,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:13,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:13,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:10:14,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:10:14,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:14,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58083 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56172 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:15,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:15,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:15,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:10:15,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:10:15,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:15,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56174 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59922 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:18,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:18,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:18,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:10:18,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:10:18,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:18,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59923 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:18,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:18,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:18,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:10:19,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:10:19,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:19,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59134 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:56259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64191 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:19,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:19,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:19,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:10:19,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:10:19,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:19,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64192 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:20,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:20,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:20,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:10:20,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:10:20,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:20,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56261 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:23,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:23,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:23,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:10:24,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:10:24,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:24,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58092 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64198 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:25,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:25,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:25,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:10:25,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:10:25,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:25,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58093 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49896 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:25,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:25,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:25,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:10:25,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:10:25,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:25,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64199 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:26,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:26,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:26,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:10:26,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:10:26,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:26,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49897 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56394 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:27,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:27,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:27,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:10:27,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:10:27,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:27,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56395 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58098 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:29,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:29,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:29,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:10:30,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:10:30,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:30,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58099 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:31,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:31,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:31,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:10:31,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:10:31,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:31,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64205 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:32,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:32,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:32,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:10:32,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:10:32,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:32,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56482 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:33,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:33,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:33,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:10:33,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:10:33,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:33,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58103 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:34,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:34,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:34,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:10:34,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:10:34,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:34,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58104 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59940 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:56550 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:37,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:37,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:37,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:10:37,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:10:37,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:37,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:37,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:37,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:37,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:10:37,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:10:37,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:37,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56553 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58108 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:40,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:40,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:40,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:10:40,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:10:40,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:40,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58109 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59945 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:41,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:41,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:41,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:10:41,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:10:41,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:41,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59946 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56673 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:43,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:43,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:43,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:10:43,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:10:43,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:43,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56674 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58113 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:47,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:47,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:47,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:10:47,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:10:47,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:47,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:47,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:47,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:47,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:10:47,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:10:47,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:47,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58114 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41888 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:56697 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:51,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:51,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:51,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:10:51,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:10:51,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:51,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56698 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56712 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:54,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:54,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:54,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:10:55,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:10:55,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:55,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56715 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64214 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:10:57,972 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:10:57,999 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=121.870 +2025-10-02 03:10:58,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.870 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 03:10:58,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 03:10:58,088 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 61.255.207.212:64215 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:14152 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:10:58,515 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:10:58,536 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=49.578 +2025-10-02 03:10:58,623 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.578 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 03:10:58,624 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 03:10:58,625 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 175.119.234.181:14153 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:58119 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:58,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:58,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:58,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:10:59,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:10:59,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:59,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58120 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56785 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:10:59,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:10:59,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:10:59,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 03:10:59,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 03:10:59,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:10:59,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56791 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58124 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:11:01,608 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:11:01,637 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=115.140 +2025-10-02 03:11:01,723 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.140 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 03:11:01,724 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 03:11:01,725 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 61.255.207.212:64222 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:01,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:01,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:02,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:11:02,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:11:02,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:02,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58125 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56853 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:04,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:04,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:04,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:11:04,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:11:04,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:04,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56854 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58129 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:06,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:06,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:06,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:11:06,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:11:06,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:06,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58130 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:11:06,626 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:11:06,647 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=70.952 +2025-10-02 03:11:06,738 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.952 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 03:11:06,738 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 03:11:06,739 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 61.255.207.212:64227 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:58135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:09,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:09,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:09,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:11:10,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:11:10,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:10,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58136 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56863 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:11:11,090 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:11:11,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:11:11,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 03:11:11,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 03:11:11,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:11:11,389 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 115.138.85.166:56864 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:11,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:11,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:11,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:11:12,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:11:12,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:12,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59963 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:13,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:13,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:13,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:11:13,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:11:13,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:13,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58141 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:11:14,386 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:11:14,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:11:14,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 03:11:14,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 03:11:14,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:11:14,672 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:65241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:15,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:15,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:16,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:11:16,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:11:16,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:16,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:16,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:16,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:16,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 03:11:16,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 03:11:16,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:16,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55238 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:64238 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:21,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:21,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:22,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:11:22,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:11:22,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:22,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64239 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56881 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:22,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:22,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:22,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:11:22,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:11:22,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:22,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:22,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:22,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:22,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 03:11:22,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 03:11:22,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:22,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56882 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:26,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:26,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:26,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:11:26,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:11:26,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:26,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58165 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:56889 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:26,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:26,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:26,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 03:11:26,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 03:11:26,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:26,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:56890 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58169 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:29,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:29,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:29,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:11:29,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:11:29,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:29,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58170 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58174 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:33,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:33,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:33,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:11:33,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:11:33,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:33,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58175 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:37,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:37,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:37,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:11:37,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:11:37,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:37,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64250 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:41,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:41,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:41,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:11:41,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:11:41,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:41,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64251 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:42,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:42,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:42,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:11:42,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:11:42,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:42,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14178 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:43,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:43,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:43,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:11:44,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:11:44,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:44,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14179 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58192 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:46,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:46,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:46,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:11:46,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:11:46,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:46,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58193 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64257 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:47,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:47,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:47,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:11:47,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:11:47,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:47,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64258 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49532 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:65276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:52,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:52,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:52,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:11:52,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:11:52,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:52,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64263 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:53,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:53,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:53,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:11:53,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:11:53,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:53,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64264 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:11:57,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:11:57,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:11:57,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:11:57,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:11:57,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:11:57,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64274 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:03,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:03,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:03,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:12:03,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:12:03,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:03,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64275 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57040 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:04,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:04,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:04,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:12:04,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:12:04,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:04,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57041 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58219 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:05,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:05,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:05,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:12:06,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:12:06,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:06,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58220 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64281 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:07,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:07,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:08,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:12:08,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:12:08,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:08,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64282 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58227 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:10,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:10,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:10,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:12:10,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:12:10,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:10,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58228 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57050 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:10,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:10,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:10,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:12:11,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:12:11,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:11,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57051 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:12,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:12,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:12,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:12:12,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:12:12,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:12,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59977 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:12:13,590 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:12:13,610 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=64.531 +2025-10-02 03:12:13,699 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.531 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 03:12:13,699 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 03:12:13,700 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 39.112.59.88:59978 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:14216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:15,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:15,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:15,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:12:16,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:12:16,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:16,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64292 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:17,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:17,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:17,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:12:17,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:12:17,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:17,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64293 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57060 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:18,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:18,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:18,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:12:18,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:12:18,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:18,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57061 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39498 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:64297 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:19,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:19,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:19,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:12:19,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:12:19,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:19,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64298 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57068 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:23,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:23,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:23,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:12:23,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:12:23,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:23,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57069 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:24,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:24,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:24,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:12:24,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:12:24,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:24,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64304 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:59985 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:27,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:27,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:27,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:12:27,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:12:27,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:27,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59986 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:28,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:28,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:28,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:12:28,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:12:28,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:28,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64311 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56779 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:12:29,227 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:12:29,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:12:29,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-02 03:12:29,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-02 03:12:29,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:12:29,501 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:56780 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:59991 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:37,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:37,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:37,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:12:37,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:12:37,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:37,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:37,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:37,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:37,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 03:12:37,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 03:12:37,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:37,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:59992 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64320 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14251 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:38,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:38,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:38,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:12:38,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:12:38,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:38,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64321 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:38,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:38,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:38,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:12:38,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:12:38,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:38,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14252 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57096 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:42,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:42,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:42,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:12:43,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:12:43,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:43,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57097 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:47,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:47,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:47,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:12:47,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:12:47,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:47,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57141 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:48,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:48,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:49,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:12:49,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:12:49,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:49,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52880 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:14263 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:50,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:50,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:50,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:12:50,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:12:50,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:50,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14264 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:52,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:52,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:52,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:12:53,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:12:53,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:53,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14268 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:54,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:54,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:54,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:12:54,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:12:54,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:54,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14269 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:56,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:56,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:56,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 03:12:56,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 03:12:56,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:56,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57181 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:60002 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:12:59,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:12:59,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:12:59,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:12:59,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:12:59,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:12:59,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60003 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64341 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:13:02,012 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:13:02,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:13:02,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-02 03:13:02,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +2025-10-02 03:13:02,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:13:02,293 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:64342 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57184 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60007 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:06,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:06,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:06,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:13:06,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:13:06,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:06,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60008 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:09,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:09,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:09,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:13:09,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:13:09,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:09,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:09,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:09,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:10,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:13:10,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:13:10,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:10,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64351 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58258 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:50030 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:13:15,225 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:13:15,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:13:15,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-02 03:13:15,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-02 03:13:15,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:13:15,529 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:64352 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58259 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:15,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:15,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:15,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:13:15,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:13:15,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:15,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:17,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:17,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:17,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:13:17,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:13:17,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:17,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:13:17,487 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:13:17,522 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=136.155 +2025-10-02 03:13:17,616 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.155 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 03:13:17,616 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 03:13:17,619 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 211.226.69.49:50032 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:35562 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:58263 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64358 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:60017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:13:20,319 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:13:20,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:13:20,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 03:13:20,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-02 03:13:20,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:13:20,625 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:64359 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58264 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:21,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:21,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:21,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 03:13:21,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 03:13:21,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:21,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:13:23,255 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:13:23,283 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=105.731 +2025-10-02 03:13:23,363 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.731 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 03:13:23,363 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 03:13:23,363 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 211.226.69.49:50042 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:64363 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:24,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:24,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:24,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:13:24,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:13:24,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:24,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64364 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58268 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:26,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:26,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:26,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:13:26,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:13:26,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:26,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58269 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60022 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:28,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:28,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:28,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 03:13:28,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 03:13:28,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:28,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60023 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64370 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:13:30,783 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:13:30,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:13:30,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-02 03:13:31,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-02 03:13:31,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:13:31,054 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:64371 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57242 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58273 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:31,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:31,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:31,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:13:31,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:13:31,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:31,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58274 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65292 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:32,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:32,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:32,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:13:32,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:13:32,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:32,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65293 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:33,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:33,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:33,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:13:33,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:13:33,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:33,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60028 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:34,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:34,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:34,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:13:34,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:13:34,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:34,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60029 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64375 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:35,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:35,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:35,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:13:35,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:13:35,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:35,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64376 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57255 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:37,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:37,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:37,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:13:37,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:13:37,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:37,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57256 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:39,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:39,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:39,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:13:39,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:13:39,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:39,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64382 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:40,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:40,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:40,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:13:40,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:13:40,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:40,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64383 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57289 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:41,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:41,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:41,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:13:41,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:13:41,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:41,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57290 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65299 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:44,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:44,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:44,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:13:44,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:13:44,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:44,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:45,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:45,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:45,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:13:45,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:13:45,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:45,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:45,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:45,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:45,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:13:45,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:13:45,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:45,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65300 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56787 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64387 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:46,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:46,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:46,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 03:13:46,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 03:13:46,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:46,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56788 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:13:46,786 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:13:46,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:13:46,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 03:13:47,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-02 03:13:47,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:13:47,072 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:64388 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39056 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:64394 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:51,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:51,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:51,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:13:52,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:13:52,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:52,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64395 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:53,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:53,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:53,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:13:53,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:13:53,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:53,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64399 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:55,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:55,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:55,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:13:55,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:13:55,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:55,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64400 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65304 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:56,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:56,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:56,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:13:56,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:13:56,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:13:56,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65305 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60059 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:13:59,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:13:59,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:13:59,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:14:00,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:14:00,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:00,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60060 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64406 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:00,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:00,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:00,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:14:00,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:14:00,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:00,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64407 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60066 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:08,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:08,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:08,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:14:08,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:14:08,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:08,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60067 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65311 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:11,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:11,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:11,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:14:11,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:14:11,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:11,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65312 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57379 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:13,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:13,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:13,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:14:13,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:14:13,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:13,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57380 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60071 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:15,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:15,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:15,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:14:15,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:14:15,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:15,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60072 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50095 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:18,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:18,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:18,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:14:18,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:14:18,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:18,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50096 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40042 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:14312 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:20,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:20,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:20,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:14:20,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:14:20,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:20,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14313 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65318 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:22,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:22,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:22,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:14:22,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:14:22,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:22,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65319 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60076 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:25,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:25,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:25,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:14:25,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:14:25,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:25,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60077 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:27,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:27,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:27,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:14:27,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:14:27,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:27,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14328 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:33,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:33,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:33,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:14:33,544 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:14:33,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:33,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14329 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:35,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:35,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:35,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:14:35,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:14:35,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:35,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65325 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14333 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:40,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:40,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:40,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:14:41,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:14:41,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:41,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14334 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57447 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:42,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:42,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:42,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:14:42,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:14:42,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:42,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:46,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:46,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:46,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:14:47,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:14:47,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:47,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14339 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:57487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:48,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:48,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:48,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:14:48,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:14:48,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:48,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43106 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:14343 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:14:53,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:14:53,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:14:53,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:14:54,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:14:54,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:14:54,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14344 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14348 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:15:00,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:00,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:00,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:15:00,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:15:00,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:15:00,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14349 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:15:09,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:09,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:09,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:15:09,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:15:09,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:15:09,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:57548 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:15:15,003 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:15:15,038 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=110.931 +2025-10-02 03:15:15,138 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.931 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.099s +2025-10-02 03:15:15,138 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-02 03:15:15,140 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +INFO: 61.255.207.212:64434 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:15:15,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:15,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:15,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:15:15,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:15:15,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:15:15,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:57551 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42568 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:60097 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:15:23,616 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:15:23,653 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=46.672 +2025-10-02 03:15:23,743 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.672 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 03:15:23,744 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 03:15:23,744 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 39.112.59.88:60098 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:60102 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:15:31,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:31,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:31,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:15:31,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:15:31,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:15:31,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60103 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14372 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:15:36,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:36,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:36,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:15:36,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:15:36,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:15:36,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60107 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:15:38,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:38,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:38,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:15:38,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:15:38,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:15:38,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60108 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58334 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:15:41,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:41,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:41,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:15:41,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:15:41,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:15:41,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58335 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60112 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:15:46,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:46,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:46,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:15:46,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:15:46,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:15:46,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60113 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60260 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:58343 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:15:53,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:15:53,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:15:53,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:15:53,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:15:53,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:15:53,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58344 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58348 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:00,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:00,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:01,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:16:01,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:16:01,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:01,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58349 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:02,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:02,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:02,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:16:02,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:16:02,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:02,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50183 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:16:06,350 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:16:06,378 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=82.817 +2025-10-02 03:16:06,463 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.817 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 03:16:06,464 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 03:16:06,464 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 211.226.69.49:50184 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:64478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:07,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:07,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:07,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:16:07,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:16:07,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:07,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:60123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:07,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:07,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:07,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:16:07,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:16:07,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:07,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:07,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:07,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:07,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 03:16:08,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 03:16:08,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:08,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60124 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50193 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:16:11,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:16:11,946 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=46.260 +2025-10-02 03:16:12,040 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.260 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 03:16:12,040 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 03:16:12,041 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 211.226.69.49:50194 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:65333 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:16:19,105 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:16:19,132 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=61.789 +2025-10-02 03:16:19,223 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.789 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 03:16:19,224 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 03:16:19,225 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 220.77.167.192:65334 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:64496 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54172 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:19,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:19,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:19,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:16:19,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:16:19,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:19,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:21,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:21,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:21,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:16:21,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:16:21,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:21,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56808 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:23,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:23,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:23,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:16:24,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:16:24,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:24,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56809 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:24,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:24,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:24,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:16:24,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:16:24,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:24,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65339 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:29,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:29,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:29,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:16:29,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:16:29,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:29,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60143 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:29,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:29,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:29,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:16:29,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:16:29,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:29,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65340 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58370 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:34,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:34,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:35,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:16:35,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:16:35,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:35,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58371 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60147 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:37,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:37,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:37,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:16:37,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:16:37,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:37,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60148 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65346 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:37,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:37,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:37,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:16:38,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:16:38,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:38,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65347 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58379 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:40,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:40,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:40,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:16:41,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:16:41,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:41,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58380 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60152 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:43,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:43,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:44,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 03:16:44,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 03:16:44,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:44,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60153 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36868 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:49,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:49,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:49,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:16:49,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:16:49,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:49,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50230 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:52,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:52,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:52,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:16:52,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:16:52,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:52,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50231 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:54,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:54,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:54,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:16:54,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:16:54,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:54,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:55,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:55,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:55,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:16:55,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:16:55,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:55,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58397 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:16:56,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:16:56,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:16:56,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:16:56,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:16:56,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:16:56,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58398 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:01,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:01,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:01,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:17:01,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:17:01,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:01,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50237 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:01,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:01,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:01,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:17:02,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:17:02,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:02,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50238 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58471 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:02,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:02,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:02,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:17:02,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:17:02,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:02,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58472 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:03,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:03,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:03,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:17:03,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:17:03,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:03,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60192 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:04,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:04,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:04,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:17:04,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:17:04,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:04,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60193 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58528 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:05,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:05,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:05,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:17:05,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:17:05,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:05,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58561 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:09,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:09,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:09,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:17:09,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:17:09,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:09,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58562 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:09,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:09,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:10,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:17:10,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:17:10,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:10,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58402 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:10,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:10,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:10,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:17:10,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:17:10,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:10,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58403 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60200 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:11,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:11,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:11,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:17:12,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:17:12,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:12,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60201 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14418 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:17:13,464 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:17:13,491 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=86.358 +2025-10-02 03:17:13,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.358 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.095s +2025-10-02 03:17:13,587 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 03:17:13,589 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +INFO: 175.119.234.181:14419 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:58407 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:14,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:14,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:14,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:17:15,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:17:15,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:15,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58408 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60205 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:17,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:17,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:17,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:17:17,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:17:17,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:17,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60206 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:19,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:19,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:19,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:17:19,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:17:19,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:19,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40564 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:58412 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14432 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:20,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:20,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:20,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:17:20,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:17:20,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:20,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58413 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:20,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:20,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:20,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:17:20,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:17:20,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:20,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14433 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:21,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:21,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:22,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:17:22,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:17:22,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:22,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:22,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:22,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:23,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:17:23,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:17:23,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:23,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50261 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58587 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:23,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:23,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:23,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:17:24,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:17:24,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:24,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60215 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:26,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:26,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:26,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:17:26,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:17:26,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:26,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60216 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58595 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:28,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:28,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:28,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:17:28,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:17:28,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:28,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58596 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14439 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:29,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:29,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:29,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:17:29,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:17:29,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:29,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14442 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50267 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:29,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:29,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:29,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:17:29,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:17:29,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:29,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50268 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60220 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:31,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:31,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:31,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:17:31,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:17:31,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:31,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60221 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58602 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:32,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:32,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:32,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:17:32,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:17:32,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:32,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58603 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14447 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:34,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:34,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:34,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:17:34,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:17:34,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:34,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14448 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:34,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:34,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:34,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:17:35,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:17:35,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:35,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58421 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:36,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:36,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:36,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:17:36,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:17:36,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:36,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60226 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14452 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:41,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:41,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:41,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:17:41,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:17:41,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:41,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14453 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60230 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56816 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:41,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:41,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:41,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:17:42,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:17:42,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:42,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56817 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:42,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:42,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:42,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:17:42,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:17:42,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:42,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60231 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58620 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:43,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:43,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:43,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:17:43,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:17:43,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:43,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58622 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:43,978 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:43,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:44,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:17:44,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:17:44,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:44,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58628 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:46,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:46,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:46,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:17:47,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:17:47,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:47,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58629 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60236 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:47,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:47,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:47,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:17:47,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:17:47,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:47,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60237 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56626 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:65371 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:50,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:50,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:50,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:17:50,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:17:50,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:50,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65372 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:52,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:52,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:52,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:17:52,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:17:52,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:52,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60242 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64563 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:17:54,902 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:17:54,924 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=137.224 +2025-10-02 03:17:55,009 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.224 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 03:17:55,009 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 03:17:55,009 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:64564 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:65376 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:56,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:56,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:56,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:17:56,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:17:56,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:56,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:56,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:56,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:56,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:17:56,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:17:56,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:56,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58434 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64568 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:17:58,293 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:17:58,325 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=199.892 +2025-10-02 03:17:58,410 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=199.892 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 03:17:58,410 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 03:17:58,412 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 61.255.207.212:64569 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:14466 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:59,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:59,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:59,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:17:59,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:17:59,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:17:59,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14467 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50299 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:17:59,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:17:59,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:17:59,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:18:00,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:18:00,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:00,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50300 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65381 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:00,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:00,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:00,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:18:00,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:18:00,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:00,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65382 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:01,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:01,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:01,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:18:01,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:18:01,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:01,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64573 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14471 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:03,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:03,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:03,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:18:03,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:18:03,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:03,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58442 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:18:03,969 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:18:03,984 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=145.824 +2025-10-02 03:18:04,070 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.824 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 03:18:04,071 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 03:18:04,071 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:64574 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:04,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:04,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:04,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 03:18:04,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 03:18:04,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:04,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14472 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65388 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:06,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:06,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:06,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:18:06,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:18:06,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:06,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65389 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:08,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:08,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:08,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:18:08,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:18:08,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:08,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50307 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58778 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:60259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:10,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:10,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:10,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:18:10,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:18:10,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:10,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58779 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:10,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:10,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:10,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:18:10,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:18:10,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:10,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14477 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65393 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:18:12,792 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:18:12,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:18:12,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 03:18:13,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 03:18:13,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:18:13,077 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:65394 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14478 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58785 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:13,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:13,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:13,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:18:13,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:18:13,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:13,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58787 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60267 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:16,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:16,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:16,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:18:16,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:18:16,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:16,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60268 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14482 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:58793 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:17,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:17,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:17,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 03:18:18,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 03:18:18,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:18,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:18,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:18,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:18,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:18:18,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:18:18,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:18,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58794 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65398 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:50317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:18:18,966 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:18:18,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:18:19,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 03:18:19,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +2025-10-02 03:18:19,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:18:19,267 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:50318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65399 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55692 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:58801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:18:22,366 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:18:22,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:18:22,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 03:18:22,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 03:18:22,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:18:22,652 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:14488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65403 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:25,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:25,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:25,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:18:25,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:18:25,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:25,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65404 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58809 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:26,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:26,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:26,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 03:18:26,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 03:18:26,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:26,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58810 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:30,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:30,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:30,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:18:30,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:18:30,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:30,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58817 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:31,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:31,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:31,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:18:31,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:18:31,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:31,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58818 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50336 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:33,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:33,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:33,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 03:18:33,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 03:18:33,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:33,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50337 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:35,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:35,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:35,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:18:35,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:18:35,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:35,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14508 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:39,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:39,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:39,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:18:39,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:18:39,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:39,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14509 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65412 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:40,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:40,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:40,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:18:40,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:18:40,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:40,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65413 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:43,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:43,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:43,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 03:18:43,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 03:18:43,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:43,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60297 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:58843 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:45,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:45,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:45,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 03:18:45,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 03:18:45,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:45,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:58845 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:47,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:47,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:47,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:18:47,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:18:47,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:47,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65422 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60301 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:48,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:48,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:48,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:18:48,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:18:48,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:48,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60302 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64622 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:49,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:49,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:49,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 03:18:49,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 03:18:49,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:49,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64623 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48930 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:14524 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:50,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:50,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:50,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:18:50,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:18:50,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:50,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14530 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65427 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:53,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:53,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:53,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:18:53,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:18:53,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:53,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14531 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:53,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:53,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:53,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:18:53,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:18:53,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:53,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65428 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:54,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:54,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:54,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:18:54,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:18:54,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:54,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60307 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64627 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:55,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:55,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:55,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:18:55,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:18:55,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:55,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64628 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:56,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:56,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:56,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:18:56,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:18:56,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:56,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:58,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:58,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:58,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:18:58,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:18:58,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:58,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14540 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:18:59,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:18:59,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:18:59,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:18:59,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:18:59,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:18:59,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14541 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:00,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:00,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:00,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:19:01,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:19:01,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:01,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65434 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14545 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:02,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:02,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:02,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:19:02,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:19:02,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:02,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14546 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60311 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:03,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:03,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:03,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:19:03,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:19:03,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:03,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60312 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:04,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:04,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:04,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:19:05,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:19:05,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:05,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64641 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:07,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:07,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:07,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:19:07,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:19:07,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:07,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64642 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:08,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:08,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:08,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 03:19:08,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 03:19:08,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:08,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:13,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:13,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:13,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:19:13,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:19:13,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:13,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14561 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:15,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:15,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:15,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:19:15,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:19:15,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:15,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14562 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14567 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:17,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:17,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:17,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:19:17,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:19:17,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:17,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14568 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:19,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:19,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:19,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:19:19,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:19:19,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:19,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65444 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33466 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:14575 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:21,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:21,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:21,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:19:21,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:19:22,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:22,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14576 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60322 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:23,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:23,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:23,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:19:23,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:19:23,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:23,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60323 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14583 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:27,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:27,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:27,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:19:27,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:19:27,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:27,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14584 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65448 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:28,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:28,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:29,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:19:29,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:19:29,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:29,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65449 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14589 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:32,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:32,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:32,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:19:32,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:19:32,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:32,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14590 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60329 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:33,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:33,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:33,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:19:33,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:19:33,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:33,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60330 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:37,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:37,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:37,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:19:37,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:19:37,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:37,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65456 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14594 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:38,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:38,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:38,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 03:19:38,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 03:19:38,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:38,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14595 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:59331 - "GET /health HTTP/1.1" 200 OK +INFO: 211.197.218.214:59332 - "GET /health HTTP/1.1" 200 OK +INFO: 211.197.218.214:59335 - "GET /health HTTP/1.1" 200 OK +INFO: 220.77.167.192:65463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:19:48,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:19:48,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:19:48,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:19:48,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:19:48,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:19:48,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65464 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50136 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:65474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:04,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:04,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:04,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:20:05,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:20:05,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:05,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65475 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:11,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:11,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:11,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:20:11,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:20:11,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:11,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59074 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:15,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:15,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:15,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:20:16,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:20:16,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:16,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59075 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65485 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:17,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:17,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:17,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:20:18,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:20:18,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:18,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65486 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:18,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:18,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:18,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 03:20:18,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 03:20:18,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:18,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56837 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47036 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.197.218.214:60483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:59082 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:20,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:20,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:20,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:20:20,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:20:20,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:20,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:60484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:20,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:20,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:20,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:20:20,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:20:20,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:20,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59083 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:60489 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:24,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:24,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:24,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:20:24,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:20:24,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:24,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:60490 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:45968 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:25,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:25,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:25,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:20:25,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:20:25,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:25,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59091 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59206 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:34,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:34,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:34,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:20:34,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:20:34,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:34,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59209 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59300 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:42,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:42,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:42,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:20:42,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:20:42,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:42,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59302 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40318 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:59519 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:50,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:50,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:50,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:20:50,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:20:50,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:50,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59522 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65503 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:51,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:51,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:51,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:20:51,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:20:51,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:51,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65504 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60346 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:52,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:52,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:52,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:20:52,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:20:52,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:52,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60347 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59604 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:54,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:54,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:54,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:20:54,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:20:54,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:54,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59605 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58571 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:65508 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:58,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:58,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:58,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:20:58,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:20:58,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:58,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58572 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:58,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:58,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:58,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:20:59,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:20:59,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:59,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65509 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59668 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:20:59,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:20:59,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:20:59,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:20:59,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:20:59,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:20:59,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60351 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:01,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:01,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:01,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:21:01,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:21:01,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:01,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60352 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59748 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:61469 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:03,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:03,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:03,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:21:03,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:21:03,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:03,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59753 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:21:03,967 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:21:03,993 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=51.569 +2025-10-02 03:21:04,074 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.569 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 03:21:04,074 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 03:21:04,074 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 211.197.218.214:61472 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:65514 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:05,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:05,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:05,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:21:05,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:21:05,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:05,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65515 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60356 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 115.138.85.166:59830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:08,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:08,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:09,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:21:09,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:21:09,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:09,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59832 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:09,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:09,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:09,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:21:09,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:21:09,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:09,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60357 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65520 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:12,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:12,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:12,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:21:12,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:21:12,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:12,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65521 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:59924 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:50438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:13,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:13,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:13,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 03:21:13,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 03:21:13,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:13,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:59926 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:14,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:14,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:14,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:21:14,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:21:14,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:14,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50440 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65525 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:17,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:17,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:17,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:21:17,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:21:17,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:17,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65526 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60361 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58586 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:18,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:18,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:18,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:21:18,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:21:18,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:18,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60362 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:19,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:19,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:19,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:21:19,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:21:19,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:19,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58587 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39884 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:58591 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:22,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:22,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:22,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:21:22,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:21:22,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:22,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58592 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:65530 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:24,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:24,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:24,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:21:24,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:21:24,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:24,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:65531 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:25,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:25,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:25,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:21:26,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:21:26,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:26,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50449 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:27,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:27,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:27,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:21:27,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:21:27,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:27,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50450 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56845 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:36,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:36,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:36,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:21:36,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:21:36,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:36,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56846 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60371 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:21:37,622 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:21:37,652 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=66.402 +2025-10-02 03:21:37,733 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.402 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 03:21:37,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 03:21:37,734 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 39.112.59.88:60372 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.197.218.214:62709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:39,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:39,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:39,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 03:21:39,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 03:21:39,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:39,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50465 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:43,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:43,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:43,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:21:43,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:21:43,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:43,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50466 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:49158 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:44,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:44,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:44,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:21:44,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:21:44,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:44,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:49159 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60376 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:62948 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:21:46,701 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:21:46,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:21:46,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-02 03:21:47,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-02 03:21:47,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:21:47,016 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:62953 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44798 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:49164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:52,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:52,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:52,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:21:53,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:21:53,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:53,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:49166 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60381 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:54,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:54,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:54,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:21:54,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:21:54,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:54,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60382 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:21:55,050 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(912, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:21:55,081 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(912, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=101.230 +2025-10-02 03:21:55,169 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.230 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 03:21:55,169 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 03:21:55,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 175.119.234.181:14684 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:58604 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:55,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:55,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:55,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 03:21:55,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 03:21:55,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:55,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58605 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50476 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:21:58,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:21:58,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:21:58,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:21:58,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:21:58,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:21:58,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50477 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58609 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:00,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:00,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:00,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 03:22:00,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 03:22:00,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:00,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58610 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58614 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:06,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:06,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:06,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:22:06,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:22:06,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:06,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58615 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60389 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:49170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:07,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:07,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:07,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:22:07,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:22:07,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:07,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:49171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:07,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:07,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:07,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:22:08,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:22:08,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:08,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60390 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58619 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:10,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:10,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:10,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 03:22:10,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 03:22:10,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:10,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58620 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50489 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:13,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:13,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:13,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:22:13,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:22:13,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:13,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50490 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64697 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:15,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:15,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:15,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 03:22:15,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 03:22:15,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:15,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58625 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:22:15,879 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:22:15,903 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=66.774 +2025-10-02 03:22:15,982 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.774 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 03:22:15,983 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 03:22:15,983 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 61.255.207.212:64698 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:64702 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:22:19,215 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:22:19,237 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=67.116 +2025-10-02 03:22:19,310 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.116 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.072s +2025-10-02 03:22:19,310 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 03:22:19,310 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +INFO: 61.255.207.212:64703 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:48096 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:58629 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14703 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:20,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:20,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:20,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:22:20,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:22:20,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:20,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58630 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:20,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:20,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:20,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:22:20,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:22:20,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:20,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14704 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60398 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64710 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:22:22,739 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:22:22,762 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=98.986 +2025-10-02 03:22:22,835 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.986 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.072s +2025-10-02 03:22:22,835 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 03:22:22,836 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 61.255.207.212:64711 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:23,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:23,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:23,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:22:23,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:22:23,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:23,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60399 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:49175 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:23,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:23,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:23,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 03:22:23,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 03:22:23,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:23,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:49176 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50511 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:28,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:28,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:28,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:22:28,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:22:28,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:28,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50512 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64715 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:60403 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:29,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:29,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:29,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:22:29,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:22:29,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:29,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64716 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:29,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:29,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:29,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:22:29,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:22:29,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:29,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60404 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:31,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:31,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:31,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:22:31,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:22:31,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:31,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60140 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:49181 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:36,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:36,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:36,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 03:22:37,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 03:22:37,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:37,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:37,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:37,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:37,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 03:22:37,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 03:22:37,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:37,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:49182 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14710 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:40,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:40,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:40,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 03:22:41,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 03:22:41,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:41,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14711 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58644 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:50524 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:41,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:41,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:41,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:22:42,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:22:42,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:42,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58645 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:42,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:42,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:42,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:22:42,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:22:42,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:42,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60416 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:44,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:44,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:44,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 03:22:44,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 03:22:44,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:44,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60417 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60162 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:45,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:45,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:45,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:22:45,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:22:45,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:45,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60163 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14715 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58649 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:46,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:46,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:46,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:22:46,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:22:46,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:46,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14716 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:47,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:47,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:47,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:22:47,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:22:47,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:47,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58650 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:60422 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:49,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:49,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:49,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 03:22:49,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 03:22:49,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:49,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57450 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:49,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:49,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:49,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:22:49,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:22:49,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:49,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60423 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:49186 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:50,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:50,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:50,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:22:51,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:22:51,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:51,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:49187 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64730 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:51,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:51,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:52,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 03:22:52,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 03:22:52,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:52,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64731 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60177 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:53,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:53,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:53,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:22:53,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:22:53,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:53,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60178 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:65073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:56853 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:53,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:53,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:53,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 03:22:53,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 03:22:53,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:53,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:65078 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:54,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:54,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:54,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 03:22:54,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 03:22:54,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:54,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56854 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:55,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:55,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:55,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:22:55,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:22:55,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:55,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:60427 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:55,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:55,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:55,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 03:22:56,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 03:22:56,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:56,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:56,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:56,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:56,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:22:56,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:22:56,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:56,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60428 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:49191 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64737 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:22:57,367 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:22:57,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:22:57,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 03:22:57,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-02 03:22:57,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:22:57,653 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:64738 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:49192 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60191 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:58,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:58,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:22:58,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 03:22:58,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 03:22:58,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:22:58,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60192 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60198 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:22:59,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:22:59,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:00,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:23:00,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:23:00,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:00,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60199 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60432 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:03,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:03,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:03,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:23:03,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:23:03,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:03,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60433 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14737 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:04,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:04,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:05,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:23:05,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:23:05,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:05,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14738 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60208 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:06,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:06,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:06,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:23:06,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:23:06,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:06,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60209 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:07,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:07,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:07,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:23:07,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:23:07,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:07,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50550 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:07,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:07,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:07,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:23:08,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:23:08,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:08,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50551 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:09,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:09,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:09,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:23:09,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:23:09,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:09,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:09,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:09,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:09,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:23:10,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:23:10,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:10,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14743 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64752 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:10,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:10,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:10,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 03:23:10,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 03:23:10,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:10,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64753 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60231 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:11,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:11,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:12,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:23:12,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:23:12,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:12,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60236 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:14,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:14,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:14,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:23:14,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:23:14,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:14,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64760 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60263 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:14,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:14,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:14,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 03:23:15,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 03:23:15,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:15,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60264 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58668 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39982 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 115.138.85.166:60374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:20,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:20,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:20,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:23:20,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:23:20,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:20,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:20,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:20,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:20,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.125s +2025-10-02 03:23:20,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.125s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.125s (avg: 0.125s/image) +2025-10-02 03:23:20,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.125s (avg: 0.125s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:20,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60375 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60448 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:20,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:20,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:20,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 03:23:20,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 03:23:20,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:20,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50559 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:21,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:21,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:21,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:23:21,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:23:21,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:21,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60449 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:21,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:21,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:21,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:23:21,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:23:21,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:21,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50560 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64771 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:25,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:25,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:25,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:23:25,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:23:25,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:25,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64772 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:58677 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:60453 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:26,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:26,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:26,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:23:26,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:23:26,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:26,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:58678 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:27,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:27,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:27,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:23:27,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:23:27,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:27,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60454 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64776 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:29,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:29,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:29,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:23:29,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:23:29,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:29,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64777 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64783 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:32,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:32,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:32,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:23:33,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:23:33,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:33,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64784 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60461 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:33,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:33,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:33,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:23:34,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:23:34,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:34,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60462 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:35,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:35,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:35,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 03:23:35,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 03:23:35,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:35,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64788 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:60466 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:38,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:38,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:38,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 03:23:38,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 03:23:38,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:38,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64789 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:38,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:38,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:39,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:23:39,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:23:39,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:39,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60467 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:47,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:47,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:47,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:23:47,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:23:47,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:47,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60475 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50592 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56216 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:49,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:49,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:49,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:23:49,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:23:49,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:49,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50593 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:51,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:51,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:51,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:23:51,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:23:51,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:51,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60484 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:55,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:55,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:55,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 03:23:55,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 03:23:55,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:55,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60485 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64806 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:23:58,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:23:58,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:23:58,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 03:23:58,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 03:23:58,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:23:58,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64807 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50601 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:02,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:02,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:02,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:24:02,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:24:02,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:02,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50602 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60490 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64813 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:03,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:03,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:03,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 03:24:03,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 03:24:03,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:03,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:04,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:04,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:04,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:24:04,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:24:04,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:04,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64814 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:51007 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:24:04,525 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:24:04,543 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=55.025 +2025-10-02 03:24:04,625 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.025 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 03:24:04,625 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 03:24:04,627 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 211.197.218.214:51014 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:64818 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:08,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:08,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:08,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:24:08,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:24:08,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:08,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64819 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:09,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:09,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:09,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:24:09,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:24:09,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:09,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:13,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:13,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:13,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 03:24:13,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 03:24:13,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:13,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60498 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:15,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:15,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:15,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 03:24:15,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 03:24:15,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:15,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60499 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50610 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:15,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:15,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:15,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:24:16,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:24:16,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:16,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50611 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46776 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 39.112.59.88:60503 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:21,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:21,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:21,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 03:24:21,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 03:24:21,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:21,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60504 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14787 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:26,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:26,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:26,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:24:26,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:24:26,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:26,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14788 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60509 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:28,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:28,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:28,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 03:24:29,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 03:24:29,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:29,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:60510 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:32,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:32,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:32,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:24:32,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:24:32,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:32,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60514 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:58724 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 03:24:36,549 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 03:24:36,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 03:24:36,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.338s +2025-10-02 03:24:36,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.338s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.338s (avg: 0.169s/image) +2025-10-02 03:24:36,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.338s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 03:24:36,889 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:58725 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:60515 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14797 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:38,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:38,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:38,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 03:24:38,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 03:24:38,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:38,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14798 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60578 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:43,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:43,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:43,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 03:24:43,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 03:24:43,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:43,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14802 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:45,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:45,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:45,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 03:24:45,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 03:24:45,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:45,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14803 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34702 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:14816 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:50,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:50,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:50,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:24:50,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:24:50,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:50,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14817 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14821 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:56,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:56,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:56,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:24:56,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:24:56,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:56,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14822 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60611 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:24:57,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:24:57,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:24:57,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:24:57,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:24:57,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:24:57,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60612 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60656 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:25:03,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:03,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:03,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 03:25:03,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 03:25:03,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:25:03,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60660 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:25:04,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:04,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:04,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:25:04,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:25:04,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:25:04,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14827 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:52429 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:25:05,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:05,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:05,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 03:25:05,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 03:25:05,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:25:05,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52434 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14831 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:25:09,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:09,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:09,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:25:09,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:25:09,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:25:09,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14832 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60675 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:25:10,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:10,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:10,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 03:25:10,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 03:25:10,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:25:10,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60676 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:25:15,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:15,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:15,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 03:25:15,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 03:25:15,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:25:15,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14837 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50660 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:25:16,588 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:25:16,623 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=22.868 +2025-10-02 03:25:16,709 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.868 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 03:25:16,710 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 03:25:16,710 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 211.226.69.49:50661 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:33198 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:14841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:25:20,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:20,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:20,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:25:20,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:25:20,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:25:20,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 03:25:21,199 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 03:25:21,235 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=87.224 +2025-10-02 03:25:21,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.224 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 03:25:21,320 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 03:25:21,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 211.226.69.49:50668 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:14847 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:25:25,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:25,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:25,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:25:25,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:25:25,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:25:25,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14848 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14852 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:25:30,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:30,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:30,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:25:30,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:25:30,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:25:30,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14853 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:56872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:25:33,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:33,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:33,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 03:25:33,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 03:25:33,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:25:33,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:56873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:25:35,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:35,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:35,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 03:25:36,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 03:25:36,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:25:36,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 115.138.85.166:60712 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 03:25:37,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 03:25:37,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 03:25:37,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 03:25:37,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 03:25:37,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 03:25:37,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 115.138.85.166:60713 - "POST /api/v1/inpaint HTTP/1.1" 200 OK diff --git a/logs/main_server.pid b/logs/main_server.pid index 81bbdb5..c8717ee 100644 --- a/logs/main_server.pid +++ b/logs/main_server.pid @@ -1 +1 @@ -192534 +271615 diff --git a/logs/monitoring.log b/logs/monitoring.log index c37747a..757bb38 100644 --- a/logs/monitoring.log +++ b/logs/monitoring.log @@ -1,7 +1,69 @@ WARNING:root:jtop library not found. Jetson monitoring will be limited. Please run 'sudo pip install jetson-stats' -INFO: Started server process [192741] +INFO: Started server process [271803] INFO: Waiting for application startup. INFO: Application startup complete. INFO: Uvicorn running on http://0.0.0.0:8888 (Press CTRL+C to quit) -INFO: 122.35.47.45:63439 - "WebSocket /ws" [accepted] +INFO: 127.0.0.1:49994 - "GET /api/simple HTTP/1.1" 200 OK +INFO: 118.235.73.64:35921 - "GET /api/logs?lines=50 HTTP/1.1" 200 OK +INFO: 118.235.73.64:35815 - "GET /api/performance-stats HTTP/1.1" 200 OK +INFO: 118.235.73.64:27910 - "GET /api/system-alerts HTTP/1.1" 200 OK +INFO: 118.235.73.64:33163 - "GET /api/model-usage-stats HTTP/1.1" 200 OK +INFO: 118.235.73.64:33780 - "WebSocket /ws" [accepted] INFO: connection open +INFO: 118.235.73.64:29039 - "GET /favicon.ico HTTP/1.1" 404 Not Found +ERROR:app.monitoring.dashboard:데이터 전송 오류: +INFO: connection closed +INFO: 118.235.73.64:36365 - "WebSocket /ws" [accepted] +ERROR:app.monitoring.dashboard:모델 성능 통계 조회 중 예외 발생: HTTPConnectionPool(host='0.0.0.0', port=8008): Read timed out. (read timeout=2) +INFO: connection open +ERROR:app.monitoring.dashboard:모델 성능 통계 조회 중 예외 발생: HTTPConnectionPool(host='0.0.0.0', port=8008): Read timed out. (read timeout=2) +INFO: 118.235.73.64:29969 - "GET /api/system-alerts HTTP/1.1" 200 OK +INFO: 118.235.73.64:36188 - "GET /api/errors HTTP/1.1" 200 OK +INFO: 118.235.73.64:34776 - "GET /api/model-usage-stats HTTP/1.1" 200 OK +ERROR:app.monitoring.dashboard:모델 성능 통계 조회 중 예외 발생: HTTPConnectionPool(host='0.0.0.0', port=8008): Read timed out. (read timeout=2) +INFO: 118.235.73.64:34776 - "GET /api/system-alerts HTTP/1.1" 200 OK +ERROR:app.monitoring.dashboard:모델 성능 통계 조회 중 예외 발생: HTTPConnectionPool(host='0.0.0.0', port=8008): Read timed out. (read timeout=2) +INFO: 118.235.73.64:36188 - "GET /api/errors HTTP/1.1" 200 OK +INFO: 122.35.47.45:52268 - "GET / HTTP/1.1" 200 OK +INFO: 118.235.73.64:36188 - "GET /api/logs?lines=50 HTTP/1.1" 200 OK +INFO: 118.235.73.64:32011 - "GET /api/model-usage-stats HTTP/1.1" 200 OK +INFO: 118.235.73.64:29864 - "GET /api/performance-stats HTTP/1.1" 200 OK +INFO: 118.235.73.64:33588 - "GET /api/system-alerts HTTP/1.1" 200 OK +INFO: 118.235.73.64:31627 - "GET /api/errors HTTP/1.1" 200 OK +INFO: 118.235.73.64:32554 - "GET /api/system-alerts HTTP/1.1" 200 OK +INFO: 118.235.73.64:36432 - "GET /api/errors HTTP/1.1" 200 OK +INFO: 118.235.73.64:36432 - "GET /api/model-usage-stats HTTP/1.1" 200 OK +INFO: 118.235.73.64:36432 - "GET /api/system-alerts HTTP/1.1" 200 OK +INFO: 118.235.73.64:31023 - "GET /api/errors HTTP/1.1" 200 OK +ERROR:app.monitoring.dashboard:모델 성능 통계 조회 중 예외 발생: HTTPConnectionPool(host='0.0.0.0', port=8008): Read timed out. (read timeout=2) +ERROR:app.monitoring.dashboard:모델 성능 통계 조회 중 예외 발생: HTTPConnectionPool(host='0.0.0.0', port=8008): Read timed out. (read timeout=2) +INFO: 118.235.73.64:30785 - "GET /api/model-usage-stats HTTP/1.1" 200 OK +INFO: 118.235.73.64:35188 - "GET /api/system-alerts HTTP/1.1" 200 OK +INFO: 118.235.73.64:30117 - "GET /api/performance-stats HTTP/1.1" 200 OK +INFO: 118.235.73.64:30102 - "GET /api/logs?lines=50 HTTP/1.1" 200 OK +INFO: 118.235.73.64:36300 - "GET /api/errors HTTP/1.1" 200 OK +INFO: 118.235.73.64:30102 - "GET / HTTP/1.1" 200 OK +INFO: connection closed +INFO: 118.235.73.64:30102 - "GET /favicon.ico HTTP/1.1" 404 Not Found +INFO: 118.235.73.64:34126 - "GET /favicon.ico HTTP/1.1" 404 Not Found +ERROR:app.monitoring.dashboard:데이터 전송 오류: +INFO: 118.235.73.64:27884 - "GET / HTTP/1.1" 200 OK +WARNING: Invalid HTTP request received. +WARNING: Invalid HTTP request received. +INFO: 118.235.73.64:30128 - "GET / HTTP/1.1" 200 OK +INFO: 118.235.73.64:30128 - "GET /favicon.ico HTTP/1.1" 404 Not Found +INFO: 118.235.73.64:33038 - "GET /favicon.ico HTTP/1.1" 404 Not Found +INFO: 118.235.73.64:34281 - "GET /favicon.ico HTTP/1.1" 404 Not Found +INFO: 118.235.73.64:28205 - "GET / HTTP/1.1" 200 OK +INFO: 118.235.73.64:28205 - "GET / HTTP/1.1" 200 OK +INFO: 118.235.73.64:30339 - "GET / HTTP/1.1" 200 OK +INFO: 118.235.73.64:30775 - "GET / HTTP/1.1" 200 OK +INFO: 118.235.73.64:32870 - "GET / HTTP/1.1" 200 OK +INFO: 118.235.73.64:28161 - "GET / HTTP/1.1" 200 OK +INFO: 118.235.73.64:33203 - "GET / HTTP/1.1" 200 OK +INFO: 118.235.73.64:37097 - "GET / HTTP/1.1" 200 OK +INFO: 118.235.73.64:36624 - "GET / HTTP/1.1" 200 OK +INFO: 118.235.73.64:30357 - "GET / HTTP/1.1" 200 OK +INFO: 118.235.73.64:35740 - "GET / HTTP/1.1" 200 OK +INFO: 122.35.47.45:50214 - "GET / HTTP/1.1" 200 OK +INFO: 122.35.47.45:50214 - "GET / HTTP/1.1" 200 OK diff --git a/logs/monitoring.pid b/logs/monitoring.pid index ed95caf..68b56f8 100644 --- a/logs/monitoring.pid +++ b/logs/monitoring.pid @@ -1 +1 @@ -192741 +271803 diff --git a/main.py b/main.py index 43338c2..b7378c8 100644 --- a/main.py +++ b/main.py @@ -7,9 +7,11 @@ import time import logging import json import asyncio +import re from contextlib import asynccontextmanager from collections import defaultdict, deque from fastapi import FastAPI, Request, Response +from fastapi import HTTPException from fastapi.middleware.cors import CORSMiddleware import uvicorn @@ -21,6 +23,11 @@ from app.monitoring.dashboard import monitor_app from app.core.batch_manager import batch_manager # from app.utils.background_task import manage_state_background # TODO: 경로 확인 필요 from app.utils.discord_notifier import send_discord_notification +from app.utils.api_error_log import ( + append_api_error_log, + extract_client_ip, + get_content_length, +) # 로깅 설정 import logging.handlers @@ -177,6 +184,7 @@ api_stats = APIStatsCollector() # - 주기적 폴링으로 인해 실제 비즈니스 엔드포인트 통계를 왜곡시키지 않기 위함 EXCLUDED_ENDPOINTS = { "/api/v1/health", + "/health", "/docs", "/openapi.json", "/redoc", @@ -196,34 +204,19 @@ API_ERROR_LOG_PATH = os.path.join(log_dir, "api_errors.jsonl") API_ERROR_MAX_BYTES = 10 * 1024 * 1024 # 10MB API_ERROR_BACKUP_COUNT = 5 -def _rotate_api_error_log_if_needed(): - try: - if os.path.exists(API_ERROR_LOG_PATH) and os.path.getsize(API_ERROR_LOG_PATH) >= API_ERROR_MAX_BYTES: - ts = time.strftime("%Y%m%d-%H%M%S") - rotated_path = os.path.join(log_dir, f"api_errors_{ts}.jsonl") - os.replace(API_ERROR_LOG_PATH, rotated_path) - # 오래된 로테이션 파일 정리 (최신 N개만 유지) - rotated = [ - os.path.join(log_dir, f) for f in os.listdir(log_dir) - if f.startswith("api_errors_") and f.endswith(".jsonl") - ] - rotated.sort(key=lambda p: os.path.getmtime(p), reverse=True) - for old in rotated[API_ERROR_BACKUP_COUNT:]: - try: - os.remove(old) - except Exception: - pass - except Exception as e: # pragma: no cover - logger.warning(f"API 에러 로그 로테이션 실패: {e}") - -def _append_api_error_log(record: dict): - """에러 전용 JSONL 로그에 한 줄 추가""" - try: - _rotate_api_error_log_if_needed() - with open(API_ERROR_LOG_PATH, "a", encoding="utf-8") as f: - f.write(json.dumps(record, ensure_ascii=False) + "\n") - except Exception as e: # pragma: no cover - logger.warning(f"API 에러 로그 기록 실패: {e}") +def _append_error_record(request: Request, status: int, response_time: float, error: str | None = None): + client_ip = extract_client_ip(request) + content_length = get_content_length(request) + append_api_error_log({ + "timestamp": time.time(), + "method": request.method, + "path": request.url.path, + "status": status, + "error": error, + "response_time_ms": int(response_time * 1000), + "client_ip": client_ip, + "content_length": content_length, + }) async def save_status_periodically(): """주기적으로 워커와 세션 상태를 파일에 저장합니다.""" @@ -346,6 +339,31 @@ app = FastAPI( lifespan=lifespan ) +# 업로드 용량 선검사 미들웨어 (Content-Length 기반) +@app.middleware("http") +async def content_length_guard(request: Request, call_next): + try: + # 업로드가 포함될 가능성이 높은 POST/PUT/PATCH만 검사 + if request.method in {"POST", "PUT", "PATCH"}: + max_bytes = settings.MAX_FILE_SIZE # MB 단위가 아닌 바이트로 받도록 설정되어 있음 + # settings.MAX_FILE_SIZE는 MB 단위였으나, 현재 코드에서는 바이트 사용. + # 값이 과거 설정(바이트/MB 혼용)일 수 있어 1e4 이상이면 바이트로 간주, 작으면 MB로 간주하여 보정 + limit = max_bytes + if limit < 1024 * 1024: # MB일 가능성 + limit = max_bytes + content_length = get_content_length(request) + if content_length and content_length > limit: + return Response( + content=json.dumps({ + "detail": f"Request body too large: {content_length} bytes > limit {limit} bytes" + }), + status_code=413, + media_type="application/json", + ) + return await call_next(request) + except Exception: + return await call_next(request) + # API 통계 수집 미들웨어 @app.middleware("http") async def collect_api_stats(request: Request, call_next): @@ -375,15 +393,9 @@ async def collect_api_stats(request: Request, call_next): # 통계 업데이트 api_stats.end_request(endpoint, success, response_time) - # 4xx/5xx는 에러 로그 파일에 기록 + # 4xx/5xx는 에러 로그 파일에 기록 (클라이언트 IP 포함) if not success: - _append_api_error_log({ - "timestamp": time.time(), - "method": request.method, - "path": path, - "status": response.status_code, - "response_time_ms": int(response_time * 1000) - }) + _append_error_record(request, response.status_code, response_time) return response @@ -391,14 +403,7 @@ async def collect_api_stats(request: Request, call_next): # 에러 발생 시 response_time = time.time() - start_time api_stats.end_request(endpoint, False, response_time, str(e)) - _append_api_error_log({ - "timestamp": time.time(), - "method": request.method, - "path": path, - "status": 500, - "error": str(e), - "response_time_ms": int(response_time * 1000) - }) + _append_error_record(request, 500, response_time, str(e)) raise # CORS 미들웨어 추가 diff --git a/status.json b/status.json index 7e02c25..26d059b 100644 --- a/status.json +++ b/status.json @@ -1,19 +1,47 @@ { "worker_status": { "running": true, - "total_workers": 2, + "total_workers": 6, "queue_size": 0, "workers_by_status": { "idle": [ { - "id": "worker_eac127f0", + "id": "worker_3e3d5864", "status": "idle", "task_count": 0, "error_count": 0, "last_task_at": null }, { - "id": "worker_3fb51aaf", + "id": "worker_7373b97c", + "status": "idle", + "task_count": 0, + "error_count": 0, + "last_task_at": null + }, + { + "id": "worker_296ab3a4", + "status": "idle", + "task_count": 0, + "error_count": 0, + "last_task_at": null + }, + { + "id": "worker_891dcc94", + "status": "idle", + "task_count": 0, + "error_count": 0, + "last_task_at": null + }, + { + "id": "worker_411ad2e8", + "status": "idle", + "task_count": 0, + "error_count": 0, + "last_task_at": null + }, + { + "id": "worker_ab487451", "status": "idle", "task_count": 0, "error_count": 0, @@ -28,64 +56,75 @@ }, "session_status": { "simple_lama": { - "min": 2, - "max": 4, - "total": 2, + "min": 4, + "max": 8, + "total": 4, "in_use": 0, - "available": 2 + "available": 4 }, "migan": { "min": 1, - "max": 4, + "max": 8, "total": 1, "in_use": 0, "available": 1 }, "rembg": { "min": 1, - "max": 3, + "max": 4, "total": 1, "in_use": 0, "available": 1 } }, "api_stats": { - "total_requests": 0, - "successful_requests": 0, + "total_requests": 13467, + "successful_requests": 13467, "failed_requests": 0, - "success_rate": 0.0, - "endpoint_usage": {}, + "success_rate": 100.0, + "endpoint_usage": { + "GET /api/v1/model": 6740, + "POST /api/v1/inpaint": 6264, + "POST /api/v1/run_plugin_gen_image": 463 + }, "endpoint_stats": { - "POST /api/v1/inpaint": { - "count": 0, - "avg_time": 0.0, - "min_time": 0.0, - "max_time": 0.0, + "GET /api/v1/model": { + "count": 6740, + "avg_time": 0.001540846824645996, + "min_time": 0.00063323974609375, + "max_time": 0.004244089126586914, "current_concurrent": 0 }, + "POST /api/v1/inpaint": { + "count": 6264, + "avg_time": 0.5280383849143981, + "min_time": 0.2597086429595947, + "max_time": 1.651228666305542, + "current_concurrent": 5 + }, + "POST /api/v1/run_plugin_gen_image": { + "count": 463, + "avg_time": 0.4474348998069763, + "min_time": 0.1340315341949463, + "max_time": 2.5062549114227295, + "current_concurrent": 1 + }, "POST /api/v1/remove_bg": { "count": 0, "avg_time": 0.0, "min_time": 0.0, "max_time": 0.0, "current_concurrent": 0 - }, - "POST /api/v1/run_plugin_gen_image": { - "count": 0, - "avg_time": 0.0, - "min_time": 0.0, - "max_time": 0.0, - "current_concurrent": 0 } }, - "average_response_time": 0, - "min_response_time": 0, - "max_response_time": 0, - "current_concurrent": 0, - "max_concurrent": 0, - "requests_per_second": 0.0, - "uptime": 5.007766008377075, + "average_response_time": 0.2757347109317779, + "min_response_time": 0.0005586147308349609, + "max_response_time": 2.8400533199310303, + "current_concurrent": 6, + "max_concurrent": 12, + "requests_per_second": 1.3742163667312552, + "uptime": 9799.76685333252, "recent_errors": [] }, - "timestamp": 1759306699.0522153 + "timestamp": 1759375540.6194317 } \ No newline at end of file